Package edu.indiana.extreme.gfac.external

Examples of edu.indiana.extreme.gfac.external.RegistryService


  private final PortType portType;

  private String wsdlStr;

   public ServiceInvoke(String serviceName,ApplicationGlobalContext gloablContext) throws GfacException{
          RegistryService registryService = gloablContext.getRegService();
          try {
              wsdlStr = registryService.getConcreateWsdl(QName.valueOf(serviceName).toString());
             
              if(wsdlStr != null){
                  WSDLReader wsdlReader = WSDLFactory.newInstance().newWSDLReader();
                  def = wsdlReader.readWSDL(null, new InputSource(new ByteArrayInputStream(wsdlStr.getBytes())));
              }else{
View Full Code Here

TOP

Related Classes of edu.indiana.extreme.gfac.external.RegistryService

Copyright © 2018 www.massapicom. 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.