Skip navigation links

Oracle Application Server
Web Services Java API Reference
10g Release 3 (10.1.3.1.0)

B28977-01


oracle.webservices
Interface ClientConstants

All Known Subinterfaces:
OracleCall, OracleStub

public interface ClientConstants

A class that holds all the constants used by Calls, Stubs, and ServiceFactory to set and get client side properties.


Field Summary
static String CHARACTER_SET_ENCODING
          This property can be used for Stubs and Calls to get and set the character encoding which will be used to serialize the request soap message.
static String CHUNK_SIZE
          This property can be used for Stubs and Calls to get and set the chunk size for SOAP messages sent over HTTP.
static String CLIENT_CONFIG
          This property can be used for Stubs and Calls to get and set the Web Service Management configuration and other properties.
static String COOKIE_MAP
          This property can be used for Stubs and Calls to get and set the Map of cookies used in a session.
static String DIME_ENCODE_MESSAGES_WITH_ATTACHMENTS
          This property can be used for Stubs and Calls to specify whether DIME should be used to encode any attachments that are present instead of MIME.
static String DO_NOT_CHUNK
          This property can be used for Stubs and Calls to specify whether chunking should be used for SOAP messages sent over HTTP.
static String JMS_TARGET_CORRELATION_ID
          This property can be used for Stubs and Call to get and set the Correlation Identifier for JMS endpoints.
static String JMS_TARGET_MESSAGE_ID
          This property can be used for Stubs and Calls to get the Message Identifier for JMS endpoints.
static String JMS_TARGET_REPLY_TO_FACTORY_NAME
          This property can be used for Stubs and Calls to get and set the ReplyTo factory name for JMS endpoints.
static String JMS_TARGET_REPLY_TO_QUEUE_NAME
          This property can be used for Stubs and Calls to get and set the ReplyTo queue name for JMS endpoints.
static String JMS_TARGET_REPLY_TO_TOPIC_NAME
          This property can be used for Stubs and Calls to get and set the ReplyTo topic name for JMS endpoints.
static String JMS_TRANSPORT_REPLY_TO_FACTORY_NAME
          This property can be used for Stubs and Calls to get and set the ReplyTo factory name for a JMS transport.
static String JMS_TRANSPORT_REPLY_TO_QUEUE_NAME
          This property can be used for Stubs and Calls to get and set the ReplyTo queue name for a JMS transport.
static String MTOM_SUPPORT
          This property can be used for Stubs to specify whether the request, when relavant content exists, will be packaged as per MTOM/XOP.
static String SERVICEIMPL_NAME
          A property to be set in the Properties parameter to indicate the service implementation class name when ServiceFactory.loadService() method is called.
static String SOAP_VERSION
          This property can be used for Stubs and Calls to get and set SOAP version.
static String WSM_INTERCEPTOR_PIPELINE_CONFIG
          Deprecated. This property has been deprecated, please use oracle.webservices.ClientConstants.CLIENT_CONFIG.

 

Field Detail

SERVICEIMPL_NAME

static final String SERVICEIMPL_NAME
A property to be set in the Properties parameter to indicate the service implementation class name when ServiceFactory.loadService() method is called.

Type: java.lang.String

See Also:
Constant Field Values

JMS_TARGET_MESSAGE_ID

static final String JMS_TARGET_MESSAGE_ID
This property can be used for Stubs and Calls to get the Message Identifier for JMS endpoints.

Type: java.lang.String

See Also:
Constant Field Values

JMS_TARGET_CORRELATION_ID

static final String JMS_TARGET_CORRELATION_ID
This property can be used for Stubs and Call to get and set the Correlation Identifier for JMS endpoints.

Type: java.lang.String

See Also:
Constant Field Values

JMS_TARGET_REPLY_TO_TOPIC_NAME

static final String JMS_TARGET_REPLY_TO_TOPIC_NAME
This property can be used for Stubs and Calls to get and set the ReplyTo topic name for JMS endpoints.

Type: java.lang.String

See Also:
Constant Field Values

JMS_TARGET_REPLY_TO_QUEUE_NAME

