Class Stub
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.
See Also:
Deprecated:
This class is deprecated, please use webreferences2 instead (see also Port).
| 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
CONNECTION_TIMEOUT: StringThis 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
ENDPOINT_ADDRESS_PROPERTY: StringStandard 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
PASSWORD_PROPERTY: StringStandard property: password for authentication.
Deprecated:
use webreferences2 instead
SESSION_MAINTAIN_PROPERTY: StringStandard 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
USERNAME_PROPERTY: StringStandard property: user name for authentication.
Deprecated:
use webreferences2 instead
password: StringReturns the password.
Deprecated:
use webreferences2 instead
timeout: NumberReturns the current read timeout value in milliseconds for this Stub.
Deprecated:
use webreferences2 instead
username: StringReturns 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
- Stub()
_getProperty(name: String): ObjectGets the value of a specific configuration property.
Parameters:
- name - Name of the property whose value is to be retrieved
Returns:
- Value of the configuration property
Deprecated:
use webreferences2 instead
_setProperty(name: String, value: Object): voidSets 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
_setPropertymethod 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_setPropertymethod. In this case, stub configuration errors are detected at the remote method invocation.Parameters:
- name - Name of the configuration property
- value - Value of the property
Deprecated:
use webreferences2 instead
getPassword(): StringReturns the password.
Returns:
- the password. Note: this method handles sensitive security-related data. Pay special attention to PCI DSS v3. requirements 2, 4, and 12.
Deprecated:
use webreferences2 instead
getTimeout(): NumberReturns the current read timeout value in milliseconds for this Stub.
Returns:
- the current timeout value for this Stub.
Deprecated:
use webreferences2 instead
getUsername(): StringReturns the user name.
Note: this method handles sensitive security-related data. Pay special attention to PCI DSS v3. requirements 2, 4, and 12.
Returns:
- the user name.
Deprecated:
use webreferences2 instead
setHeader(namespace: String, name: String, value: Object): voidSets an additional SOAP header value for the next operation.
Parameters:
- namespace - the namespace to use.
- name - the name of the header item.
- value - the value for the header item.
Deprecated:
use webreferences2 instead
setPassword(password: String): voidSets the password.
Parameters:
- password - the password to set.
Deprecated:
use webreferences2 instead
setTimeout(timeout: Number): voidSets 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:
- timeout - the timeout for the next call through this stub.
See Also:
Deprecated:
use webreferences2 instead
setUsername(username: String): voidSets the user name.
Parameters:
- username - the user name to set.
Deprecated:
use webreferences2 instead