Still no joy with this problem.

the problem does not appear to be badly formed XML being returned (I've
made the changes recommended)

the following code works in a .vbs file (with the exception of the
response.write lines, but if I substitute them for msgbox commands it
works correctly


#############################################################
' Create an instance of the MSXML Parser
Set MSXML = CreateObject("MSXML.DOMDocument")

' Set MSXML Options
MSXML.Async = False
MSXML.preserveWhiteSpace = False
MSXML.validateOnParse = false
MSXML.resolveExternals = False

' Form the request URL
XMLURL =
"http://localhost:9000/xml/status.xml?p0=playlist&p1=add&p2=/1.wma;cauth=91e9d3f9707e2b5189ba7b60d983d24e";


' Issue the request and wait for the response
Loaded = MSXML.Load(XMLURL)

' If the request is loaded successfully, continue
If (Loaded) Then
response.write("success")
Else
response.write("fail")
End If

#######################################################

also if I put the command 

response.redirect
"http://localhost:9000/xml/status.xml?p0=playlist&p1=add&p2=/1.wma;cauth=91e9d3f9707e2b5189ba7b60d983d24e";

also the command is actually executed and the track is added to the
playlist, but I get the error condition back and no XML in my
DOMdocument object..

into the asp page it displays the xml in my browser, so....





it doesn't appear to be permission related 
it doesn't appear to be xml related


-- 
mickweight
------------------------------------------------------------------------
mickweight's Profile: http://forums.slimdevices.com/member.php?userid=6684
View this thread: http://forums.slimdevices.com/showthread.php?t=7618

_______________________________________________
discuss mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/discuss

Reply via email to