Hey guys,

I'm encountering this really persistent yet answer-less error message,
and I've
looked everywhere for info, but most of the other guys who have a
similar problem all have a different error code then the (6D007E) that
I'm receiving. And there is absolutely nothing on the 6D007E code
anywhere on the net.

The full error message is:

Active Server Pages, ASP 0115 (0x80004005)
A trappable error (6D007E) occurred in an external object. The script
cannot continue running. ... (there is no line # indicating where the
error might lie, so I have no idea what this error means)

I have an ASP page that tries to retrieve the GAL from our Exchange
server as well as send e-mails to all internal mailboxes by calling
the following code.

Const strServer = "serverName"
Const strMailbox = "myMailbox"

strProfileInfo = strServer & vbLf & strMailbox
Set objSession = Server.CreateObject("MAPI.Session")

objSession.Logon , , False, True, 0, True, strProfileInfo
Set objAddrEntries = objSession.AddressLists("Global Address
List").AddressEntries

Now I'm not at all familiar Exchange and its settings, but this used
to work for me, up unti I upgraded my MS Office to the XP version. I
need to use MAPI in order to send e-mails to all internal mailboxes.
I've tried CDONTS and that didn't work, coz no mail ever shows up.
What really dazzles me is that it used to work fine, but now ....

I truly hope someone out there has seen this error or has some idea as
to what it means or how to fix it.

Thank-you,
Shawn