Tabnine Logo
ServiceRegistry.getSecureServiceURI
Code IndexAdd Tabnine to your IDE (free)

How to use
getSecureServiceURI
method
in
com.arjuna.webservices11.ServiceRegistry

Best Java code snippets using com.arjuna.webservices11.ServiceRegistry.getSecureServiceURI (Showing top 5 results out of 315)

origin: jbosstm/narayana

  /**
   * Get the service URI.
   * @param serviceName The service name.
   * @param isSecure true if the secure service URL is required false if the normal service URL is required
   * @return The service URI or null if not registered.
   */
  public String getServiceURI(final String serviceName, boolean isSecure)
  {
    if (isSecure) {
      return getSecureServiceURI(serviceName);
    } else {
      return getServiceURI(serviceName);
    }
  }
}
origin: org.jboss.jbossts/jbossxts

  /**
   * Get the service URI.
   * @param serviceName The service name.
   * @param isSecure true if the secure service URL is required false if the normal service URL is required
   * @return The service URI or null if not registered.
   */
  public String getServiceURI(final String serviceName, boolean isSecure)
  {
    if (isSecure) {
      return getSecureServiceURI(serviceName);
    } else {
      return getServiceURI(serviceName);
    }
  }
}
origin: org.jboss.jbossts.xts/jbossxts

  /**
   * Get the service URI.
   * @param serviceName The service name.
   * @param isSecure true if the secure service URL is required false if the normal service URL is required
   * @return The service URI or null if not registered.
   */
  public String getServiceURI(final String serviceName, boolean isSecure)
  {
    if (isSecure) {
      return getSecureServiceURI(serviceName);
    } else {
      return getServiceURI(serviceName);
    }
  }
}
origin: org.jboss.narayana.xts/ws-c11

  /**
   * Get the service URI.
   * @param serviceName The service name.
   * @param isSecure true if the secure service URL is required false if the normal service URL is required
   * @return The service URI or null if not registered.
   */
  public String getServiceURI(final String serviceName, boolean isSecure)
  {
    if (isSecure) {
      return getSecureServiceURI(serviceName);
    } else {
      return getServiceURI(serviceName);
    }
  }
}
origin: jbosstm/narayana

  private static MAP getRegistrationPortMap(Map<String, Object> requestContext) {
    final WSCEnvironmentBean wscEnvironmentBean = XTSPropertyManager.getWSCEnvironmentBean();
    MAP map;
    if (WSCEnvironmentBean.SECURE_ASYNC_REQUEST.equals(wscEnvironmentBean.getUseAsynchronousRequest())) {
      String responseService = PrivilegedServiceRegistryFactory.getInstance().getServiceRegistry()
          .getSecureServiceURI(CoordinationConstants.REGISTRATION_RESPONSE_SERVICE_NAME);
      String faultService = PrivilegedServiceRegistryFactory.getInstance().getServiceRegistry()
          .getSecureServiceURI(CoordinationConstants.COORDINATION_SOAP_FAULT_SERVICE_NAME);
      WSCLogger.logger.tracev("WSCOORClient Using secure endpoints {0} {1}", responseService, faultService);
      map = AddressingHelper.outboundMap(requestContext, responseService, faultService);
    } else if (WSCEnvironmentBean.PLAIN_ASYNC_REQUEST.equals(wscEnvironmentBean.getUseAsynchronousRequest())) {
      String responseService = PrivilegedServiceRegistryFactory.getInstance().getServiceRegistry()
          .getServiceURI(CoordinationConstants.REGISTRATION_RESPONSE_SERVICE_NAME);
      String faultService = PrivilegedServiceRegistryFactory.getInstance().getServiceRegistry()
          .getServiceURI(CoordinationConstants.COORDINATION_SOAP_FAULT_SERVICE_NAME);
      WSCLogger.logger.tracev("WSCOORClient Using plain endpoints {0} {1}", responseService, faultService);
      map = AddressingHelper.outboundMap(requestContext, responseService, faultService);
    } else {
      WSCLogger.logger.tracev("WSCOORClient Using anonymous endpoints");
      map = AddressingHelper.outboundMap(requestContext);
    }
    return map;
  }
}
com.arjuna.webservices11ServiceRegistrygetSecureServiceURI

Javadoc

Get the secure service URI.

Popular methods of ServiceRegistry

  • getRegistry
    Get the service registry.
  • getServiceURI
    Get the service URI.
  • registerSecureServiceProvider
    Register the specified secure service.
  • registerServiceProvider
    Register the specified service.

Popular in Java

  • Creating JSON documents from java classes using gson
  • getSystemService (Context)
  • getExternalFilesDir (Context)
  • setRequestProperty (URLConnection)
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • SortedMap (java.util)
    A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • Handler (java.util.logging)
    A Handler object accepts a logging request and exports the desired messages to a target, for example
  • Runner (org.openjdk.jmh.runner)
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now