Package org.mule.jbi.servicedesc

Examples of org.mule.jbi.servicedesc.InternalEndpointImpl.parseWsdl()


      QName[] itfs = se.getInterfaces();
      if (itfs == null && se instanceof InternalEndpointImpl) {
        InternalEndpointImpl ie = (InternalEndpointImpl) se;
        RegistryComponent component = JbiContainer.Factory.getInstance().getRegistry().getComponent(ie.getComponent());
        Document doc = ((Component)component.getComponent()).getServiceDescription(ie);
        ie.parseWsdl(doc);
        itfs = se.getInterfaces();
      }
      if (itfs != null) {
        for (int i = 0; i < itfs.length; i++) {
          if (itfs[i].equals(interfaceName)) {
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.