Sets or gets the method name in the ActiveX, located at the server, that is called by the ISAPI extension DLL after the HTTP connection to the client has been disconnected.
Syntax:
Remarks:
This property is relevant only if the following have been set:
The ISAPI DLL calls the method in the ActiveX after it has disconnected from the client and passes the full file path name of the file as a parameter to the method. The method of the ActiveX interface MUST follow the syntax:
- The HTTP transport method is used.
- The ISAPI extension DLL has been specified using the IsapiExtension property.
- The ActiveX component on the server has been specified using the IsapiActiveXProgID property.
<lReturnValue> = <Object>.<MethodName>(<sFileName>,<sAnyString>)
Where:
- lReturnValue is the return value of the method which returns zero if the operation has failed.
- Object is an interface in the component with the program ID specified in the IsapiActiveXProgID property.
- MethodName is the name of the method to be called by the ISAPI extension.
- sFileName is the name of the file to process.
- sAnyString is any string passed by the client that may or may not be processed by the component.
See Also