org.uddi4j.transport
Interface Transport
- All Known Implementing Classes:
- TransportBase, HPSOAPTransport
- public interface Transport
Interface for a SOAP transport to be used by UDDI4J.
Transport implementations should use the following
system properties:
-
http.proxyHost = Hostname of http proxy
-
https.proxyHost = Hostname of https proxy
-
http.proxyPort = Portname of http proxy
-
https.proxyPort = Portname of https proxy
-
org.uddi4j.logEnabled If set, indicates that transport
should log message sent and received.
These values may also be specified in a property
file TBD.
- Author:
- David Melgar (dmelgar@us.ibm.com)
Method Summary |
org.w3c.dom.Element |
send(org.w3c.dom.Element el,
java.net.URL url)
Sends a DOM Element to URL. |
org.w3c.dom.Element |
send(UDDIElement el,
java.net.URL url)
Sends a UDDIElement to URL. |
send
public org.w3c.dom.Element send(UDDIElement el,
java.net.URL url)
throws TransportException
- Sends a UDDIElement to URL.
- Parameters:
el
- UDDIElement to sendurl
- Destination URL- Returns:
- An element representing a XML DOM tree containing the UDDI response.
- Throws:
TransportException
- Thrown if a problem occurs during transmission
send
public org.w3c.dom.Element send(org.w3c.dom.Element el,
java.net.URL url)
throws TransportException
- Sends a DOM Element to URL.
- Parameters:
el
- UDDIElement to sendurl
- Destination URL- Returns:
- An element representing a XML DOM tree containing the UDDI response.
- Throws:
TransportException
- Thrown if a problem occurs during transmission
Copyright © 2001 International Business Machines Corporation, Hewlett-Packard Company. All Rights Reserved.