Package javax.xml.messaging
Class URLEndpoint
- java.lang.Object
-
- javax.xml.messaging.Endpoint
-
- javax.xml.messaging.URLEndpoint
-
public class URLEndpoint extends Endpoint
A special case of theEndpoint
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 aURLEndpoint
object to theSOAPConnection
methodcall
to send a message synchronously.
-
-
Constructor Summary
Constructors Constructor Description URLEndpoint(java.lang.String url)
Constructs a newURLEndpoint
object using the given URL.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getURL()
Gets the URL associated with thisURLEndpoint
object.
-