Skip navigation links

Java API Reference for Oracle Infrastructure Web Services
11
Release 1 (11.1.1)

E10654-02


oracle.webservices.soap
Interface UserConstants


public interface UserConstants

Field Summary
static String ATTACH_BUFSIZ
          Property specifying the buffer size to use for streaming attachments.
static String ATTACH_MEMORY_THRESHOLD
          Property specifying the threshold in bytes above which attachments will be cached in a temporary file on disk.
static String ATTACH_PROPERTIES_FILE
          The name of the properties file containing the above property values.
static String ATTACH_PROPERTIES_FILE_LOC
          The property denoting the location in the file system of the properties file.
static String ATTACH_STREAM_INPUT_DEFAULT
          Property to override the default semantics of getInputStream() to stream directly from the source, with read-once semantics, i.e.
static String ATTACH_STREAMING_INCOMING
          Property specifying whether the incoming attachments are intended to be read in streaming fashion.
static String ATTACH_STREAMING_OUTGOING
          Property specifying whether the outgoing attachments are intended to be written in streaming fashion.
static String ATTACH_TEMPDIR
          Property specifying the directory in which to place temporary files that exceed the memory threshold.
static String CID_NO_ANGLE_BRACKETS
          Java system property specifying that the CID for the SOAP part should be produced without enclosing angle-brackets (< >).
static String SOAP_BODY_STREAMING
          Property specifying whether the SOAP Body must be streamed (parsed "lazily").

 

Field Detail

ATTACH_STREAMING_INCOMING

static final String ATTACH_STREAMING_INCOMING
Property specifying whether the incoming attachments are intended to be read in streaming fashion. When in streaming mode, the attachments are optimized to be read once only, although the may still be opened for multiple reads via a non-standard API. Conversely, if not in streaming mode, the attachments will be parsed completely and "eagerly" before being made available. Value is "true" or "false".
See Also:
Constant Field Values

ATTACH_STREAMING_OUTGOING

static final String ATTACH_STREAMING_OUTGOING
Property specifying whether the outgoing attachments are intended to be written in streaming fashion. For HTTP transport, this means the output will be sent in chunked mode.
See Also:
Constant Field Values

ATTACH_STREAM_INPUT_DEFAULT

static final String ATTACH_STREAM_INPUT_DEFAULT
Property to override the default semantics of getInputStream() to stream directly from the source, with read-once semantics, i.e. getInputStream() is mapped to getSourceInputStream() Normally getInputStream() caches the bytes and provides stream from the cache.
See Also:
Constant Field Values

ATTACH_MEMORY_THRESHOLD

static final String ATTACH_MEMORY_THRESHOLD
Property specifying the threshold in bytes above which attachments will be cached in a temporary file on disk.
See Also:
Constant Field Values

ATTACH_TEMPDIR

static final String ATTACH_TEMPDIR
Property specifying the directory in which to place temporary files that exceed the memory threshold.
See Also:
Constant Field Values

ATTACH_BUFSIZ

static final String ATTACH_BUFSIZ
Property specifying the buffer size to use for streaming attachments.
See Also:
Constant Field Values

ATTACH_PROPERTIES_FILE

static final String ATTACH_PROPERTIES_FILE
The name of the properties file containing the above property values. Note the properties may be set individually, or en masse from a single properties file. Note individual property settings override the values in a property file.
See Also:
Constant Field Values

ATTACH_PROPERTIES_FILE_LOC

static final String ATTACH_PROPERTIES_FILE_LOC
The property denoting the location in the file system of the properties file. If not set, we currently only check in the user's home directory.
See Also:
Constant Field Values

CID_NO_ANGLE_BRACKETS

static final String CID_NO_ANGLE_BRACKETS
Java system property specifying that the CID for the SOAP part should be produced without enclosing angle-brackets (< >). By default, they are produced. This is introduced primarily for optional elision of angle brackets in the "start" parameter of a Content-Type header.
See Also:
Constant Field Values

SOAP_BODY_STREAMING

static final String SOAP_BODY_STREAMING
Property specifying whether the SOAP Body must be streamed (parsed "lazily"). May be set to "true", "false", Boolean.TRUE or Boolean.FALSE The default value if this property is not set, is the same as setting it to "false" (ie) the SOAP body will NOT be streamed
See Also:
Constant Field Values

Skip navigation links

Copyright © 2006, 2009 Oracle. All Rights Reserved.