| Author | Topic: SOAP with ASINET |
---|
| Metod Kac | SOAP with ASINET
on Tue, 01 Feb 2011 10:12:06 +0100 |
| Boris Borzic | Re: SOAP with ASINET
on Tue, 01 Feb 2011 14:59:51 +0100"Metod Kac" <metod.kac@siol.net> wrote in
news:3b9c7827$130200b2$28900@news.alaska-software.com:
> Is it possible to communicate with server (on net) with asinet
> functions? To send SOAP xml (question) and get answer.
Much simpler to use an already available solution (see http://xb2.net).
Here is an example:
oSoap := xbSOAPEnvelope():new()
oSoap:NameSpace := "urn:xmethods-CurrencyExchange"
oSoap:SetVar("Country1", "USA" )
oSoap:SetVar("Country2", "EURO")
Execute request
oResult := oSoap:Execute("http://services.xmethods.net:80/soap", "getRate")
Print exchange rate
? oResult:GetVar("Result")
Best regards,
Boris Borzic
http://xb2.net
http://sqlexpress.net
industrial strength Xbase++ development tools |
| Marco Aguiar | SOAP with ASINET
on Thu, 28 Feb 2013 23:02:16 +0000 |
| Boris Borzic | Re: SOAP with ASINET
on Fri, 01 Mar 2013 16:12:32 +0100"Marco Aguiar" <marco.aguiar@lusorol.pt> wrote in news:2d239128$24ec6ff4
$1380b@news.alaska-software.com:
> I need to send a SOAP xml file to a webserver and retrive his answer.
> How can we do this with asinet or xbase++ ?
You can do this with Xb2.NET: http://www.xb2.net
Best regards,
Boris Borzic
http://xb2.net
http://sqlexpress.net
industrial strength Xbase++ development tools |
| Marco Aguiar | Re: SOAP with ASINET
on Fri, 01 Mar 2013 19:00:34 +0000 |
| Boris Borzic | Re: SOAP with ASINET
on Sat, 02 Mar 2013 00:04:12 +0100"Marco Aguiar" <marco.aguiar@lusorol.pt> wrote in news:73839f75$7a263ae4
$1ea8@news.alaska-software.com:
> Yes I know it.
> But I would like to know if it possible to do it with xbase++
Well.... Xb2.NET uses Xbase++, so yes it is possible.
Best regards,
Boris Borzic
http://xb2.net
http://sqlexpress.net
industrial strength Xbase++ development tools |
| Jaroslav Pavlik | Re: SOAP with ASINET
on Tue, 14 May 2013 15:07:09 +0200"Marco Aguiar" <marco.aguiar@lusorol.pt> wrote in message news:2d239128
$24ec6ff4$1380b@news.alaska-software.com...
>Hi to all,
>I need to send a SOAP xml file to a webserver and retrive his answer.
>How can we do this with asinet or xbase++ ?
>Any help ?
try wget.
roman |