Uses of Class
org.apache.axis2.addressing.EndpointReference

Packages that use EndpointReference
org.apache.axis2.addressing   
org.apache.axis2.client   
org.apache.axis2.context   
org.apache.axis2.description   
org.apache.axis2.engine   
org.apache.axis2.jaxws   
org.apache.axis2.jaxws.addressing.factory   
org.apache.axis2.jaxws.addressing.factory.impl   
org.apache.axis2.jaxws.addressing.util   
org.apache.axis2.jaxws.binding   
org.apache.axis2.jaxws.client.dispatch   
org.apache.axis2.jaxws.client.proxy   
org.apache.axis2.jaxws.description   
org.apache.axis2.jaxws.description.impl   
org.apache.axis2.jaxws.spi   
org.apache.axis2.mex.om   
org.apache.axis2.mex.util   
org.apache.axis2.transport   
org.apache.axis2.transport.http   
org.apache.axis2.transport.jms   
org.apache.axis2.transport.local   
org.apache.axis2.transport.mail   
org.apache.axis2.transport.nhttp   
org.apache.axis2.transport.tcp   
org.apache.axis2.transport.xmpp   
org.apache.axis2.transport.xmpp.util   
 

Uses of EndpointReference in org.apache.axis2.addressing
 

Methods in org.apache.axis2.addressing that return EndpointReference
static EndpointReference EndpointReferenceHelper.fromOM(org.apache.axiom.om.OMElement eprOMElement)
          Populates an endpoint reference based on the OMElement that is passed in.
static EndpointReference EndpointReferenceHelper.fromOM(java.lang.String eprString)
          Deprecated. use EndpointReferenceHelper.fromString(String) instead.
static EndpointReference EndpointReferenceHelper.fromString(java.lang.String eprString)
          Populates an endpoint reference based on the String that is passed in.
 

Methods in org.apache.axis2.addressing with parameters of type EndpointReference
static java.lang.String EndpointReferenceHelper.fromOM(EndpointReference epr, org.apache.axiom.om.OMElement eprOMElement)
          Populates an endpoint reference based on the OMElement.
static void EndpointReferenceHelper.fromOM(EndpointReference epr, org.apache.axiom.om.OMElement eprOMElement, java.lang.String addressingNamespace)
          Populates an endpoint reference based on the OMElement and WS-Addressing namespace that is passed in.
static InterfaceName EndpointReferenceHelper.getInterfaceNameMetadata(EndpointReference epr, java.lang.String addressingNamespace)
          Retrieves the WS-Addressing EPR PortType, or InterfaceName, element from an EPR, as appropriate.
static ServiceName EndpointReferenceHelper.getServiceNameMetadata(EndpointReference epr, java.lang.String addressingNamespace)
          Retrieves the WS-Addressing EPR ServiceName element from an EPR.
static WSDLLocation EndpointReferenceHelper.getWSDLLocationMetadata(EndpointReference epr, java.lang.String addressingNamespace)
          Retrieves the wsdli:wsdlLocation attribute from an EPR.
 boolean EndpointReference.isEquivalent(EndpointReference epr)
          Compares key parts of the state from the current instance of this class with the specified instance to see if they are equivalent.
static void EndpointReferenceHelper.setInterfaceNameMetadata(org.apache.axiom.om.OMFactory factory, EndpointReference epr, java.lang.String addressingNamespace, InterfaceName interfaceName)
          Adds an instance of InterfaceName as metadata to the specified EPR.
static void EndpointReferenceHelper.setServiceNameMetadata(org.apache.axiom.om.OMFactory factory, EndpointReference epr, java.lang.String addressingNamespace, ServiceName serviceName)
          Adds an instance of ServiceName as metadata to the specified EPR.
static void EndpointReferenceHelper.setWSDLLocationMetadata(org.apache.axiom.om.OMFactory factory, EndpointReference epr, java.lang.String addressingNamespace, WSDLLocation wsdlLocation)
          Adds an instance of WSDLLocation as metadata to the specified EPR.
static org.apache.axiom.om.OMElement EndpointReferenceHelper.toOM(org.apache.axiom.om.OMFactory factory, EndpointReference epr, QName qname, java.lang.String addressingNamespace)
          Creates an OMElement based on the properties of the endpoint reference.
 

Uses of EndpointReference in org.apache.axis2.client
 

