Click here to Skip to main content
15,885,767 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
My script is

VB
Set oXMLHTTP = CreateObject("Microsoft.XMLHTTP")
'The object that will receive the answer from the WS
Set oXMLDoc = CreateObject("Microsoft.XMLDOM")

strParam = "string to pass"

'Tell the name of the subroutine that will handle the response

'Initializes the request (the last parameter, False in this case, tells if the call is asynchronous or not
oXMLHTTP.open "POST", "http://172.16.11.45/XXX?wsdl/YYY", False
'This is the content type that is expected by the WS using the HTTP POST protocol

 oXMLHTTP.setRequestHeader "Content-Type", "text/xml"

oXMLHTTP.send ""



my wsdl file url is http://172.16.11.45/SapphireWS/XXX?wsdl[^]

and my web method is YYY.. (no paramer)

I am using jbboss and my webserver
I tried to call but its failing.

Can any one help me out.
Posted

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