| Server IP : 74.208.236.79 / Your IP : 216.73.217.111 Web Server : Apache System : Linux infongp-us50 4.4.400-icpu-108 #2 SMP Wed Feb 11 10:12:42 UTC 2026 x86_64 User : u93192080 ( 6162215) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /kunden/usr/share/doc/libsoap-lite-perl/examples/COM/ |
Upload File : |
' -- SOAP::Lite -- soaplite.com -- Copyright (C) 2001 Paul Kulchenko --
' Connect to remote SOAP server
Set soaplite = CreateObject("SOAP.Lite")
' values can be stored in hash using "hash" method
Set subhash = soaplite.hash("key_c", "Value C")
Set hash = soaplite.hash("key_a", "Value A", "key_b", subhash)
' or can be assigned directly
hash.key_b.key_d = "Value D"
Set echohash = soaplite.new( _
"proxy", "http://services.soaplite.com/echo.cgi", _
"uri", "http://namespaces.soaplite.com/Echo" _
).echo(hash).result
MsgBox "key_a: " & echohash.key_a & chr(13) & _
"key_b+key_c: " & echohash.key_b.key_c & chr(13) & _
"key_b+key_d: " & echohash.key_b.key_d