%
Sub SetXmlHeaders()
' Cleans the response buffer.
Response.Clear()
' Prevent the browser from caching the result.
Response.CacheControl = "no-cache"
' Set the response format.
Response.CharSet = "UTF-8"
Response.ContentType = "text/xml"
End Sub
Sub CreateXmlHeader( command, resourceType, currentFolder )
' Create the XML document header.
Response.Write ""
' Create the main "Connector" node.
Response.Write ""
' Add the current folder node.
Response.Write ""
End Sub
Sub CreateXmlFooter()
Response.Write ""
End Sub
Sub SendError( number, text )
SetXmlHeaders
' Create the XML document header.
Response.Write ""
Response.Write ""
Response.End
End Sub
%>