Re: [Gambas-user] gambas3 and web services

2011-06-23 Thread Almanova Sistemi
Hi Caveat, thank's for your example; I understand how to use soap with gambas and still got a new problem: How do I set up a ssl connection? In perl SOAP:: Lite is sufficient to write: $ data = $ xml-> XMLin (my $ client = SOAP:: Lite -> service ('https://www.server.com/?wsdl') -> proxy ('https

Re: [Gambas-user] gambas3 and web services [bigger, better, faster, more]

2011-06-21 Thread Caveat
Hi Massimo, I just extended the example program I worked up to include all 4 main ways of calling a Web Service. These are: Http GET, Http POST, SOAP 1.1, and SOAP 1.2. One problem I ran into is that Gambas3 seems a little too fussy about the valid content types and will give a runtime error on

Re: [Gambas-user] gambas3 and web services

2011-06-21 Thread Caveat
I just made a quick example using one of the free Web Services out on the interwebbase ;-) Your project will need to include networking (obviously!) Dim http As HttpClient Dim buffer As String http = New HttpClient As "http" http.URL = "http://www.webservicex.net/ConvertTemperature.asmx/Co

Re: [Gambas-user] gambas3 and web services

2011-06-21 Thread Almanova Sistemi
attached to this mail the wsdl requested. I hope that this can hep me to develop my application. Regards, Massimo I think this should be possible. I've worked with Web Services from out of java and c# and in its simplest form it's just a case of POSTing parameters on a request. In java you ha

Re: [Gambas-user] gambas3 and web services

2011-06-20 Thread Caveat
I think this should be possible. I've worked with Web Services from out of java and c# and in its simplest form it's just a case of POSTing parameters on a request. In java you have the advantage of several tools which can read the WSDL for you and automatically generate client code with stubs fo

[Gambas-user] gambas3 and web services

2011-06-20 Thread Almanova Sistemi
Hallo to everyone, I am Massimo and I try to write a client software (in gambas 3) that use a web services. In other word the software send data with saop protocol an receive data with the same protocol. The information about the availebe services are described in a WSDL file. Now, hor Can I d