You are viewing this page out of context. To see it in the context it is intended please click here.
About This Page
Reply posted by Tommy Valand on Tue 17 Jul 2007 in response to Putting Domino's XML to use
Re: Using MSXML Parser securely
I nearly gave up on server-side XSLT-transformation of ?ReadViewEntries..Thank you for posting this!
I can't see if you got this to work with authentication..?
What i changed is that i ran a login-url first.
Dim loginURL As String
loginURL = "http://domain.com/names.nsf?login&username=daffy&password=duck"
..
Set source = CreateObject("Microsoft.XMLDOM")
source.async = False
'get authenticated
source.load( loginURL )
'get the ?ReadViewEntries
source.load( sourceURL )
..
I use it on a SSL-secured server, which seems extremely hard to do with a
java-agent.
Again, thank you! :)