Lotus Notes con Web service, ¿Cómo mostrar los datos en formulario cliente?

Hola, tengo que consumir un web service con lotus note,  ya tengo el WSDL

http://www.webservicex.net/globalweather.asmx?wsdl 

¿cómo despliego el resultado en un formulario cliente lotus note?..

Gracias

1 Respuesta

Respuesta

Te paso un script con la llamada a otro webservice de la misma URL.

Con ponerlo en un botón te vale.

'Specify the location of the service's WSDL file

sWSDL = "http://www.webservicex.net/stockquote.asmx?WSDL"
'Create a new MSSOAP client object
Set Client =CreateObject("MSSOAP.SoapClient")
'Initialize connection to the WSDL file and get WSDL structure
Call Client.mssoapinit (sWSDL)
'Call GetQuote function provided by the Web service
result = Client.GetQuote("IBM")
'Output the result to a message box
Messagebox result, MB_OK, "Quote"

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas