4D v16.3

WEB SERVICE SET OPTION

Home

 
4D v16.3
WEB SERVICE SET OPTION

WEB SERVICE SET OPTION 


 

WEB SERVICE SET OPTION ( option ; value ) 
Parameter Type   Description
option  Longint in Code of the option to set
value  Longint, Text in Value of the option

This command is designed for advanced Web Services users. Its use is optional.

The WEB SERVICE SET OPTION command sets different options to be used during the next SOAP request triggered using the WEB SERVICE CALL command.
You can call this command as many times as there are options to be set.

In the option parameter, pass the number of the option to set and in the value parameter, pass the new value of the option. For these parameters, you can use one of the following predefined constants of the Web Services (Client) theme:

Constant Type Value Comment
Web Service display auth dialog Longint 4 value =  0 (do not display dialog box) or 1 (display dialog box)
This option manages the display of the authentication dialog box during execution of the WEB SERVICE CALL command. By default, this command never displays the dialog box; normally, you have to use the WEB SERVICE AUTHENTICATE command to do so. However, if you want the authentication dialog box to appear in order for the user to enter their identifiers, you will need to use this option: pass 1 in value to display the dialog box and 0 otherwise. The dialog box only appears if the Web service requires authentication
Web Service HTTP compression Longint 6 value = Web Service Compression
This option is used to enable an internal compression mechanism for SOAP requests in order to accelerate inter-4D application exchanges. When you execute the statement WEB SERVICE SET OPTION(Web Service HTTP Compression; Web Service Compression) on the 4D client of the Web Service, the data of the next SOAP request sent by the client will be compressed using a standard HTTP mechanism ("gzip" or "deflate", depending on the request contents) before being sent to the 4D SOAP server. The server will decompress and parse the request, then will reply automatically using the same mechanism. Only the request that follows the call to the WEB SERVICE SET OPTION command is affected. You must therefore call this command each time you want to use compression. By default, 4D does not compress Web Service HTTP requests.
Note: This mechanism cannot be used for requests sent to a 4D SOAP server whose version is earlier than 11.3. So that you can further optimize this functioning, additional options configure the threshold and compression rate of the requests. These options can be accessed via the SET DATABASE PARAMETER command
Web Service HTTP timeout Longint 1 value = timeout of the client portion expressed in seconds.
The timeout of the client portion is the wait period of the Web Service client in case the server does not respond. After this period, the client closes the session and the request is lost.
This timeout is 180 seconds by default. It can be modified for specific reasons (network status, Web Service specifics, etc.).
Web Service reset auth settings Longint 5 value = 0 (do not erase information) or 1 (erase information)
This option lets you indicate to 4D whether to memorize the authentication information of the user (user name, password, method, etc.), in order to reuse it subsequently. By default, this information is erased after each execution of the WEB SERVICE CALL command. Pass 0 in value to store the information and 1 to erase it. Note that when you pass 0, the information is kept during the session but is not stored.
Web Service SOAP header Longint 2 value = XML root element reference to insert as a header in the SOAP request.
This option allows you to insert a header in a SOAP request generated using the WEB SERVICE CALL command. SOAP requests do not contain a specific header by default. However, certain Web Services require a header, for example when managing identification parameters
Web Service SOAP version Longint 3 value = Web Service SOAP_1_1 or Web Service SOAP_1_2
This option lets you specify the SOAP protocol version used in the request. Pass the Web Service SOAP_1_1 constant in value to indicate version 1.1 and Web Service SOAP_1_2 to indicate version 1.2.

The order in which the options are called is not important. If the same option is set several times, only the value of the last call is taken into account.

Inserting a customized header in the SOAP request:

  ` Creating an XML reference
 C_TEXT(vRootRef;vElemRef)
 vRootRef:=DOM Create XML Ref("RootElement")
 vxPath:="/RootElement/Elem1/Elem2/Elem3"
 vElemRef:=DOM Create XML element(vRootRef;vxPath)
  `Modifying SOAP header with reference
 WEB SERVICE SET OPTION(Web Service SOAP header;vElemRef)

Using version 1.2 of the SOAP protocol:



See also 

WEB SERVICE CALL

 
PROPERTIES 

Product: 4D
Theme: Web Services (Client)
Number: 901

 
HISTORY 

Modified: 4D v11 SQL Release 3
Renamed: 4D v13

 
ARTICLE USAGE

4D Language Reference ( 4D v16)
4D Language Reference ( 4D v16.1)
4D Language Reference ( 4D v16.2)
4D Language Reference ( 4D v16.3)