1 |
SOAP |
REQUEST POST https://localhost:9443/ws/fwd/ HTTP/1.1 Content-Type: text/xml
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:tempuri-org:fwd"> <soapenv:Header/> <soapenv:Body> <urn:pipe_char> <urn:inputValue>234</urn:inputValue> </urn:pipe_char> </soapenv:Body> </soapenv:Envelope>
RESPONSE HTTP/1.1 200 OK Date: Tue, 07 Sep 2021 07:53:20 GMT Content-Type: text/xml Transfer-Encoding: chunked Server: Jetty(9.4.22.v20191022)
<?xml version="1.0" encoding="utf-8" standalone="no"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SOAP-ENV:Body> <pipe_charResponse xmlns="urn:tempuri-org:fwd"> <result xsi:nil="true"/> <outputValue>234</outputValue> </pipe_charResponse> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
|
PASSED |
0.249 |
|