Test funkčnosti Webové služby Long-Term Docs

Webová služba TestWebService ověří správnou funkčnost komunikace s webovou službou.

Popis služby TestWebService včetně WSDL schématu a příklad požadavku a odpovědi pro SOAP 1.1 a SOAP 1.2 je umístěn na http://localhost/ltd/ltd.asmx?op=TestWebService.

Parametr "localhost" je název používaný pro lokální počítač; namísto něj zapište jméno/IP adresu LTD serveru (dle nastavení v IIS).

Požadavek

POST /ltd/ltd.asmx HTTP/1.1
Host: localhost
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://software602.com/longtermdocs/TestWebService"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <TestWebService xmlns="http://software602.com/longtermdocs/" />
  </soap:Body>
</soap:Envelope>

Odpověď

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <TestWebServiceResponse xmlns="http://software602.com/longtermdocs/">
      <TestWebServiceResult>string</TestWebServiceResult>
    </TestWebServiceResponse>
  </soap:Body>
</soap:Envelope>

<TestWebServiceResult>

Návratová hodnota Popis

String

Výsledek ověření funkčnosti komunikace s webovou službou.

Příklad:

Hello from LTDWebService