Search found 14 matches: mssoapinit

Return to advanced search

Re: CreateObject problem

... WSDLReader Args: [ 1] = C https://medcloudws.nhi.gov.tw:7008/imie0000/NHIIMI01.asmx Stack Calls =========== Called from: => TOLEAUTO:MSSOAPINIT( 0 ) Called from: TEST1.prg => MAIN( 5 ) Any good solution for welcome.
by richard-service
Wed Aug 15, 2018 3:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CreateObject problem
Replies: 4
Views: 1743

Re: CreateObject problem

... Dear Cnavarro, I fix it and got error message below: Error description: Error MSSOAP.SoapClient30/3 DISP_E_MEMBERNOTFOUND: MSSOAPINIT Args: [ 1] = C https://medcloudws.nhi.gov.tw:7008/imie0000/NHIIMI01.asmx Stack Calls =========== Called from: => TOLEAUTO:MSSOAPINIT( ...
by richard-service
Mon Aug 13, 2018 3:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CreateObject problem
Replies: 4
Views: 1743

Re: Web service

... sempre funcionou perfeitamente com as linhas abaixo: ( exemplo no início do post ) oUp := CreateObject("MSSOAP.SoapClient30") oUp:MSSoapInit(alltrim(UPurl)) Mas quando passei para Windows 7 parou de funcionar. Alguem passou por isto ou tem alguma solução ? Obrigado
by leonardoinacio
Mon Sep 27, 2010 6:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Web service
Replies: 8
Views: 2661

Web service

Hi, UPurl:="http://200.207.118.102:8079/axis2/services/RecargasWeb?wsdl" oUp := CreateObject("MSSOAP.SoapClient30") oUp:MSSoapInit(alltrim(UPurl)) tokenVO:=oUp:Logon(COD_ORI,PWD,COD_TER,COD_EST,MAC) ? tokenVO http://www.sysfar.com.br/temp/soap.jpg In return ...
by clemerson
Thu Jun 03, 2010 12:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Web service
Replies: 8
Views: 2661

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

Re: Help to access Web Service

... 0 if ! MsgNoYes('Changing Rate - Are You Sure ?') lCont := FALSE endif endif if lCont nAmount := oPo:us cCurr := oPo:curr CursorWait() oSoap:MsSoapInit("http://www.webservicex.net/CurrencyConvertor.asmx?WSDL") oSoap:ClientProperty("ServerHTTPRequest") nRate := oSoap:ConversionRate(substr(cCurr,1,3),substr(cTo,1,3)) ...
by Colin Haig
Tue Sep 29, 2009 12:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help to access Web Service
Replies: 11
Views: 3951

Re: Help to access Web Service

Hi Antonio. Same error, in mssoapinit. IMHO is time to FWH goes to web. FWH is a powerfull product but we live in a time that web is required for a lot of transactions. Web Services in more and more used and soap was replaced by net framework. ...
by toninhofwi
Tue Sep 29, 2009 10:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help to access Web Service
Replies: 11
Views: 3951

Help to access Web Service

... an error in OLE creation: ---cut--- local oSoapClient, cBuf oSoapClient := Win_OleCreateObject( "MSSOAP.SoapClient30" ) oSoapClient:msSoapInit( "https://www.nfp.sp.gov.br/ws" ) ---cut--- The manual for WS that I need access is this: http://www.nfp.fazenda.sp.gov.br/pdf/webservice.pdf ...
by toninhofwi
Mon Sep 28, 2009 6:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help to access Web Service
Replies: 11
Views: 3951

... capable to use then com technology. An example of the source code: lo_serv=Createobject("mssoap.soapclient30") // Soap object creation lo_serv.mssoapinit("http://www.universalthread.com/WebService/universalthread.asmx?wsdl") // webservice uri // invoking web service methods. lo_serv.someMethod( ...
by Elias Torres
Tue Oct 14, 2008 6:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Web Services
Replies: 10
Views: 7006

... 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( "lower UPPER" ) Esto funciona, si lo ...
by thefull
Fri Sep 05, 2008 9:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWHX y Webservers
Replies: 22
Views: 9367

... 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") 3.- Mensaje que enviaremos al servidor cXml := <?xml version="1.0" encoding="UTF-8"?> ...
by thefull
Fri Sep 05, 2008 8:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWHX y Webservers
Replies: 22
Views: 9367

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 UPPER" ) RETURN NIL And this one ...
by MarcoBoschi
Tue Aug 05, 2008 1:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Translation from vb.net
Replies: 14
Views: 4750

... capable to use then com technology. An example of the source code: lo_serv=Createobject("mssoap.soapclient30") // Soap object creation lo_serv.mssoapinit("http://www.universalthread.com/WebService/universalthread.asmx?wsdl") // webservice uri // invoking web service methods. lo_serv.someMethod( ...
by thefull
Wed May 07, 2008 1:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Web Services
Replies: 10
Views: 7006

... capable to use then com technology. An example of the source code: lo_serv=Createobject("mssoap.soapclient30") // Soap object creation lo_serv.mssoapinit("http://www.universalthread.com/WebService/universalthread.asmx?wsdl") // webservice uri // invoking web service methods. lo_serv.someMethod( ...
by jcleygar
Wed Nov 30, 2005 11:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Web Services
Replies: 10
Views: 7006

Return to advanced search