SOAP: Difference between revisions

334 bytes added ,  9 years ago
m (removed omit for REXX. -- ~~~~)
Line 164:
set result1 [ExampleService::soapFunc "hello"]
set result2 [ExampleService::anotherSoapFunc 34234]</lang>
 
 
=={{header|Uniface}}==
Assuming http://example.com/soap/wsdl has been imported into repository and, as result, exists a new component called "webservice"
 
<lang Uniface>
variables
string result1, result2
endvariables
 
activate "webservice".soapFunc("hello", result1)
activate "webservice".anotherSoapFunc(34234, result2)
</lang>
 
=={{header|VBScript}}==
Anonymous user