OnHttpPost - cWebHttpHandler

Triggered for each POST request that comes in

Type: Event

Parameters: String sPath String sContentType String sAcceptType DWord iSize

ParameterDescription
sPathThe path of the request like "/WebOrder_19_1/Something"
sContentTypeThe content-type header of the request.
sAcceptTypeThe accept-type header of the request.
iSizeThe size of the request body in bytes.


Syntax
Procedure OnHttpPost String sPath String sContentType String sAcceptType DWord iSize

Description

This event is triggered for each POST request that comes in.

Note that if OnHttpRequest is not forwarded, then this event will not be called.

psVerbs should include "POST" or should be set to "*".