Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Business Intelligence Publisher
11g Release 1 (11.1.1)

E17789-02


oracle.xdo.delivery.webdav
Interface WebDAVPropertyDefinitions

All Known Subinterfaces:
DeliveryPropertyDefinitions, DeliveryRequestHandler

public interface WebDAVPropertyDefinitions

WebDAV delivery property definitions.


Field Summary
static java.lang.String RCS_ID
           
static java.lang.String WEBDAV_AUTHTYPE
          Authentication type
static java.lang.String WEBDAV_AUTHTYPE_BASIC
          Basic authentication type
static java.lang.String WEBDAV_AUTHTYPE_DIGEST
          Digest authentication type
static java.lang.String WEBDAV_AUTHTYPE_NONE
          No authentication type - use no authentication
static java.lang.String WEBDAV_CONTENT_TYPE
           
static java.lang.String WEBDAV_ENCTYPE
          Encryption type.
static java.lang.String WEBDAV_ENCTYPE_NONE
          None encryption type.
static java.lang.String WEBDAV_ENCTYPE_SSL
          SSL encryption type.
static java.lang.String WEBDAV_HOST
          Target server host name
static java.lang.String WEBDAV_HTTP_REQUEST
           
static java.lang.String WEBDAV_PASSWORD
          Password for the authentication
static java.lang.String WEBDAV_PORT
          Target server port
static java.lang.String WEBDAV_PROXY_AUTHTYPE
          Proxy authentication type
static java.lang.String WEBDAV_PROXY_HOST
          Proxy server host name
static java.lang.String WEBDAV_PROXY_PASSWORD
          Password for the proxy authentication
static java.lang.String WEBDAV_PROXY_PORT
          Proxy server port
static java.lang.String WEBDAV_PROXY_USERNAME
          Username for the proxy authentication
static java.lang.String WEBDAV_REMOTE_DIRECTORY
          Remote directory name where the document will be delivered to.
static java.lang.String WEBDAV_REMOTE_FILENAME
          Remote filename of the document.
static java.lang.String WEBDAV_TARGET_URL
          internal use only
static java.lang.String WEBDAV_TIMEOUT
          Network timeout in millisec.
static java.lang.String WEBDAV_URL_CHARACTER_ENCODING
          Character encoding used for URL encoding.
static java.lang.String WEBDAV_USE_CHUNKED_BODY
          Use chunked body for the HTTP message body.
static java.lang.String WEBDAV_USE_FULL_URL
          Use full URL for the HTTP request header.
static java.lang.String WEBDAV_USERNAME
          Username for the authentication

 

Field Detail

RCS_ID

static final java.lang.String RCS_ID
See Also:
Constant Field Values

WEBDAV_CONTENT_TYPE

static final java.lang.String WEBDAV_CONTENT_TYPE
See Also:
Constant Field Values

WEBDAV_HOST

static final java.lang.String WEBDAV_HOST
Target server host name

WEBDAV_PORT

static final java.lang.String WEBDAV_PORT
Target server port

WEBDAV_REMOTE_DIRECTORY

static final java.lang.String WEBDAV_REMOTE_DIRECTORY
Remote directory name where the document will be delivered to. For example, if the target WebDAV URI is http://foobar.example.org:80/path/to/file.doc, the remote directory is /path/to.
See Also:
Constant Field Values

WEBDAV_REMOTE_FILENAME

static final java.lang.String WEBDAV_REMOTE_FILENAME
Remote filename of the document. For example, if the target WebDAV URI is http://foobar.example.org:80/path/to/file.doc, the remote filename is file.doc.
See Also:
Constant Field Values

WEBDAV_AUTHTYPE

static final java.lang.String WEBDAV_AUTHTYPE
Authentication type

WEBDAV_AUTHTYPE_NONE

static final java.lang.String WEBDAV_AUTHTYPE_NONE
No authentication type - use no authentication

WEBDAV_AUTHTYPE_BASIC

static final java.lang.String WEBDAV_AUTHTYPE_BASIC
Basic authentication type

WEBDAV_AUTHTYPE_DIGEST

static final java.lang.String WEBDAV_AUTHTYPE_DIGEST
Digest authentication type

WEBDAV_USERNAME

static final java.lang.String WEBDAV_USERNAME
Username for the authentication

WEBDAV_PASSWORD

static final java.lang.String WEBDAV_PASSWORD
Password for the authentication

WEBDAV_PROXY_HOST

static final java.lang.String WEBDAV_PROXY_HOST
Proxy server host name

WEBDAV_PROXY_PORT

static final java.lang.String WEBDAV_PROXY_PORT
Proxy server port

WEBDAV_PROXY_AUTHTYPE

static final java.lang.String WEBDAV_PROXY_AUTHTYPE
Proxy authentication type

WEBDAV_PROXY_USERNAME

static final java.lang.String WEBDAV_PROXY_USERNAME
Username for the proxy authentication

WEBDAV_PROXY_PASSWORD

static final java.lang.String WEBDAV_PROXY_PASSWORD
Password for the proxy authentication

WEBDAV_ENCTYPE

static final java.lang.String WEBDAV_ENCTYPE
Encryption type. Not supported in this version

WEBDAV_ENCTYPE_NONE

static final java.lang.String WEBDAV_ENCTYPE_NONE
None encryption type. Not supported in this version

WEBDAV_ENCTYPE_SSL

static final java.lang.String WEBDAV_ENCTYPE_SSL
SSL encryption type. Not supported in this version

WEBDAV_TARGET_URL

static final java.lang.String WEBDAV_TARGET_URL
internal use only
See Also:
Constant Field Values

WEBDAV_TIMEOUT

static final java.lang.String WEBDAV_TIMEOUT
Network timeout in millisec. Default is 600000 (1min).

WEBDAV_USE_FULL_URL

static final java.lang.String WEBDAV_USE_FULL_URL
Use full URL for the HTTP request header.

This option changes the 1st line of the HTTP request. For example, if you turn on this, the 1st line of the HTTP request will be like following.

 PUT http://foobar.example.org/path/to/file HTTP/1.0
 
If you set it to 'false', it will be like following.
 PUT /path/to/file HTTP/1.0
 
Some of WebDAV server doesn't support putting the full URL in the 1st line of the HTTP request header. If you are having a delivery problem, please try to change this value to 'false'.

Default is 'true'.

See Also:
Constant Field Values

WEBDAV_USE_CHUNKED_BODY

static final java.lang.String WEBDAV_USE_CHUNKED_BODY
Use chunked body for the HTTP message body.

Some of WebDAV server doesn't support HTTP chunked body. If you are having a delivery problem, please try to change this value to 'false'.

Default is 'false'.

See Also:
Constant Field Values

WEBDAV_URL_CHARACTER_ENCODING

static final java.lang.String WEBDAV_URL_CHARACTER_ENCODING
Character encoding used for URL encoding. Value should be one of character encodings that Java supports.

WEBDAV_HTTP_REQUEST

static final java.lang.String WEBDAV_HTTP_REQUEST
See Also:
Constant Field Values

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Business Intelligence Publisher
11g Release 1 (11.1.1)

E17789-02


Copyright © 2010, 2011, Oracle. All rights reserved.