Package com.sun.enterprise.security.jauth

Examples of com.sun.enterprise.security.jauth.ClientAuthConfig


  ServiceRefPortInfo portInfo = serviceRef.getPortInfoByPort(port);
  if (portInfo != null) {
      binding = portInfo.getMessageSecurityBinding();
  }

  ClientAuthConfig config = ClientAuthConfig.getConfig
      (com.sun.enterprise.security.jauth.AuthConfig.SOAP,
       binding, null);

  if (config != null) {

      // get understood headers from auth module.
      QName[] headers = config.getMechanisms();
     
      Map properties = new HashMap();
      properties.put(MessageLayerClientHandler.CLIENT_AUTH_CONFIG, config);
            properties.put(javax.xml.ws.handler.MessageContext.WSDL_SERVICE,
                serviceRef.getServiceName());
View Full Code Here

TOP

Related Classes of com.sun.enterprise.security.jauth.ClientAuthConfig

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.