{
log.debug("processSOAPBinding on: " + wsClass.getName());
SOAPBinding anSoapBinding = wsClass.getAnnotation(SOAPBinding.class);
SOAPBinding.Style attrStyle = anSoapBinding.style();
Style style = (attrStyle == SOAPBinding.Style.RPC ? Style.RPC : Style.DOCUMENT);
epMetaData.setStyle(style);
SOAPBinding.Use attrUse = anSoapBinding.use();
if (attrUse == SOAPBinding.Use.ENCODED)
throw new WSException("SOAP encoding is not supported for JSR-181 deployments");