Hi guys

I'm trying to write a basic user-defined job to call an asp page which adds 
a specified authorisation package to a specified page but nothing is 
happening - can anybody help?

This is the content of the file:

<%
' Create XML objects
set objIO = Server.CreateObject("RDCMSAsp.RDPageData")
objIO.XmlServerClassName = "RDCMSServer.XmlServer"
set XMLDomPage = Server.CreateObject("Microsoft.XMLDOM")

'Retrieve login session variables
SessionKey = Session("sessionkey")
LoginGUID = Session("LoginGUID")
 xmlData = "<IODATA loginguid=""" & LoginGUID & """ sessionkey=""" & 
SessionKey & """>" & _
"<AUTHORIZATION>" & _
"<PAGE guid=""380AC11DDE87439398FCED3334D319BF"">" & _
"<AUTHORIZATIONPACKET action=""assign"" 
guid=""91CBCA2D70A54E17A9653CCCD185D460""/>" & _
"</PAGE>" & _
"</AUTHORIZATION>" & _
"</IODATA>"
xmlData = objIO.ServerExecuteXml(xmlData,sError)
Call XMLDomPage.LoadXML(xmlData)

' Dispose of objects
set XMLDomPage = nothing
set objIO = nothing
set xmlData = nothing 
%>

Thanks

Neil

-- 
You received this message because you are subscribed to the Google Groups 
"RedDot CMS Users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/reddot-cms-users/-/QAqfxNoupZcJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/reddot-cms-users?hl=en.

Reply via email to