Skip to content

Instantly share code, notes, and snippets.

@tothda
Created September 22, 2008 19:25
Show Gist options
  • Select an option

  • Save tothda/12110 to your computer and use it in GitHub Desktop.

Select an option

Save tothda/12110 to your computer and use it in GitHub Desktop.
-- névtér és szolgáltatás beállítása
req := dbxpk_soap.newrequest('GetWeather','xmlns="http://www.webserviceX.NET"');
-- paraméterek és típusaik megadása
dbxpk_soap.addparameter(req, 'CityName', 'xsd:string', 'Budapest');
dbxpk_soap.addparameter(req, 'CountryName', 'xsd:string', 'Hungary');
-- a szolgáltatás meghívása
resp := dbx_pk_soap.invoke(req,'http://www.webservicex.net/globalweather.asmx', '"http://www.webserviceX.NET/GetWeather"');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment