Examples of SolidServiceWrapper


Examples of uk.ac.bbsrc.tgac.miso.core.service.integration.ws.solid.SolidServiceWrapper

        Matcher m = Pattern.compile(runDirRegex).matcher(runName);
        if (m.matches()) {
          String machineName = m.group(1);
          String startDate = m.group(2);
          try {
            SolidServiceWrapper solidServiceWrapper = ApplicationContextProvider.getApplicationContext().getBean(machineName, SolidServiceWrapper.class);

            SolidService solidService = solidServiceWrapper.getSolidService();
            RunArray ra = solidService.getSolidPort().getRun(runName, machineName);
            if (ra != null && !ra.getItem().isEmpty()) {
              try {
                String statusXml = ra.getItem().get(0).getXml();
                Document statusDoc = SubmissionUtils.emptyDocument();
View Full Code Here

Examples of uk.ac.bbsrc.tgac.miso.core.service.integration.ws.solid.SolidServiceWrapper

          if (platformType.equals("solid")) {
            for (String key : props.stringPropertyNames()) {
              if (key.startsWith("solid.wsdl.url.")) {
                String serviceName = key.substring(key.lastIndexOf(".") + 1);
                log.debug("Creating service: " + serviceName);
                SolidServiceWrapper ssw = new SolidServiceWrapper(serviceName, URI.create(props.getProperty(key)).toURL());
                context.getBeanFactory().registerSingleton(serviceName, ssw);
              }
            }
          }
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.