Click here to Skip to main content
15,891,733 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all

I try to get the return value for .wsdl file function using classic asp page vbscript code

My code is here

C#
Set oSOAP = Server.CreateObject("MSSOAP.SoapClient30")
    
    oSOAP.ClientProperty("ServerHTTPRequest") = True
    Call oSOAP.MSSoapInit("http://localhost/SI_CUSTMASTSEARCH/SI_CUSTMASTSEARCH_REQ.wsdl?wsdl")
 
    oSOAP.ConnectorProperty("WinHTTPAuthScheme") = 1
    oSOAP.ConnectorProperty("Timeout") = 90000
    oSOAP.ConnectorProperty("AuthUser")="isdteam"
    oSOAP.ConnectorProperty("AuthPassword")="password"
        
    mResult = oSOAP.SI_CUSTMASTSEARCH_REQ(strRequest)  
    
    Response.Write mResult    
    Response.End

But return error

http://sap.com/xi/XI/Message/30 error '80004005'

    Error during parsing of SOAP header


Please help me to solve this problem

Thank you
Posted
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900