All Cadcorp SIS API Methods

WMS Method

Description

Handles OGC Web Map Service (WMS) requests.

Syntax

Visual Basic
Public Function WMS( _
   ByVal requestType As String, _
   ByVal absoluteUri As String, _
   ByVal contentType As String, _
   ByVal postData As Byte _
) As Integer

Parameters

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.
 

Remarks

Available: GEO

Groups:

Example

sis.WMS (GET, Request.RawUrl, Request.ContentType, POST)