Oracle9i Supplied Java Packages Reference Release 2 (9.2) Part Number A96609-01 |
|
This chapter documents package oracle.soap.transport. This package contains the classes that provide support for Oracle SOAP in the XDK for Java.
Oracle SOAP is an implementation of the Simple Object Access Protocol. Oracle SOAP is based on the SOAP open source implementation developed by the Apache Software Foundation.
This chapter contains these sections:
The Simple Object Access Protocol (SOAP) is a transport protocol for sending and receiving requests and responses across the Internet. It is based on XML and HTTP, and it is not blocked by firewalls.
SOAP is transport protocol-independent and operating system-independent. It provides the standard XML message format for all applications. SOAP uses the XML Schema standard of the World Wide Web Consortium (W3C).
Package oracle.soap.transport contains interface oracle.soap.transport.OracleSOAPTransport, which defines Oracle specific transport extensions.
Method | Description |
---|---|
Get the connection properties. |
|
Set the connection properties. |
|
Close the transport and perform any clean up. |
Interface oracle.soap.transport.OracleSOAPTransport
public interface OracleSOAPTransport extends SOAPTransport
This interface defines Oracle specific transport extensions.
public abstract Properties getProperties()
Get the connection properties.
Connection properties
public abstract void setProperties(Properties prop)
Set the connection properties.
prop
- connection properties
public abstract void close()
Close the transport and perform any clean up.
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|