Methods in org.apache.axis2.client that return EndpointReference
 EndpointReference Options.getFaultTo()
          Get WS-Addressing FaultTo endpoint reference.
 EndpointReference Options.getFrom()
          Set WS-Addressing From endpoint reference.
 EndpointReference ServiceClient.getMyEPR(java.lang.String transport)
          Get the endpoint reference for this client using a particular transport.
 EndpointReference Options.getReplyTo()
          Get WS-Addressing ReplyTo endpoint reference.
 EndpointReference ServiceClient.getTargetEPR()
          Get the endpoint reference for the service.
 EndpointReference Options.getTo()
          Get WS-Addressing To endpoint reference.
 

Methods in org.apache.axis2.client with parameters of type EndpointReference
 void Options.setFaultTo(EndpointReference faultTo)
          Set WS-Addressing FaultTo endpoint reference.
 void Options.setFrom(EndpointReference from)
          Set WS-Addressing From endpoint reference.
 void Options.setReplyTo(EndpointReference replyTo)
          Set WS-Addressing ReplyTo endpoint.
 void ServiceClient.setTargetEPR(EndpointReference targetEpr)
          Set the endpoint reference for the service.
 void Options.setTo(EndpointReference to)
          Set WS-Addressing To endpoint.
 

Uses of EndpointReference in org.apache.axis2.context
 

Methods in org.apache.axis2.context that return EndpointReference
 EndpointReference MessageContext.getFaultTo()
           
 EndpointReference MessageContext.getFrom()
           
 EndpointReference ServiceContext.getMyEPR()
           
 EndpointReference ServiceContext.getMyEPR(java.lang.String transport)
          To get the ERP for a given service , if the transport is present and not running then it will add as a listener to ListenerManager , there it will init that and start the listener , and finally ask the EPR from transport for a given service
 EndpointReference MessageContext.getReplyTo()
           
 EndpointReference ServiceContext.getTargetEPR()
           
 EndpointReference MessageContext.getTo()
           
 

Methods in org.apache.axis2.context with parameters of type EndpointReference
 void MessageContext.setFaultTo(EndpointReference reference)
           
 void MessageContext.setFrom(EndpointReference reference)
           
 void ServiceContext.setMyEPR(EndpointReference myEPR)
           
 void MessageContext.setReplyTo(EndpointReference reference)
          Set ReplyTo destination
 void ServiceContext.setTargetEPR(EndpointReference targetEPR)
           
 void MessageContext.setTo(EndpointReference to)
           
 

Uses of EndpointReference in org.apache.axis2.description
 

Methods in org.apache.axis2.description with parameters of type EndpointReference
static TransportOutDescription ClientUtils.inferOutTransport(AxisConfiguration ac, EndpointReference epr, MessageContext msgctx)
           
 

Uses of EndpointReference in org.apache.axis2.engine
 

Methods in org.apache.axis2.engine that return EndpointReference
 EndpointReference ListenerManager.getEPRforService(java.lang.String serviceName, java.lang.String opName, java.lang.String transportName)
          To get an EPR for a given service
 

Uses of EndpointReference in org.apache.axis2.jaxws
 

Constructors in org.apache.axis2.jaxws with parameters of type EndpointReference
BindingProvider(ServiceDelegate svcDelegate, EndpointDescription epDesc, EndpointReference epr, java.lang.String addressingNamespace, WebServiceFeature... features)
           
 

Uses of EndpointReference in org.apache.axis2.jaxws.addressing.factory
 

Methods in org.apache.axis2.jaxws.addressing.factory that return EndpointReference
 EndpointReference Axis2EndpointReferenceFactory.createEndpointReference(QName serviceName, QName endpoint)
          Create an instance of EndpointReference that targets the endpoint identified by the specified WSDL service name and endpoint name.
 EndpointReference Axis2EndpointReferenceFactory.createEndpointReference(java.lang.String address)
          Create an instance of EndpointReference with the specified address.
 EndpointReference Axis2EndpointReferenceFactory.createEndpointReference(java.lang.String address, QName serviceName, QName portName, java.lang.String wsdlDocumentLocation, java.lang.String addressingNamespace)
          Create an instance of EndpointReference.
 

Uses of EndpointReference in org.apache.axis2.jaxws.addressing.factory.impl
 

