| Posted: 12 July 2010 at 11:25am | IP Logged
|
|
|
Hi, I'm using this code with asp (no .net) to access a gmail Mailbox. <% Dim oSession Set oSession = Server.CreateObject("OSPOP3_Plus.Session") oSession.UseSSL = True oSession.OpenPOP3_5 "pop.gmail.com", 995, "myusername@gmail.com, "mypwd" %>
but I get this error: OSPOP3_Plus error '80004003'
Object reference not set to an instance of
an object.
/Default.asp, line 5
Probably if the ID specified for the anonymous user in IIS doesn't match the ID
of the user the com+ client was exported to impersonate, it will show
that error. By setting the id's the same, classic asp will have access
rights to creating the com+ object Davide
Edited by davideC on 12 July 2010 at 12:03pm
|