Package org.jboss.ws.core.soap

Examples of org.jboss.ws.core.soap.SOAPFaultImpl


/*    */
/* 69 */     boolean isActor = (actor == null) || (actor.length() == 0) || ("http://schemas.xmlsoap.org/soap/actor/next".equals(actor)) || (roles.contains(actor));
/* 70 */     if ((isActor) && (!this.headerSource.getHeaders().contains(name)))
/*    */     {
/* 73 */       QName faultCode = SOAPConstants.SOAP_MUSTUNDERSTAND_FAULT;
/* 74 */       SOAPFaultImpl fault = new SOAPFaultImpl();
/* 75 */       fault.setFaultCode(faultCode);
/* 76 */       fault.setFaultString("SOAP header blocks not understood");
/* 77 */       throwFaultException(fault);
/*    */     }
/*    */   }
View Full Code Here

TOP

Related Classes of org.jboss.ws.core.soap.SOAPFaultImpl

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.