Search found 12 matches: osoapclient

Return to advanced search

Re: Validar respuesta desde un WEBSERVICE

Hi anserkk. yes, it is an array in xml format, I can inspect it with xRes:=oSoapClient:ObtTok("USUARIO999", "tscxfxreger") oXml:=TXmlDocument():New(xRes) xbrowse( oXml ) But the content has none of the answers I was expecting. The WS documentation ...
by Adolfo
Wed Jan 25, 2017 2:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Validar respuesta desde un WEBSERVICE
Replies: 6
Views: 2540

Re: Validar respuesta desde un WEBSERVICE

It looks like the contents in xRes is XML
xRes:=oSoapClient:ObtTok("UserName", "Password")
by anserkk
Wed Jan 25, 2017 5:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Validar respuesta desde un WEBSERVICE
Replies: 6
Views: 2540

Ayuda con WEBSERVICE

... FROM: SOURCE\RTL\WIN32OLE.PRG=> TOLEAUTO.CXML(0) CALLED FROM: SVE201.PRG=> CONWS (1203) ESTE ES UNA PRTE DEL PROGRAMA FUNCTION CONWS() // osoapclient:=createobject("mssoap.soapclient") // osoapclient:=nil LOCAL oHttp,doc LOCAL cLocation:="http://<hostSVE>svePerfilacionWSN/Sesion?WSDL" ...
by elmoiquique
Mon Nov 15, 2010 7:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con WEBSERVICE
Replies: 15
Views: 6589

Re: Soap with FiveWin

... And then, you can use this form in FW: oSoapClient := CreateObject( "MSXML2.XMLHTTP" ) Best regards. Carlos.
by csincuir
Thu Jul 22, 2010 12:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Soap with FiveWin
Replies: 6
Views: 2090

Re: Help to access Web Service

I think that I found the problem, I need access a HTTPS...

oSoapClient:msSoapInit( "https://www.nfp.fazenda.sp.gov.br/ws/arquivonf_mod1.asmx?WSDL" )

Anybody know if MSSOAP access HTTPS ???


Thanks and best regards,

Toninho.
by toninhofwi
Tue Sep 29, 2009 4:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help to access Web Service
Replies: 11
Views: 3951

Help to access Web Service

Hi friends, I'm trying to access Web Services using fivewin, but I receive an error in OLE creation: ---cut--- local oSoapClient, cBuf oSoapClient := Win_OleCreateObject( "MSSOAP.SoapClient30" ) oSoapClient:msSoapInit( "https://www.nfp.sp.gov.br/ws" ) ---cut--- ...
by toninhofwi
Mon Sep 28, 2009 6:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help to access Web Service
Replies: 11
Views: 3951

Antonio, con el siguiente codigo: #include "FiveWin.ch" Function Main() oSoapClient := CreateObject( "MSSOAP.SoapClient" ) return nil Me reporta el siguiente error: ..... Creating library test.lib and object test.exp test.obj : error LNK2001: unresolved external ...
by Elias Torres
Wed Oct 15, 2008 3:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Web Services
Replies: 10
Views: 7006

Elias,

Hay que comprobar si Windows Mobile proporciona un cliente "SOAP":

oSoapClient := CreateObject( "MSSOAP.SoapClient" )

ó ver si es preciso instalar algún software de Microsoft en el Pocket PC
by Antonio Linares
Wed Oct 15, 2008 12:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Web Services
Replies: 10
Views: 7006

... es preferible pasa un XML que pasar 300 parámetros. Si queréis experimentar aquí tenéis un ejemplo muy simple; ( De los que gustan a Antonio ;-) ) oSoapClient := CreateObject( "MSSOAP.SoapClient30" ) oSoapClient:msSoapInit( "http://www.dataaccess.com/webservicesserver/textcasing.wso?WSDL" ) ? oSoapClient:InvertStringCase( ...
by thefull
Fri Sep 05, 2008 9:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWHX y Webservers
Replies: 22
Views: 9368

... es brindarnos la oportunidad de sumar 2 numeros. ( Es un ejemplo ) Nosotros lo único que tenemos que hacer será; 1.- Crear el objeto Soap Client. oSoapClient := CreateObject( "MSSOAP.SoapClient" ) 2.- Inicializarlo. Esto es muy importante, y fijaos al final. oSoapclient.MsSoapInit("http://www.uno.es/WebService/suma.php?wsdl") ...
by thefull
Fri Sep 05, 2008 8:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWHX y Webservers
Replies: 22
Views: 9368

It's a fact that this samples works. #include "fivewin.ch" FUNCTION MAIN() LOCAL oSoapClient := CREATEOBJECT( "MSSOAP.SoapClient" ) oSoapClient:msSoapInit("http://www.dataaccess.com/webservicesserver/textcasing.wso?WSDL" ) ? oSoapClient:InvertStringCase( "lower ...
by MarcoBoschi
Tue Aug 05, 2008 1:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Translation from vb.net
Replies: 14
Views: 4751

MUY IMPORTANTE! USO DE SOAPCLIENT

Dejo este anuncio para que tengáis en cuenta una cosa a la hora de usar un cliente SOAP, en este caso , el del M$. El uso de esta función ; oSoapClient := CreateObject( "MSSOAP.SoapClient" ) implica que debéis de DESTRUIR esa variable ; oSoapClient := NIL Y por seguridad , llamar al recolector ...
by thefull
Fri Jun 06, 2008 8:04 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: MUY IMPORTANTE! USO DE SOAPCLIENT
Replies: 3
Views: 1286

Return to advanced search