"yahalom emet" <[EMAIL PROTECTED]> writes: I don't know anything about visual basic, but I'm almost %100 sure that the problem is the same.
> but it happend from other languages like vb: > Set oXml = New MSXML.XMLHTTPRequest > oXml.open "POST", "http://192.168.10.150/xmlServer/xmlServer.ttml" ', True, > "DEMO", "TESFLY" > > oXml.setRequestHeader "Content-Type", "application/x-www-form-urlencoded" > s = " <test>" > s = s & "<testAttribute test=""2" & """" & "/>" > s = s & "<testSemi>2;3434;23434;34</testSemi>" > s = s & "</test>" > oXml.send s It doesn't like you are doing anything to transform 's' into a properly formatted query string. > in oXml.responseText I get: > { <test><testAttribute test} {"2"/><testSemi>2} 3434 {} 23434 {} > 34</testSemi></test> {} -- David N. Welton Consulting: http://www.dedasys.com/ Personal: http://www.dedasys.com/davidw/ Free Software: http://www.dedasys.com/freesoftware/ Apache Tcl: http://tcl.apache.org/ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
