Thread: SOAP message
View Single Post
  #5 (permalink)  
Old 12-01-2005, 03:32 PM
axel16 axel16 is offline
Member
 
Posts: 13
Default

Im using ASP to post the message

set xmldom = server.CreateObject("Microsoft.XMLDOM")
set xmlhttp = server.CreateObject("Microsoft.XMLHTTP")
const SoapServer = "http://200.0.176.121/service/soap"
xmlhttp.open "POST", SoapServer, false
xmlhttp.setRequestHeader "Man", POST & " " & SoapServer & " HTTP/1.1"
xmlhttp.setRequestHeader "MessageType", "CALL"
xmlhttp.setRequestHeader "Content-Type", "text/xml"
xmlhttp.send(SoapMessage)

then xmlhttp.Status gives me the answer for the server

in the access_log.2005-12-01 i find the follow lines

200.0.176.51 - - [01/Dec/2005:16:31:15 -0600] "POST /service/soap HTTP/1.0" 500 2278
200.0.176.51 - - [01/Dec/2005:16:31:15 -0600] "POST /service/soap HTTP/1.0" 500 2278
Reply With Quote