PHP alternative for MSSOAP.SoapClient30 in ASP.NET
Posted
by sasa
on Stack Overflow
See other posts from Stack Overflow
or by sasa
Published on 2010-06-02T12:01:40Z
Indexed on
2010/06/02
12:14 UTC
Read the original article
Hit count: 189
Hello,
Can somebody help me with this - I need some tips or code to connect to wsdl service, send XML request and than print response on client side. I only have primer written in ASP.NET and need PHP alternative:
function doXMLRequest(Xmltext)
Set oSOAP = Server.CreateObject("MSSOAP.SoapClient30")
oSOAP.ClientProperty("ServerHTTPRequest") = True
oSOAP.mssoapinit sys_xmlservice, "", "", ""
oSOAP.ConnectorProperty("Timeout") = 600000
myXMLResponse = oSOAP.XMLReq(XmlText)
doXMLRequest=myXMLResponse
set oSOAP=nothing
end function
Thanks in advance! :)
© Stack Overflow or respective owner