SOAP: Difference between revisions

Content added Content deleted
m (removed omit for REXX. -- ~~~~)
Line 164: Line 164:
set result1 [ExampleService::soapFunc "hello"]
set result1 [ExampleService::soapFunc "hello"]
set result2 [ExampleService::anotherSoapFunc 34234]</lang>
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}}==
=={{header|VBScript}}==