Web Service Soap认证[11]

[入库:2005年8月18日] [更新:2007年3月24日]

本文简介:选择自 visualsw 的 blog

    strsoap = strsoap & vbcrlf & "</account>"

    strsoap = strsoap & vbcrlf & "</soap:header>"

    strsoap = strsoap & vbcrlf & "<soap:body>"

   

    strsoap = strsoap & vbcrlf & "<getreturn xmlns=testsoap.webservice>"

   

    strsoap = strsoap & vbcrlf & "</getreturn>"

   

    strsoap = strsoap & vbcrlf & "</soap:body>"

    strsoap = strsoap & vbcrlf & "</soap:envelope>"

   

    objhttp.open "post", strurl, false

    objhttp.setrequestheader "content-type", "text/xml;charset=utf-8"

    objhttp.setrequestheader "content-length", len(strsoap)

    objhttp.setrequestheader "soapaction", strurl & "getreturn"

 

    objhttp.send strsoap

   

    xmldoc.async = false

    xmldoc.loadxml (objhttp.responsetext)

本文关键:Web Service,Soap
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top