Methods in org.apache.axis2.jaxws.addressing.factory.impl that return EndpointReference
 EndpointReference Axis2EndpointReferenceFactoryImpl.createEndpointReference(QName serviceName, QName endpoint)
           
 EndpointReference Axis2EndpointReferenceFactoryImpl.createEndpointReference(java.lang.String address)
           
 EndpointReference Axis2EndpointReferenceFactoryImpl.createEndpointReference(java.lang.String address, QName serviceName, QName portName, java.lang.String wsdlDocumentLocation, java.lang.String addressingNamespace)
           
 

Uses of EndpointReference in org.apache.axis2.jaxws.addressing.util
 

Methods in org.apache.axis2.jaxws.addressing.util that return EndpointReference
static EndpointReference EndpointReferenceUtils.createAxis2EndpointReference(java.lang.String address)
           
static EndpointReference EndpointReferenceUtils.createAxis2EndpointReference(java.lang.String address, QName serviceName, QName portName, java.lang.String wsdlDocumentLocation, java.lang.String addressingNamespace)
           
 

Methods in org.apache.axis2.jaxws.addressing.util with parameters of type EndpointReference
static void EndpointReferenceUtils.addInterface(EndpointReference axis2EPR, QName portType, java.lang.String addressingNamespace)
           
static void EndpointReferenceUtils.addLocation(EndpointReference axis2EPR, java.lang.String targetNamespace, java.lang.String wsdlDocumentLocation, java.lang.String addressingNamespace)
           
static void EndpointReferenceUtils.addMetadata(EndpointReference axis2EPR, org.w3c.dom.Element... metadata)
           
static void EndpointReferenceUtils.addReferenceParameters(EndpointReference axis2EPR, org.w3c.dom.Element... referenceParameters)
           
static void EndpointReferenceUtils.addService(EndpointReference axis2EPR, QName service, QName port, java.lang.String addressingNamespace)
           
static EndpointReference EndpointReferenceUtils.convertFromAxis2(EndpointReference axis2EPR, java.lang.String addressingNamespace)
          Convert from a EndpointReference to a subclass of EndpointReference.
static java.lang.String EndpointReferenceUtils.convertToAxis2(EndpointReference axis2EPR, EndpointReference jaxwsEPR)
          Convert from a EndpointReference to a an instance of EndpointReference.
 

Uses of EndpointReference in org.apache.axis2.jaxws.binding
 

Methods in org.apache.axis2.jaxws.binding that return EndpointReference
 EndpointReference BindingImpl.getAxis2EndpointReference()
           
 EndpointReference SOAPBinding.getAxis2EndpointReference()
           
 

Methods in org.apache.axis2.jaxws.binding with parameters of type EndpointReference
 void BindingImpl.setAxis2EndpointReference(EndpointReference epr)
           
 void SOAPBinding.setAxis2EndpointReference(EndpointReference epr)
           
 

Uses of EndpointReference in org.apache.axis2.jaxws.client.dispatch
 

Constructors in org.apache.axis2.jaxws.client.dispatch with parameters of type EndpointReference
BaseDispatch(ServiceDelegate svcDelgate, EndpointDescription epDesc, EndpointReference epr, java.lang.String addressingNamespace, WebServiceFeature... features)
           
JAXBDispatch(ServiceDelegate svcDelegate, EndpointDescription epDesc, EndpointReference epr, java.lang.String addressingNamespace, WebServiceFeature... features)
           
XMLDispatch(ServiceDelegate svcDelegate, EndpointDescription endpointDesc, EndpointReference epr, java.lang.String addressingNamespace, WebServiceFeature... features)
           
 

Uses of EndpointReference in org.apache.axis2.jaxws.client.proxy
 

Constructors in org.apache.axis2.jaxws.client.proxy with parameters of type EndpointReference
JAXWSProxyHandler(ServiceDelegate delegate, java.lang.Class seiClazz, EndpointDescription epDesc, EndpointReference epr, java.lang.String addressingNamespace, WebServiceFeature... features)
           
 

Uses of EndpointReference in org.apache.axis2.jaxws.description
 

Methods in org.apache.axis2.jaxws.description with parameters of type EndpointReference
static EndpointDescription DescriptionFactory.updateEndpoint(ServiceDescription serviceDescription, java.lang.Class sei, EndpointReference epr, java.lang.String addressingNamespace, DescriptionFactory.UpdateType updateType)
          Retrieve or create the EndpointDescription hierachy associated with an existing CLIENT side ServiceDescription for a particular port.
