WCTS Method
Handles OGC Web Coordinate Transformation Service (WCTS) requests.
Visual Basic |
---|
Public Function WCTS( _
ByVal requestType As String, _
ByVal absoluteUri As String, _
ByVal contentType As String, _
ByVal postData As Byte _
) As Integer
|
- requestType
- Gets the HTTP data transfer method (GET or POST) used by the client.
- absoluteUri
- Gets the absolute URI. For example: "http://wwww.myserver.com". + Request.RawUrl - gets the raw URL of the current request.
- contentType
- GET: ignored, in this case use "". POST: Request.ContentType - gets the MIME content type of the incoming request.
- postData
- GET: ignored, in this case use "". POST: read all from Request.InputStream - gets the contents of the incoming HTTP entity body.
Available: GEO
Groups:
sis.WCTS (GET, Request.RawUrl, Request.ContentType, POST)