Package org.apache.muse.ws.addressing

Examples of org.apache.muse.ws.addressing.EndpointReference


           
            //
            // create EPR for test resource
            //
            URI address = getLocalAddress(contextPath, port);
            EndpointReference epr = new EndpointReference(address);
           
            addReferenceParameter(epr);
           
            //
            // create proxy - turn on tracing of SOAP messages
View Full Code Here


            //
           
            String contextPath = webAppRoot + "/ServiceGroup";
           
            URI address = getLocalAddress(contextPath, port);
            EndpointReference epr = new EndpointReference(address);
           
            ServiceGroupClient sg = new ServiceGroupClient(epr);
           
            //
            // ping SG, wait a few seconds, then check for members
View Full Code Here

           
            //
            // create EPR for test resource
            //
            URI address = getLocalAddress(contextPath, port);
            EndpointReference epr = new EndpointReference(address);
           
            addReferenceParameter(epr);
           
            //
            // create proxy - turn on tracing of SOAP messages
View Full Code Here

     *
     * @return the endpoint created starting by this application default URI.
     */
    public EndpointReference getDeploymentEPR()
    {
        return new EndpointReference(URI.create(getDefaultURI()));
    }
View Full Code Here

        Element eprXML = XmlUtils.getElement(detail, WsbfConstants.ORIGINATOR_QNAME);
       
        try
        {
            if (eprXML != null)
                setOriginReference(new EndpointReference(eprXML, false));
        }
       
        catch (Throwable error)
        {
            //
View Full Code Here

        _errorCodeDialect = errorCodeDialect;
    }
   
    public final void setOriginReference(EndpointReference origin)
    {
        _origin = new EndpointReference(origin, WsbfConstants.ORIGINATOR_QNAME);
    }
View Full Code Here

        if (eprXML == null)
            throw new InvalidMessageFormatFault(_MESSAGES.get("NoParticipantEPR"));
       
        try
        {
            _resourceEPR = new EndpointReference(eprXML);
        }
       
        catch (SoapFault error)
        {
            throw new InvalidMessageFormatFault(error);
View Full Code Here

        WsResourceClient[] clients = new WsResourceClient[xml.length];
       
        for (int n = 0; n < xml.length; ++n)
        {
            Element eprXML = XmlUtils.getElement(xml[n], MuwsConstants.ACCESS_EPR_QNAME);
            EndpointReference epr = new EndpointReference(eprXML);
            clients[n] = new WsResourceClient(epr);
        }
       
        return clients;
    }
View Full Code Here

        setRealDirectory(realDirectory);
    }
   
    public EndpointReference getDeploymentEPR()
    {
        return new EndpointReference(_deploy);
    }
View Full Code Here

  private Logger _logger = Logger.getLogger(ResourceInspector.class.getPackage().getName());
   
    private Object createBaseProxy(WsResourceClient resource)
        throws Exception
    {
        EndpointReference src = resource.getSource();
        EndpointReference dest = resource.getDestination();
       
        Class[] paramTypes = new Class[]{
                EndpointReference.class, EndpointReference.class
        };
        Constructor ctor = getBaseProxyClass().getConstructor(paramTypes);
View Full Code Here

TOP

Related Classes of org.apache.muse.ws.addressing.EndpointReference

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.