Uploading Custom Map Data from a File
The uploadMapTPMapFromFile operation uploads custom map data from an XML file. The XML file must be stored on the local file system of the machine that hosts the Map24 Web Services. The XML file must contain a MapTPMapUploadRequest containing the map data to upload.
The following listing shows the general structure of the operation in the WSDL file of the Map24 MapTPMap Service:
... <message name="uploadMapTPMapFromFileRequest" > <part name="RequestHeader" type="tns:RequestHeader" /> <part name="MapTPMapUploadFromFileRequest" type="tns:MapTPMapUploadFromFileRequest" /> </message> <message name="uploadMapTPMapFromFileResponse" > <part name="MapTPMapUploadResponse" type="tns:MapTPMapUploadResponse" /> </message> <portType name="Map24MapTPMapServicePortType" > <operation name="uploadMapTPMapFromFile" > <input message="tns:uploadMapTPMapFromFileRequest" /> <output message="tns:uploadMapTPMapFromFileResponse" /> </operation> </portType> ...
Request
The UploadMapTPMapFromFileRequest element contains the parameters for the uploadMapTPMapFromFile operation.

| Field |
Description
|
| Path |
The server path of the file that contains the DMap to upload. |
| RequestProperties |
Further properties of the request. |
Response
Besides the ResponseHeader the response of a uploadMapTPMapFromFile operation does not contain any data. The response is of type MapTPMapUploadResponse.
Examples
An example request is provided here.
|