private void processTBinding(TBinding tBind, BeehiveWsTypeMetadata wsm)
throws IllegalAccessException, NoSuchFieldException {
org.xmlsoap.schemas.wsdl.soap.TBinding[] soapBinding = getSOAPBinding(tBind);
BeehiveWsSOAPBindingInfo soapInfo = new SOAPBindingInfo();
if (soapBinding != null && soapBinding.length > 0) {
if (TStyleChoice.RPC.equals(soapBinding[0].getStyle())) {
soapInfo.setStyle(SOAPBinding.Style.RPC);
}
wsm.setSoapBinding(soapInfo);
}
}