SteinService


Click here for a complete list of operations.

GetEquipmentSummary

GetEquipmentSummary(ByVal VesselPortCall As String, ByVal TerminalCode As String, ByVal ContainerStatus As String, ByVal DocumentStatus As String, ByVal ListType As String, ByVal DrafId As String, ByVal DrafMsgType As String, ByVal SummaryType As String, ByVal SessionTicket As String) As RecapitulativeDataset.
Returns Recapitulative information about equipment that in a given Vessel Port Call Reference, Terminal Estevedoring, equipment status and document status .

The user must have VIEW rights over the service.

Parameters:
-VesselPortCall: The Vessel Por Call.
-TerminalCode: The Code of the Terminal Estividoring.
-ContainerStatus: Status Code of the containers in the equipment list. Available container status codes are:INC (included), CNF (Confirmed) and REG (Registred).
-DocumentStatus: Status Code of the Stein documents.
-ListType : List Type of the Document. Available List type codes are: (), () and ().
-DrafId: Document number if Document is in Draft Status.
-DrafMsgType: Draft Message Type of the Document. Available message type codes are: LE (Container List), LO (Container List Order) and LP (COPCON).
-SummaryType: Summary Type Code. Available message type codes are: APV (Authority Port of Valencia).
-SessionTicket: The Ticket returned by the Login Web Service

Returned values:
-Table of Equipment Summary: List of Summary information that have received within a given parameters according to the RecapitulativeDataset schema. The list could be empty.
-SOAP exception: Some kind of problem has occurred during the execution of the action. The SOAP exception will contain a complete description of the problem.

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /services/stein.asmx HTTP/1.1
Host: stein.valenciaportpcs.net
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/Valenciaport.Services/Stein/GetEquipmentSummary"

<?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>
    <GetEquipmentSummary xmlns="http://tempuri.org/Valenciaport.Services/Stein">
      <VesselPortCall>string</VesselPortCall>
      <TerminalCode>string</TerminalCode>
      <ContainerStatus>string</ContainerStatus>
      <DocumentStatus>string</DocumentStatus>
      <ListType>string</ListType>
      <DrafId>string</DrafId>
      <DrafMsgType>string</DrafMsgType>
      <SummaryType>string</SummaryType>
      <SessionTicket>string</SessionTicket>
    </GetEquipmentSummary>
  </soap:Body>
</soap:Envelope>
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>
    <GetEquipmentSummaryResponse xmlns="http://tempuri.org/Valenciaport.Services/Stein">
      <GetEquipmentSummaryResult>dataset</GetEquipmentSummaryResult>
    </GetEquipmentSummaryResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /services/stein.asmx HTTP/1.1
Host: stein.valenciaportpcs.net
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <GetEquipmentSummary xmlns="http://tempuri.org/Valenciaport.Services/Stein">
      <VesselPortCall>string</VesselPortCall>
      <TerminalCode>string</TerminalCode>
      <ContainerStatus>string</ContainerStatus>
      <DocumentStatus>string</DocumentStatus>
      <ListType>string</ListType>
      <DrafId>string</DrafId>
      <DrafMsgType>string</DrafMsgType>
      <SummaryType>string</SummaryType>
      <SessionTicket>string</SessionTicket>
    </GetEquipmentSummary>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <GetEquipmentSummaryResponse xmlns="http://tempuri.org/Valenciaport.Services/Stein">
      <GetEquipmentSummaryResult>dataset</GetEquipmentSummaryResult>
    </GetEquipmentSummaryResponse>
  </soap12:Body>
</soap12:Envelope>

HTTP GET

The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.

GET /services/stein.asmx/GetEquipmentSummary?VesselPortCall=string&TerminalCode=string&ContainerStatus=string&DocumentStatus=string&ListType=string&DrafId=string&DrafMsgType=string&SummaryType=string&SessionTicket=string HTTP/1.1
Host: stein.valenciaportpcs.net
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<RecapitulativeDataset xmlns="http://tempuri.org/Valenciaport.Services/Stein">dataset</RecapitulativeDataset>