Ask a Question related to ASP Components, Design and Development.
-
bajopalabra #1
MSSOAP.SoapClient30
hi
i'm working with a asp page ( asp classic )
that needs to consume a web service
it works , but not very well
sometimes it takes too much time
giving errors, at event viewer, about
"error while parsing sever response"
"soap error", etc
is the next syntax right ?
what consideration can you tell me ?
T(AL)IA
i do it with:
- - - - - - - -
dim osoap, oxml, resulta
set osoap= Server.CreateObject( "MSSOAP.SoapClient30" )
osoap.ClientProperty( "ServerHTTPRequest") = true
osoap.mssoapinit( "http://...../service?wsdl" )
set oxml= Server.CreateObject( "MSXML2.DomDocument" )
oxml.loadxml( osoap.getInfo( 777 ) ) 'a paramater
result= oxml.getElementsByTagName("value").item(0).text
set oxml= nothing
set osoap= nothing
thanks
bajopalabra Guest
-
Do .Net Client Applications require MSSoap dlls for calling WebServices?
Dear All, Do .Net Client Applications require MSSoap dlls for calling WebServices? My clients will have only .Net runtime installed on their...



Reply With Quote

