Uploading Custom Map Data from a HTTP Resource
The uploadMapTPMapFromHTTPResource operation uploads custom map data from a URL. Supported protocols are HTTP and FTP. The XML content must contain a MapTPMapUploadRequest as described in section 2.3: Uploading Custom Map Data.
The following listing shows the general structure of the operation in the WSDL file of the Map24 MapTPMap Service:
... <message name="uploadMapTPMapFromHTTPResourceRequest" > <part name="RequestHeader" type="tns:RequestHeader" /> <part name="MapTPMapUploadFromHTTPResourceRequest" type="tns:MapTPMapUploadFromHTTPResourceRequest" /> </message> <message name="uploadMapTPMapFromFileResponse" > <part name="MapTPMapUploadResponse" type="tns:MapTPMapUploadResponse" /> </message> <portType name="Map24MapTPMapServicePortType" > <operation name="uploadMapTPMapFromHTTPResource" > <input message="tns:uploadMapTPMapFromHTTPResourceRequest" /> <output message="tns:uploadMapTPMapFromHTTPResourceResponse" /> </operation> </portType> ...
Request
The UploadMapTPMapFromHTTPResourceRequest element contains the parameters for the uploadMapTPMapFromHTTPResource operation.

| Field |
Description
|
| URL |
The URL that contains the custom map data to be uploaded. Supported protocols are HTTP and FTP. |
| RequestProperties |
Further properties of the request.
|
Response
The response is of type MapTPMapUploadResponse. Besides the ResponseHeader the response of an uploadMapTPMapFromHTTPResource operation does not contain any data.
Examples
An example request is provided here.
|