Web Service
PoyService
Overview
Service Description
Client proxy

Methods Init
DeleteJob
AddFile
AddTextFile
GetFile
GetZipedFile
GetTextFile
SubmitPoy
IsDoneYet

Methods for binding
PoyServiceSoap12
Init
DeleteJob
AddFile
AddTextFile
GetFile
GetZipedFile
GetTextFile
SubmitPoy
IsDoneYet

IsDoneYet

Overview | Test Form | Message Layout


The following are sample SOAP requests and responses for each protocol supported by this method:

Soap

POST /PoyService.asmx
SOAPAction: supramap/IsDoneYet
Content-Type: text/xml; charset=utf-8
Content-Length: string
Host: string

<?xml version="1.0" encoding="utf-16"?>
<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>
    <IsDoneYet xmlns="supramap">
      <jobId>int</jobId>
      <command>string</command>
    </IsDoneYet>
  </soap:Body>
</soap:Envelope>

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

<?xml version="1.0" encoding="utf-16"?>
<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>
    <IsDoneYetResponse xmlns="supramap">
      <IsDoneYetResult>boolean</IsDoneYetResult>
    </IsDoneYetResponse>
  </soap:Body>
</soap:Envelope>

HTTP Get

GET /PoyService.asmx/IsDoneYet?jobId=int&command=string
Host: string

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

<boolean xmlns="supramap">boolean</boolean>

HTTP Post

POST /PoyService.asmx/IsDoneYet
Content-Type: application/x-www-form-urlencoded
Content-Length: string
Host: string

jobId=int&command=string

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

<boolean xmlns="supramap">boolean</boolean>