Programmatic Logon to PS2003 Server from ASP not working

J

John.Gregory.AZ

The code is taken directly from Microsoft's own treatment of the topic:

loginURL = "http://servername/projectserver/LgnIntAu.asp"
Set oXMLDocument = CreateObject("MSXML.DOMDocument")
oXMLDocument.load loginURL

It seems that the XML Document is coming up blank. Why isn't the
loginURL loading into the DOM Document? Attempting to use:

oXMLDocument.async = False
oXMLDocument.resolveExternals = False

.....will generate an Access Denied message. Accessing the LgIntAu.asp
directly will display the XML response with the desired Cookie.

Anyone run into this before? I've seen several posts to this affect,
but no answers.
 
M

Mike Glen

Hi John,

Try posting on the server newsgroup as this one is closing down. Please see
FAQ Item: 24. Project Newsgroups. FAQs, companion products and other useful
Project information can be seen at this web
address:http://project.mvps.org/faqs.htm .

Mike Glen
Project MVP
 
Top