Examples of serviceName()


Examples of javax.xml.ws.wsaddressing.W3CEndpointReferenceBuilder.serviceName()

                                                                LOG).toString());
        }       
       
        W3CEndpointReferenceBuilder builder = new W3CEndpointReferenceBuilder();
        builder.address(address);
        builder.serviceName(serviceName);
        builder.endpointName(endpointName);
        if (referenceParameters != null) {
            for (Element referenceParameter : referenceParameters) {
                builder.referenceParameter(referenceParameter);
            }
View Full Code Here

Examples of javax.xml.ws.wsaddressing.W3CEndpointReferenceBuilder.serviceName()

        org.apache.cxf.message.Message msg = getWrappedMessage();
        Endpoint ep = msg.getExchange().get(Endpoint.class);

        W3CEndpointReferenceBuilder builder = new W3CEndpointReferenceBuilder();
        builder.address(ep.getEndpointInfo().getAddress());
        builder.serviceName(ep.getService().getName());
        builder.endpointName(ep.getEndpointInfo().getName());

        if (referenceParameters != null) {
            for (Element referenceParameter : referenceParameters) {
                builder.referenceParameter(referenceParameter);
View Full Code Here

Examples of javax.xml.ws.wsaddressing.W3CEndpointReferenceBuilder.serviceName()

                                                                LOG).toString());
        }       
       
        W3CEndpointReferenceBuilder builder = new W3CEndpointReferenceBuilder();
        builder.address(address);
        builder.serviceName(serviceName);
        builder.endpointName(endpointName);
        if (referenceParameters != null) {
            for (Element referenceParameter : referenceParameters) {
                builder.referenceParameter(referenceParameter);
            }
View Full Code Here

Examples of org.apache.axis2.jaxws.addressing.SubmissionEndpointReferenceBuilder.serviceName()

        w3cBuilder = w3cBuilder.endpointName(new QName("http://test", "TestPort"));
        w3cEPR = w3cBuilder.build();
       
        SubmissionEndpointReferenceBuilder subBuilder = new SubmissionEndpointReferenceBuilder();
        subBuilder = subBuilder.address("http://somewhere.com/somehow");
        subBuilder = subBuilder.serviceName(new QName("http://test", "TestService"));
        subBuilder = subBuilder.endpointName(new QName("http://test", "TestPort"));
        subEPR = subBuilder.build();
    }

    /*
 
View Full Code Here

Examples of org.apache.axis2.jaxws.description.builder.WebServiceAnnot.serviceName()

    public static void testCreateImplDBC() {
        assertNotNull(implDBC);
        WebServiceAnnot wsAnnot = implDBC.getWebServiceAnnot();
        assertNotNull(wsAnnot);
        assertEquals("SimpleService", wsAnnot.serviceName());
    }

    public static void testImplMethods() {
        assertNotNull(implDBC);
        List<MethodDescriptionComposite> mdcList = sortList(implDBC.getMethodDescriptionsList());
View Full Code Here

Examples of org.jboss.identity.federation.core.wstrust.STSClientConfig.Builder.serviceName()

    }

    public WSTrustClient(String serviceName, String port, String endpointURI, SecurityInfo secInfo) throws ParsingException
    {
        Builder builder = new STSClientConfig.Builder();
        builder.serviceName(serviceName).portName(port).endpointAddress(endpointURI).username(secInfo.username).password(secInfo.passwd);
        stsClient = STSClientFactory.getInstance().create(builder.build());
    }

    /**
     * This method will send a RequestSecurityToken with a RequestType of issue
View Full Code Here

Examples of org.picketlink.identity.federation.core.wstrust.STSClientConfig.Builder.serviceName()

    final String username = "admin";
    final String password = "admin";

    public void testBuild() {
        final Builder builder = new STSClientConfig.Builder();
        final STSClientConfig config = builder.serviceName(serviceName).portName(portName).endpointAddress(endpointAddress)
                .username(username).password(password).build();
        assertAllProperties(config);
    }

    public void testBuildFromConfigPropertiesFile() {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.