Service Description
asrv.aero
DeIce Data Set Service
Namespace: http://www.asrv.aero/webservices/1.0/DeIceDataSetService
Document revisions
Date | Description | Author |
---|---|---|
2020-03-22 | First complete version of the documentation |
- 1. Introduction
- 2. Service overview
- 3. Service operations
- 4. Data entities
- 4.1. DeIceData
- 4.2. FlightLegIdentifier
- 4.3. ResponseStatus
- 4.4. TransData
- 5. XML Usage
- 6. WSDL and XSDs
- 7. Examples
1. Introduction
1.1. Overview
This service description defines one service with one operation to set de-ice data. The service is primarily designed for de-ice operators to inform the airport about the de-ice process for one aircraft.
All data elements are defined by the Airport Data Dictionary.
The service is primarily designed to be used by de-ice operators.
1.2. Implementation considerations
Any implementation of this service MUST use the WSDL and XSD files provided here: WSDL and XSDs
It is however up to the service provider to decide which data elements to actually update.
Any service provider should make available documentation about the actual implementation, including:
-
- the address of the service.
- any limitations in the implementation.
- any limitations on how often a client can use the service.
1.3. Purpose of this service description
This service description has the following purpose:
-
-
- Describe of service in enough detail for a service provider to implement it.
- Describe the service so that a client (of this service) developer can use it.
- Make available the WSDL and XSD files necessary to implement and use the service.
- Make it possible for relevant people at airports, airlines, handlers and other aviation partners to understand the available functionality and then to decide if to implement/use it or not.
-
1.4. Intended readership
-
- IT architects
- Developers
- Business architects
- Interested parties in the aviation community
2. Service overview
The figure below shows the available operation on the DeIce Data Set Service. The operation is described in detail in Service operations.
3. Service operations
3.1. SubmitDeIceData( transData : TransData, deIceData : DeIceData)
Submits the de-ice data for further processing.
4. Data entities
4.1. DeIceData
DeIceData describes the current de-ice status of the flight leg (aircraft).
|
||||||||||||||||||||||||||||||||||||||||||||||
|
4.2. FlightLegIdentifier
|
|
4.3. ResponseStatus
|
|
4.4. TransData
|
|
5. XML Usage
5.1. Nil Values in Schema
For any particular data element, there is an important distinction between the following cases:
(a) the element is missing
(b) the element is present but has a 'nil' attribute assigned to it
In the first case, this means that the sender is supplying no information about the element. This would typically be because no information is available, or because there has been no change in the value of the element. A recipient would not be expected to take any action as a result of this. In particular, it would not be expected to clear any existing value.
In the second case, this means that the sender has explicitly cleared the element. As a result of this, a recipient would typically clear any value that it had previously stored for this element.
The following table shows an example sequence of messages, and the expected actions taken by the data recipient. It should be noted, however, that the action is up to the recipient. The message from the sender is a notification, and not a command for the recipient to take action.
Message contents |
Expected action by recipient |
---|---|
aircraftRegistration element missing |
Does not set or change aircraft registration value |
<aircraftRegistration>ABC123</aircraftRegistration> |
Sets the value to ABC123 |
aircraftRegistration element missing |
Does not change the value |
<aircraftRegistration xs:nil=’true’> |
Clears the aircraftRegistration value |
Note that the sender should not use blank data elements such as <aircraftRegistration/> or <aircraftRegistration></aircraftRegistration> as these may cause validation errors. For example, if the schema specifies a format or a minimum length for an element, then a zero-length element will be invalid. This problem does not occur if using the nil attribute.
Note - Where a field is defined as mandatory in the schema, it must not contain a nil value.
6. WSDL and XSDs
File | Created | Comment |
---|---|---|
2020-06-26 08:04 |
7. Examples
7.1. Introduction
The following are example invocations of the service.
7.2. Example SOAP templates
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:deic="http://www.asrv.aero/webservices/1.0/DeIceDataSetService" xmlns:dat="http://www.asrv.aero/webservices/1.0/DeIceDataSetService/datadefinitions"> <soapenv:Header/> <soapenv:Body> <deic:submitDeIceDataRequest> <dat:transData> <dat:correlationId>TEST_MEB_1970-01-01T01:02:00Z </dat:correlationId> <dat:sourceOrganization>MEB</dat:sourceOrganization> <dat:sourceTimestamp1970-01-01T01:02:00Z </dat:sourceTimestamp> </dat:transData> <dat:deIceData> <flightLegIdentifier> <dat:ifplId>AA12345678</dat:ifplId> <dat:callsign>ABC1234</dat:callsign> <dat:aircraftRegistration>CD12345678</dat:aircraftRegistration> <dat:ssrCode>1234</dat:ssrCode> <dat:flightId>AB1234</dat:flightId> <dat:flightDepartureDate>1970-01-01</dat:flightDepartureDate> <dat:departureAirportIATA>ABC</dat:departureAirportIATA> <dat:arrivalAirportIATA>DEF</dat:arrivalAirportIATA> <dat:departureAirportICAO>ABCD</dat:departureAirportICAO> <dat:arrivalAirportICAO>DEFG</dat:arrivalAirportICAO> </flightLegIdentifier> <deIceIsRequested>true</deIceIsRequested> <deIceProcessStatus>DeIceRequested</deIceProcessStatus> <deIcePlatform>alfa nord</deIcePlatform> <deIceParkingPosition>ABCD1234</deIceParkingPosition> <deIceConditionCode>01</deIceConditionCode> <deIceAirTemperature>0</deIceAirTemperature> <erzt>1970-01-01T01:02:04Z</erzt> <arzt>1970-01-01T01:02:05Z</arzt> <eczt>1970-01-01T01:02:06Z</eczt> <aczt>1970-01-01T01:02:07Z</aczt> <eezt>1970-01-01T01:02:08Z</eezt> <aezt>1970-01-01T01:02:09Z</aezt> <edit>PT1M</edit> <adit>PT2M</adit> <mechanicalDeIceIsUsed>true</mechanicalDeIceIsUsed> <antiIceStartHoldoverTime>1970-01-01T01:03:02Z</antiIceStartHoldoverTime> <deIceFluidUsage> <deIceFluidType>Type 1</deIceFluidType> <deIceFluidVolume>123</deIceFluidVolume> </deIceFluidUsage> </dat:deIceData> </deic:submitDeIceDataRequest> </soapenv:Body> </soapenv:Envelope>