Package org.jboss.jbossts.xts.soapfault

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


        {
            soapFault.setAction(action.getURI().toString()) ;
        }

        final SoapFaultPortType faultPort = getSoapFaultPort(addressingProperties, action);
        Fault fault = soapFault.toFault();
        faultPort.soapFault(fault);
    }
View Full Code Here


        {
            soapFault.setAction(action.getURI().toString()) ;
        }

        final SoapFaultPortType faultPort = getSoapFaultPort(endpoint, addressingProperties, action);
        Fault fault = soapFault.toFault();
        faultPort.soapFault(fault);
    }
View Full Code Here

    // convert to/from fault we can send via the SoapFaultService

    public Fault toFault()
    {
        Fault fault = new Fault();
        QName faultcode = subcode;
        String faultstring = getReason();
        fault.setFaultcode(faultcode);
        fault.setFaultstring(faultstring);
        return fault;
    }
View Full Code Here

TOP

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

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.