Examples of BeehiveWsSOAPBindingInfo


Examples of org.apache.beehive.wsm.model.BeehiveWsSOAPBindingInfo

                org.xmlsoap.schemas.wsdl.soap.TBody[] bodies = getSOAPBody(tbMsg);
                if (bodies.length > 0) {
                    if (wsm.getWsTargetNamespace() == null) {
                        wsm.setWsTargetNamespace(bodies[0].getNamespace());
                    }
                    BeehiveWsSOAPBindingInfo soapInfo = wsm.getSoapBinding();
                    if (UseChoice.ENCODED.equals(bodies[0].getUse())) {
                        soapInfo.setUse(SOAPBinding.Use.ENCODED);
                    }
                }
               
                setSoapHeaders(wmm, tbMsg);
               
View Full Code Here

Examples of org.apache.beehive.wsm.model.BeehiveWsSOAPBindingInfo

  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);
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.