>What do I need to install to get MSSOAP.SoapClient object
>on my machine?

Viktor, IMO the best is change to PocketSoap, since Microsoft
abandoned MSSOAP.

This is a working sample:

---cut---
local oEnvelope := Win_OleCreateObject( "PocketSOAP.Envelope.2" )
local oHttp := Win_OleCreateObject( "PocketSOAP.HTTPTransport.2" )

oEnvelope:EncodingStyle = ""
oEnvelope:SetMethod( "InvertStringCase",
"http://www.dataaccess.com/webservicesserver/"; )
oEnvelope:Parameters:Create( "sAString", "THIS IS LOWER - this is
upper" )

oHttp:Send(
"http://www.dataaccess.com/webservicesserver/textcasing.wso?WSDL";,
oEnvelope:Serialize() )

oEnvelope:Parse( oHttp )

MsgInfo( oEnvelope:Parameters:Item( 0 ):Value )
---cut---

You can get Pocket Soap from: http://www.pocketsoap.com/


Best Regards,

Toninho.

__________________________________________________
Faça ligações para outros computadores com o novo Yahoo! Messenger
http://br.beta.messenger.yahoo.com/
_______________________________________________
Harbour mailing list
[email protected]
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to