UseServerHTTP

Hi

Is there anybody out there who can please give me more information on when to use the ‘UseServerHTTP’ property of the TaminoX API? We use Tamino 4.1.4 with MSXML 4.

I cannot find any documentation on when to use which index besides what is listed below.
Does the network configuration play a role? Web Server to Tamino Server queries?

Thank you
Naas

This is from SAG documentation re. ActiveX help:

UseServerHTTP
long UseServerHTTP(long index)

Modifies the UseServerHTTP index. This is the only method that may be called before the Initialize method. The default UseServerHTTP index value is 0.
Possible values are:
0 - Microsoft.XMLHTTP
1 - MSXML2.XMLHTTP
2 - MSXML2.ServerXMLHTTP
3 - MSXML2.XMLHTTP.4.0
4 - MSXML2.ServerXMLHTTP.4.0
Returns:
previous index value

The server variants are intended for use in server based environments (e.g. IIS). This means that the ActiveX control is being run within a server context.

0 selects the default MSXML parser (invariably MSXML3)
1+2 select the MSXML3 parser
3+4 select the MSXML4 parser

the names are the names of the XML HTTP interfaces as they appear in the registry.

Thank you very much Mark.