static EndpointDescription DescriptionFactory.updateEndpoint(ServiceDescription serviceDescription, java.lang.Class sei, EndpointReference epr, java.lang.String addressingNamespace, DescriptionFactory.UpdateType updateType, DescriptionBuilderComposite composite, java.lang.Object sparseCompositeKey)
          Retrieve or create an EndpointDescription hierachy associated with an existing CLIENT side ServiceDescription for a particular port.
static EndpointDescription DescriptionFactory.updateEndpoint(ServiceDescription serviceDescription, java.lang.Class sei, EndpointReference epr, java.lang.String addressingNamespace, DescriptionFactory.UpdateType updateType, java.lang.Object serviceDelegateKey)
          Retrieve or create the EndpointDescription hierarchy associated with an existing CLIENT side ServiceDescription for a particular port.
 

Uses of EndpointReference in org.apache.axis2.jaxws.description.impl
 

Methods in org.apache.axis2.jaxws.description.impl with parameters of type EndpointReference
static EndpointDescription DescriptionFactoryImpl.updateEndpoint(ServiceDescription serviceDescription, java.lang.Class sei, EndpointReference epr, java.lang.String addressingNamespace, DescriptionFactory.UpdateType updateType)
           
static EndpointDescription DescriptionFactoryImpl.updateEndpoint(ServiceDescription serviceDescription, java.lang.Class sei, EndpointReference epr, java.lang.String addressingNamespace, DescriptionFactory.UpdateType updateType, DescriptionBuilderComposite composite, java.lang.Object sparseCompositeKey)
           
static EndpointDescription DescriptionFactoryImpl.updateEndpoint(ServiceDescription serviceDescription, java.lang.Class sei, EndpointReference epr, java.lang.String addressingNamespace, DescriptionFactory.UpdateType updateType, java.lang.Object sparseCompositeKey)
           
 

Uses of EndpointReference in org.apache.axis2.jaxws.spi
 

Methods in org.apache.axis2.jaxws.spi that return EndpointReference
 EndpointReference Binding.getAxis2EndpointReference()
           
 

Methods in org.apache.axis2.jaxws.spi with parameters of type EndpointReference
<T> T
ServiceDelegate.getPort(EndpointReference axis2EPR, java.lang.String addressingNamespace, java.lang.Class<T> sei, WebServiceFeature... features)
           
 void Binding.setAxis2EndpointReference(EndpointReference epr)
           
 

Uses of EndpointReference in org.apache.axis2.mex.om
 

Methods in org.apache.axis2.mex.om that return EndpointReference
 EndpointReference MetadataReference.getEPR()
           
 

Methods in org.apache.axis2.mex.om with parameters of type EndpointReference
 void MetadataReference.setEPR(EndpointReference endRef)
          Set EPR
 

Uses of EndpointReference in org.apache.axis2.mex.util
 

Methods in org.apache.axis2.mex.util with parameters of type EndpointReference
static Metadata MexUtil.fromEPR(EndpointReference epr)
           
 

Uses of EndpointReference in org.apache.axis2.transport
 

Methods in org.apache.axis2.transport that return EndpointReference
 EndpointReference TransportListener.getEPRForService(java.lang.String serviceName, java.lang.String ip)
          Deprecated. Transport listener can expose more than EPRs. So this method should return an array of EPRs. Deprecating this method for now and please use getEPRsForServices instead.
 EndpointReference[] TransportListener.getEPRsForService(java.lang.String serviceName, java.lang.String ip)
           
 

Uses of EndpointReference in org.apache.axis2.transport.http
 

