Package org.jboss.jbossts.xts.soapfault

Examples of org.jboss.jbossts.xts.soapfault.SoapFaultService


     * @return
     */
    private static synchronized SoapFaultService getSoapFaultService()
    {
        if (soapFaultService.get() == null) {
            soapFaultService.set(new SoapFaultService());
        }
        return soapFaultService.get();
    }
View Full Code Here


    }

    private static SoapFaultPortType getSoapFaultPort(final AddressingProperties addressingProperties,
                                                      final AttributedURI action)
    {
        SoapFaultService service = getSoapFaultService();
        SoapFaultPortType port = service.getPort(SoapFaultPortType.class);
        BindingProvider bindingProvider = (BindingProvider)port;
        AttributedURI toUri = addressingProperties.getTo();
        List<Handler> customHandlerChain = new ArrayList<Handler>();
        /*
         * we have to add the JaxWS WSAddressingClientHandler because we cannot specify the WSAddressing feature
View Full Code Here

    private static SoapFaultPortType getSoapFaultPort(final W3CEndpointReference endpoint,
                                                      final AddressingProperties addressingProperties,
                                                      final AttributedURI action)
    {
        SoapFaultService service = getSoapFaultService();
        SoapFaultPortType port = service.getPort(endpoint, SoapFaultPortType.class);
        BindingProvider bindingProvider = (BindingProvider)port;
        Map<String, Object> requestContext = bindingProvider.getRequestContext();
        AddressingProperties requestProperties = (AddressingProperties)requestContext.get(JAXWSAConstants.CLIENT_ADDRESSING_PROPERTIES_OUTBOUND);
        if (action != null) {
            addressingProperties.setAction(action);
View Full Code Here

TOP

Related Classes of org.jboss.jbossts.xts.soapfault.SoapFaultService

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.