static final String JMS_TARGET_REPLY_TO_QUEUE_NAME
This property can be used for Stubs and Calls to get and set the ReplyTo queue name for JMS endpoints.

Type: java.lang.String

See Also:
Constant Field Values

JMS_TARGET_REPLY_TO_FACTORY_NAME

static final String JMS_TARGET_REPLY_TO_FACTORY_NAME
This property can be used for Stubs and Calls to get and set the ReplyTo factory name for JMS endpoints.

Type: java.lang.String

See Also:
Constant Field Values

JMS_TRANSPORT_REPLY_TO_QUEUE_NAME

static final String JMS_TRANSPORT_REPLY_TO_QUEUE_NAME
This property can be used for Stubs and Calls to get and set the ReplyTo queue name for a JMS transport.

Type: java.lang.String

See Also:
Constant Field Values

JMS_TRANSPORT_REPLY_TO_FACTORY_NAME

static final String JMS_TRANSPORT_REPLY_TO_FACTORY_NAME
This property can be used for Stubs and Calls to get and set the ReplyTo factory name for a JMS transport.

Type: java.lang.String

See Also:
Constant Field Values

WSM_INTERCEPTOR_PIPELINE_CONFIG

static final String WSM_INTERCEPTOR_PIPELINE_CONFIG
Deprecated. This property has been deprecated, please use oracle.webservices.ClientConstants.CLIENT_CONFIG.
Since:
10.1.3.1.0
See Also:
oracle.webservices.ClientConstants.CLIENT_CONFIG, Constant Field Values

CLIENT_CONFIG

static final String CLIENT_CONFIG
This property can be used for Stubs and Calls to get and set the Web Service Management configuration and other properties.

Type: org.w3c.Element or java.io.File

See Also:
Constant Field Values

DIME_ENCODE_MESSAGES_WITH_ATTACHMENTS

static final String DIME_ENCODE_MESSAGES_WITH_ATTACHMENTS
This property can be used for Stubs and Calls to specify whether DIME should be used to encode any attachments that are present instead of MIME. The default value is false.

Type: java.lang.Boolean

See Also:
Constant Field Values

SOAP_VERSION

static final String SOAP_VERSION
This property can be used for Stubs and Calls to get and set SOAP version. The values are defind in SOAPVersion. If not set, the default value is SOAPVersion.SOAP_1_1.

Type: java.lang.String

See Also:
Constant Field Values

DO_NOT_CHUNK

static final String DO_NOT_CHUNK
This property can be used for Stubs and Calls to specify whether chunking should be used for SOAP messages sent over HTTP. Default value is true.

Type: java.lang.Boolean

See Also:
Constant Field Values

CHUNK_SIZE

static final String CHUNK_SIZE
This property can be used for Stubs and Calls to get and set the chunk size for SOAP messages sent over HTTP. The default chunk size is 4096.

Type: java.lang.Integer

See Also:
Constant Field Values

COOKIE_MAP

static final String COOKIE_MAP
This property can be used for Stubs and Calls to get and set the Map of cookies used in a session. The key and value for entries in the map must be instances of HTTPClient.Cookie

Type: java.util.Map

See Also:
Constant Field Values

CHARACTER_SET_ENCODING

static final String CHARACTER_SET_ENCODING
This property can be used for Stubs and Calls to get and set the character encoding which will be used to serialize the request soap message. See java.nio.charset.Charset for more information about character set encoding. UTF-8 is the default when this property is not set.

Type: java.lang.String

See Also:
Constant Field Values

MTOM_SUPPORT

static final String MTOM_SUPPORT
This property can be used for Stubs to specify whether the request, when relavant content exists, will be packaged as per MTOM/XOP. Relavant content means xsd:base64Binary type. A 'true' value will cause such a request message to be packaged as per MTOM/XOP specifications. A request without relavant content will not be packaged as per MTOM/XOP even if this property has a value of 'true'. A 'false' value will have the same effect as if this is not set. The request will not be packaged as per MTOM/XOP. The default value is false.

Type: java.lang.Boolean

See Also:
Constant Field Values

Skip navigation links

Copyright © 2006, Oracle. All Rights Reserved.