Methods in org.apache.axis2.transport.http that return EndpointReference
 EndpointReference SimpleHTTPServer.getEPRForService(java.lang.String serviceName, java.lang.String ip)
          replyToEPR If the user has given host address paramter then it gets the high priority and ERP will be creatd using that N:B - hostAddress should be a complte url (http://www.myApp.com/ws)
 EndpointReference AxisServlet.getEPRForService(java.lang.String serviceName, java.lang.String ip)
           
 EndpointReference CustomListener.getEPRForService(java.lang.String serviceName, java.lang.String ip)
           
 EndpointReference[] SimpleHTTPServer.getEPRsForService(java.lang.String serviceName, java.lang.String ip)
          replyToEPR If the user has given host address paramter then it gets the high priority and ERP will be creatd using that N:B - hostAddress should be a complete url (http://www.myApp.com/ws)
 EndpointReference[] AxisServlet.getEPRsForService(java.lang.String serviceName, java.lang.String ip)
           
 EndpointReference[] CustomListener.getEPRsForService(java.lang.String serviceName, java.lang.String ip)
           
 

Uses of EndpointReference in org.apache.axis2.transport.jms
 

Methods in org.apache.axis2.transport.jms that return EndpointReference
 EndpointReference JMSConnectionFactory.getEPRForDestination(java.lang.String destination)
          Return the EPR for the JMS Destination with the given JNDI name and using this connection factory
 EndpointReference JMSListener.getEPRForService(java.lang.String serviceName, java.lang.String ip)
          Returns the EPR for the given service and IP.
 EndpointReference[] JMSListener.getEPRsForService(java.lang.String serviceName, java.lang.String ip)
          Returns EPRs for the given service and IP.
 

Uses of EndpointReference in org.apache.axis2.transport.local
 

Methods in org.apache.axis2.transport.local with parameters of type EndpointReference
 void LocalTransportReceiver.processMessage(java.io.InputStream in, EndpointReference to, java.lang.String action, java.io.OutputStream response)
           
 

Uses of EndpointReference in org.apache.axis2.transport.mail
 

Fields in org.apache.axis2.transport.mail declared as EndpointReference
protected  EndpointReference MailBasedOutTransportInfo.from
           
 

Methods in org.apache.axis2.transport.mail that return EndpointReference
 EndpointReference SimpleMailListener.getEPRForService(java.lang.String serviceName, java.lang.String ip)
           
 EndpointReference[] SimpleMailListener.getEPRsForService(java.lang.String serviceName, java.lang.String ip)
           
 EndpointReference MailBasedOutTransportInfo.getFrom()
           
 

Methods in org.apache.axis2.transport.mail with parameters of type EndpointReference
 void EMailSender.setFrom(EndpointReference from)
           
 void MailBasedOutTransportInfo.setFrom(EndpointReference from)
           
 

Constructors in org.apache.axis2.transport.mail with parameters of type EndpointReference
MailToInfo(EndpointReference epr)
           
 

Uses of EndpointReference in org.apache.axis2.transport.nhttp
 

Methods in org.apache.axis2.transport.nhttp that return EndpointReference
static EndpointReference Util.getDestinationEPR(MessageContext msgContext)
          Get the EPR for the message passed in
 EndpointReference Axis2HttpRequest.getEpr()
           
 EndpointReference HttpCoreNIOListener.getEPRForService(java.lang.String serviceName, java.lang.String ip)
          Return the EPR for the given service (implements deprecated method temporarily)
 EndpointReference[] HttpCoreNIOListener.getEPRsForService(java.lang.String serviceName, java.lang.String ip)
          Return the EPRs for the given service over this transport
 

Constructors in org.apache.axis2.transport.nhttp with parameters of type EndpointReference
Axis2HttpRequest(EndpointReference epr, org.apache.http.HttpHost httpHost, MessageContext msgContext)
           
 

Uses of EndpointReference in org.apache.axis2.transport.tcp
 

Methods in org.apache.axis2.transport.tcp that return EndpointReference
 EndpointReference TCPServer.getEPRForService(java.lang.String serviceName, java.lang.String ip)
          I fthe hostAddress parameter is present in axis2.xml then the EPR will be created by taking the hostAddres into account (non-Javadoc)
 EndpointReference[] TCPServer.getEPRsForService(java.lang.String serviceName, java.lang.String ip)
           
 

Methods in org.apache.axis2.transport.tcp with parameters of type EndpointReference
protected  java.io.OutputStream TCPTransportSender.openTheConnection(EndpointReference toURL, MessageContext msgContext)
           
 

Uses of EndpointReference in org.apache.axis2.transport.xmpp
 

Methods in org.apache.axis2.transport.xmpp that return EndpointReference
 EndpointReference XMPPListener.getEPRForService(java.lang.String serviceName, java.lang.String ip)
          Returns Default EPR for a given Service name & IP
 EndpointReference[] XMPPListener.getEPRsForService(java.lang.String serviceName, java.lang.String ip)
          Returns all EPRs for a given Service name & IP
 

Uses of EndpointReference in org.apache.axis2.transport.xmpp.util
 

Methods in org.apache.axis2.transport.xmpp.util that return EndpointReference
 EndpointReference XMPPOutTransportInfo.getFrom()
           
 

Methods in org.apache.axis2.transport.xmpp.util with parameters of type EndpointReference
 void XMPPOutTransportInfo.setFrom(EndpointReference from)
           
 



Copyright © 2007 Apache Web Services Project. All Rights Reserved.