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