SOAPUtil
Stub
WebReference
DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!
Let us know so we can improve!
This is the base class for all service stubs accessible through a WebReference object. The Stub provides access to the WSDL operations.
Demandware recommends a low timeout to ensure responsiveness of the site and to avoid thread exhaustion. Use the Services module in Business Manager to set timeout values, not the methods for this class. The Services module provides better analytics and timeout management.
The default timeout, if not set, is 15 minutes when the web service is used in a job, and 2 minutes otherwise. If the timeout of the calling script is lower, the script timeout is used.
1// get WebReference
2 var webref : WebReference = webreferences.myWSDLname;
3 // get service stub
4 var stub : Stub = webref.defaultService;See Also:
Deprecated:
This class is deprecated, please use webreferences2 instead (see also Port).
Warning
| Constant | Description |
|---|---|
| This property allows the user to set the web service connection timeout value in milliseconds. | |
| Standard property: target service endpoint address. | |
| Standard property: password for authentication. | |
| Standard property: this boolean property is used by a service client to indicate whether or not it wants to participate in a session with a service endpoint. | |
| Standard property: user name for authentication. |
| Property | Description |
|---|---|
| Returns the password. | |
| Returns the current read timeout value in milliseconds for this Stub. | |
| Returns the user name. |
| Constructor | Description |
|---|---|
| Stub() |
| Method | Description |
|---|---|
| Gets the value of a specific configuration property. | |
| Sets the name and value of a configuration property for this Stub instance. | |
| Returns the password. | |
| Returns the current read timeout value in milliseconds for this Stub. | |
| Returns the user name. | |
| Sets an additional SOAP header value for the next operation. | |
| Sets the password. | |
| Sets the timeout in milliseconds for the next call through this Stub. | |
| Sets the user name. |
assign, create, create, defineProperties, defineProperty, entries, freeze, fromEntries, getOwnPropertyDescriptor, getOwnPropertyNames, getOwnPropertySymbols, getPrototypeOf, hasOwnProperty, is, isExtensible, isFrozen, isPrototypeOf, isSealed, keys, preventExtensions, propertyIsEnumerable, seal, setPrototypeOf, toLocaleString, toString, valueOf, values
This property allows the user to set the web service connection timeout value in milliseconds. By default, the web service connection timeout is 5000 milliseconds (5 seconds). The minimum allowed value is 100 milliseconds and the maximum allowed value is 15000 milliseconds (15 seconds). Demandware recommends setting timeout values in Business Manager Services module as it provides better analytics and timeout management.
Deprecated:
use webreferences2 instead
Warning
Standard property: target service endpoint address. The URI scheme for the endpoint address specification must correspond to the protocol/transport binding for this stub class.
Deprecated:
use webreferences2 instead
Warning
Standard property: password for authentication.
Deprecated:
use webreferences2 instead
Warning
Standard property: this boolean property is used by a service client to indicate whether or not it wants to participate in a session with a service endpoint. If this property is set to true, the service client indicates that it wants the session to be maintained. If set to false, the session is not maintained. The default value for this property is false.
Deprecated:
use webreferences2 instead
Warning
Standard property: user name for authentication.
Deprecated:
use webreferences2 instead
Warning
Returns the password.
Deprecated:
use webreferences2 instead
Warning
Returns the current read timeout value in milliseconds for this Stub.
Deprecated:
use webreferences2 instead
Warning
Returns the user name.
Note: this method handles sensitive security-related data. Pay special attention to PCI DSS v3. requirements 2, 4, and 12.
Deprecated:
use webreferences2 instead
Warning
Gets the value of a specific configuration property.
Parameters:
Returns:
Deprecated:
use webreferences2 instead
Warning
Sets the name and value of a configuration property for this Stub instance. If the Stub instance contains a value for the same property, the old value is replaced.
Note: the _setProperty method may not
perform a validity check on a configured property value. An
example is the standard property for the target service
endpoint address, which is not checked for validity in the
_setProperty method.
In this case, stub configuration errors are detected at
the remote method invocation.
Parameters:
Deprecated:
use webreferences2 instead
Warning
Returns the password.
Returns:
Deprecated:
use webreferences2 instead
Warning
Returns the current read timeout value in milliseconds for this Stub.
Returns:
Deprecated:
use webreferences2 instead
Warning
Returns the user name.
Note: this method handles sensitive security-related data. Pay special attention to PCI DSS v3. requirements 2, 4, and 12.
Returns:
Deprecated:
use webreferences2 instead
Warning
Sets an additional SOAP header value for the next operation.
Parameters:
Deprecated:
use webreferences2 instead
Warning
Sets the password.
Parameters:
Deprecated:
use webreferences2 instead
Warning
Sets the timeout in milliseconds for the next call through this Stub.
This timeout value controls "read timeout" (how long, after connecting, it will wait without any data being read). To control "connection timeout" you use the _setProperty(String, Object) method where the name parameter is CONNECTION_TIMEOUT.
Parameters:
See Also:
Deprecated:
use webreferences2 instead
Warning
Sets the user name.
Parameters:
Deprecated:
use webreferences2 instead
Warning