|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object
oracle.soap.transport.http.OracleSOAPHTTPConnection
Field Summary | |
static java.lang.String |
ALLOW_USER_INTERACTION property to set user interaction |
static java.lang.String |
AUTH_TYPE property used for defining http auth type (basic/digest) |
static java.lang.String |
CIPHERS property used for defining cipher suites used for HTTPS (colon separated list of cipher suites) |
static java.lang.String |
NO_UTF8 Connection property to remove the "charset" parameter in the Content-Type HTTP header. |
static java.lang.String |
PASSWORD property used for defining http password |
static java.lang.String |
PROXY_AUTH_TYPE property used for defining proxy auth type (basic/digest) |
static java.lang.String |
PROXY_HOST property used for defining proxy host |
static java.lang.String |
PROXY_PASSWORD property used for defining proxy password |
static java.lang.String |
PROXY_PORT property used for defining proxy port |
static java.lang.String |
PROXY_REALM property used for defining http auth realm used by HTTPClient |
static java.lang.String |
PROXY_USERNAME property used for defining proxy username |
static java.lang.String |
REALM property used for defining http auth realm used by HTTPClient |
static java.lang.String |
USERNAME property used for defining http username |
static java.lang.String |
WALLET_LOCATION property used for defining wallet location used for HTTPS |
static java.lang.String |
WALLET_PASSWORD property used for defining wallet password used for HTTPS |
Constructor Summary | |
OracleSOAPHTTPConnection() Default constructor. |
|
OracleSOAPHTTPConnection(java.util.Properties prop) Constructor that takes Properties as an arg. |
Method Summary | |
void |
close() Closes the connection. |
void |
finalize() |
java.lang.String |
getAuthType() Get the HTTP authentication type. |
java.lang.String |
getCiphers() Get the cipher suites |
java.util.Hashtable |
getHeaders() Return access to headers generated by the protocol. |
boolean |
getMaintainSession() Return session maintanence status. |
int |
getOutputBufferSize() Gets the output buffer size (in bytes). |
java.lang.String |
getPassword() Get the password for HTTP authentication. |
java.util.Properties |
getProperties() Get the connection properties. |
java.lang.String |
getProxyAuthType() Get the HTTP proxy authentication type. |
java.lang.String |
getProxyHost() Get HTTP proxy host. |
java.lang.String |
getProxyPassword() Get the password for HTTP proxy authentication. |
int |
getProxyPort() Get HTTP proxy port. |
java.lang.String |
getProxyRealm() Get the realm for HTTP proxy authentication. |
java.lang.String |
getProxyUserName() Get the username for HTTP proxy authentication. |
java.lang.String |
getRealm() Get the realm for HTTP authentication. |
java.util.Properties |
getRequestHeaders() Gets the HTTP request headers. |
SOAPContext |
getResponseSOAPContext() Return the SOAPContext associated with the response. |
int |
getTimeout() Get the HTTP read timeout. |
boolean |
getUserInteraction() Get user interaction. |
java.lang.String |
getUserName() Get the username for HTTP authentication. |
java.lang.String |
getWalletLocation() Get the Oracle Wallet Location. |
java.lang.String |
getWalletPassword() Get the Oracle Wallet password. |
java.io.BufferedReader |
receive() Return a buffered reader to receive back the response to whatever was sent to whatever. |
void |
send(java.net.URL sendTo, java.lang.String action, java.util.Hashtable headers, Envelope env, SOAPMappingRegistry smr, SOAPContext ctx) This method is used to request that an envelope be posted to the given URL. |
void |
setAuthType(java.lang.String authType) Set the HTTP authentication type. |
void |
setCiphers(java.lang.String ciphers) Set the cipher suites |
void |
setMaintainSession(boolean maintainSession) Indicate whether to maintain HTTP sessions. |
void |
setOutputBufferSize(int sz) Sets the output buffer size (in bytes). |
void |
setPassword(java.lang.String password) Set the password for HTTP authentication. |
void |
setProperties(java.util.Properties prop) Set the connection properties. |
void |
setProxyAuthType(java.lang.String authType) Set the HTTP proxy authentication type. |
void |
setProxyHost(java.lang.String host) Set HTTP proxy host. |
void |
setProxyPassword(java.lang.String password) Set the password for HTTP proxy authentication. |
void |
setProxyPort(int port) Set HTTP proxy port. |
void |
setProxyRealm(java.lang.String proxyRealm) Set the realm for HTTP proxy authentication. |
void |
setProxyUserName(java.lang.String username) Set the username for HTTP proxy authentication. |
void |
setRealm(java.lang.String realm) Set the realm for HTTP authentication. |
void |
setRequestHeaders(java.util.Properties headers) Sets the HTTP request headers. |
void |
setTimeout(int timeout) Set the HTTP read timeout. |
void |
setUserInteraction(boolean userInteraction) Set user interaction. |
void |
setUserName(java.lang.String username) Set the username for HTTP authentication. |
void |
setWalletLocation(java.lang.String wltLoc) Set the Oracle Wallet Location. |
void |
setWalletPassword(java.lang.String wltPassword) Set the Oracle Wallet password. |
Methods inherited from class java.lang.Object |
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final java.lang.String NO_UTF8
public static final java.lang.String ALLOW_USER_INTERACTION
public static final java.lang.String PROXY_HOST
public static final java.lang.String PROXY_PORT
public static final java.lang.String PROXY_AUTH_TYPE
public static final java.lang.String PROXY_USERNAME
public static final java.lang.String PROXY_PASSWORD
public static final java.lang.String AUTH_TYPE
public static final java.lang.String USERNAME
public static final java.lang.String PASSWORD
public static final java.lang.String REALM
public static final java.lang.String PROXY_REALM
public static final java.lang.String WALLET_LOCATION
public static final java.lang.String WALLET_PASSWORD
public static final java.lang.String CIPHERS
Constructor Detail |
public OracleSOAPHTTPConnection()
public OracleSOAPHTTPConnection(java.util.Properties prop)
prop
- connection propertiesMethod Detail |
public void setProperties(java.util.Properties prop)
setProperties
in interface OracleSOAPTransport
prop
- connection propertiespublic java.util.Properties getProperties()
getProperties
in interface OracleSOAPTransport
public void setUserInteraction(boolean userInteraction)
userInteraction
- allow userInteraction if true.public boolean getUserInteraction()
public void setProxyHost(java.lang.String host)
host
- the HTTP proxy host or null if no proxy.public java.lang.String getProxyHost()
public void setProxyPort(int port)
port
- the HTTP proxy port.public int getProxyPort()
public void setAuthType(java.lang.String authType)
public java.lang.String getAuthType()
public void setUserName(java.lang.String username)
public java.lang.String getUserName()
public void setPassword(java.lang.String password)
public java.lang.String getPassword()
public void setRealm(java.lang.String realm)
public java.lang.String getRealm()
public void setProxyAuthType(java.lang.String authType)
public java.lang.String getProxyAuthType()
public void setProxyUserName(java.lang.String username)
public java.lang.String getProxyUserName()
public void setProxyPassword(java.lang.String password)
public java.lang.String getProxyPassword()
public void setProxyRealm(java.lang.String proxyRealm)
public java.lang.String getProxyRealm()
public void setWalletLocation(java.lang.String wltLoc)
public java.lang.String getWalletLocation()
public void setWalletPassword(java.lang.String wltPassword)
public java.lang.String getWalletPassword()
public void setCiphers(java.lang.String ciphers)
public java.lang.String getCiphers()
public void setMaintainSession(boolean maintainSession)
public boolean getMaintainSession()
public void setTimeout(int timeout)
timeout
- the amount of time, in ms, to block on reading data. A zero value indicates an infinite timeout.public int getTimeout()
public void setOutputBufferSize(int sz)
sz
- The output buffer size (in bytes).public int getOutputBufferSize()
public void setRequestHeaders(java.util.Properties headers)
send
method is called with null
protocol headers. The HTTP header names are case insensitive. If two (or more) headers, whose names only differ by case, are set; only one of those two (or more) headers will be sent. It is undefined as to which header, of the two (or more) headers whose names only differ by case, will get picked to be send.headers
- Properties that contain the HTTP request headers.send
public java.util.Properties getRequestHeaders()
send
method is called with null
protocol headers.send
public void send(java.net.URL sendTo, java.lang.String action, java.util.Hashtable headers, Envelope env, SOAPMappingRegistry smr, SOAPContext ctx) throws SOAPException
org.apache.soap.rpc.Call
instead.send
in interface SOAPTransport
sendTo
- the URL to send the envelope toaction
- the SOAPAction header field valueheaders
- any other header fields to go to as protocol headersenv
- the envelope to sendsmr
- the XML<->Java type mapping registry (passed on)ctx
- the request SOAPContextSOAPException
- with appropriate reason code if problempublic java.io.BufferedReader receive()
org.apache.soap.rpc.Call
instead.receive
in interface SOAPTransport
public java.util.Hashtable getHeaders()
org.apache.soap.rpc.Call
instead.getHeaders
in interface SOAPTransport
public SOAPContext getResponseSOAPContext()
getResponseSOAPContext
in interface SOAPTransport
public void close()
BufferedReader
returned by receive
method may be closed and should not be used. Calling this method will free resources without having the garbage collector runclose
in interface OracleSOAPTransport
public void finalize() throws java.lang.Throwable
java.lang.Throwable
|
Oracle® Application Server XML Java API Reference 10g Release 3 (10.1.3) B28238-01 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |