FileDocCategorySizeDatePackage
URLEndpoint.javaAPI DocApache Axis 1.41753Sat Apr 22 18:57:28 BST 2006javax.xml.messaging

URLEndpoint

public class URLEndpoint extends Endpoint
A special case of the Endpoint class used for simple applications that want to communicate directly with another SOAP-based application in a point-to-point fashion instead of going through a messaging provider.

A URLEndpoint object contains a URL, which is used to make connections to the remote party. A standalone client can pass a URLEndpoint object to the SOAPConnection method call to send a message synchronously.

Fields Summary
Constructors Summary
public URLEndpoint(String url)
Constructs a new URLEndpoint object using the given URL.

param
url a String giving the URL to use in constructing the new URLEndpoint object

        super(url);
    
Methods Summary
public java.lang.StringgetURL()
Gets the URL associated with this URLEndpoint object.

return
a String giving the URL associated with this URLEndpoint object

        return super.id;