Package soaprmi.ogsi.base_types

Examples of soaprmi.ogsi.base_types.LocatorType


      // make sure the handleResolver exists
      if (handleResolverURL == null)
  throw new NonstandardException("Unable to locate a Handle Resolver implementation");

      // Use the real HandleResolver to get a reference
      LocatorType portLocator = null;
     
      try {
  portLocator = ClientUtil.findByHandle(handleResolverURL,
                handle);
      } catch (Exception e) {
  logger.severe("Exception while trying to find a Reference via Handle",
          e);
  throw new NonstandardException("Exception while trying to find a Reference via Handle",
               e);
      }

      ReferenceType[] portRef = portLocator.getReferenceArray();
     
      if (portRef.length > 0) {
  String portGSR = XmlUtil.getChildOf(portRef[0]);
  if (portGSR != null) {
    try {
View Full Code Here

TOP

Related Classes of soaprmi.ogsi.base_types.LocatorType

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.