Package org.wsrp.wss.jboss5.handlers.consumer

Source Code of org.wsrp.wss.jboss5.handlers.consumer.WSSecurityCredentialHandler

/******************************************************************************
* JBoss, a division of Red Hat                                               *
* Copyright 2011, Red Hat Middleware, LLC, and individual                    *
* contributors as indicated by the @authors tag. See the                     *
* copyright.txt in the distribution for a full listing of                    *
* individual contributors.                                                   *
*                                                                            *
* This is free software; you can redistribute it and/or modify it            *
* under the terms of the GNU Lesser General Public License as                *
* published by the Free Software Foundation; either version 2.1 of           *
* the License, or (at your option) any later version.                        *
*                                                                            *
* This software is distributed in the hope that it will be useful,           *
* but WITHOUT ANY WARRANTY; without even the implied warranty of             *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU           *
* Lesser General Public License for more details.                            *
*                                                                            *
* You should have received a copy of the GNU Lesser General Public           *
* License along with this software; if not, write to the Free                *
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA         *
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.                   *
******************************************************************************/
package org.wsrp.wss.jboss5.handlers.consumer;

import java.util.Set;

import javax.servlet.http.HttpServletRequest;
import javax.xml.namespace.QName;
import javax.xml.ws.BindingProvider;
import javax.xml.ws.handler.MessageContext;
import javax.xml.ws.handler.soap.SOAPHandler;
import javax.xml.ws.handler.soap.SOAPMessageContext;

import org.gatein.wci.security.Credentials;
import org.gatein.wsrp.servlet.ServletAccess;
import org.jboss.ws.core.CommonMessageContext;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
* @author <a href="mailto:mwringe@redhat.com">Matt Wringe</a>
* @version $Revision$
*/
public class WSSecurityCredentialHandler implements SOAPHandler<SOAPMessageContext>
{
   private static Logger log = LoggerFactory.getLogger(WSSecurityCredentialHandler.class);

   public void close(MessageContext arg0)
   {
      //Nothing to do for now
   }

   public boolean handleFault(SOAPMessageContext soapMessageContext)
   {
      return true;
   }

   public boolean handleMessage(SOAPMessageContext soapMessageContext)
   {
      if (Boolean.TRUE.equals(soapMessageContext.get(MessageContext.MESSAGE_OUTBOUND_PROPERTY)))
      {
         return handleRequest(soapMessageContext);
      }
      else
      {
         return handleResponse(soapMessageContext);
      }
   }

   private boolean handleRequest(SOAPMessageContext soapMessageContext)
   {
      try
      {

         log.debug("Attempting to convert security context to WS-Security header");

         CommonMessageContext ctx = (CommonMessageContext) soapMessageContext;
        
         HttpServletRequest request = ServletAccess.getRequest();
         if (request != null && request.getSession() != null)
         {
             Credentials credentials  = (Credentials)request.getSession().getAttribute(Credentials.CREDENTIALS);
             if (credentials != null)
             {
                 ctx.put(BindingProvider.USERNAME_PROPERTY, credentials.getUsername());
                 ctx.put(BindingProvider.PASSWORD_PROPERTY, credentials.getPassword());
             }
             else
             {
                 log.debug("Could not find credentials to put in WS-Security header");
                 return true;
             }
         }
         else
         {
             log.debug("Could not get current HttpServletRequest, cannot login.");
         }
      }
      catch (Exception e)
      {
         log.warn("Error occured when trying to add the credentials to the BindingProvider for WS-Security.", e);
      }

      return true;
   }

   private boolean handleResponse(SOAPMessageContext soapMessageContext)
   {
      return false;
   }

   public Set<QName> getHeaders()
   {
      return null;
   }

}
TOP

Related Classes of org.wsrp.wss.jboss5.handlers.consumer.WSSecurityCredentialHandler

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.