Package org.jboss.test.ws.jaxrpc.xop.doclit

Source Code of org.jboss.test.ws.jaxrpc.xop.doclit.InlineHandler

/*
* JBoss, Home of Professional Open Source
* Copyright 2005, JBoss Inc., 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.jboss.test.ws.jaxrpc.xop.doclit;

import javax.xml.namespace.QName;
import javax.xml.rpc.handler.GenericHandler;
import javax.xml.rpc.handler.HandlerInfo;
import javax.xml.rpc.handler.MessageContext;
import javax.xml.rpc.handler.soap.SOAPMessageContext;
import javax.xml.soap.SOAPBody;
import javax.xml.soap.SOAPElement;
import javax.xml.soap.SOAPMessage;

import org.jboss.logging.Logger;
import org.jboss.ws.core.soap.NameImpl;

/**
* @author Heiko Braun <heiko.braun@jboss.com>
* @version $Id: InlineHandler.java 2324 2007-02-09 16:14:15Z heiko.braun@jboss.com $
* @since Sep 25, 2006
*/
public class InlineHandler extends GenericHandler
{
   HandlerInfo config;

   private static Logger log = Logger.getLogger(InlineHandler.class);

   public QName[] getHeaders()
   {
      return new QName[0];
   }

   public void init(HandlerInfo config) {
      this.config = config;
   }

   public boolean handleRequest(MessageContext messageContext)
   {
      dumpMessage(messageContext);
      return true;
   }

   public boolean handleResponse(MessageContext messageContext)
   {
      dumpMessage(messageContext);
      return true;
   }

   private void dumpMessage(MessageContext messageContext)
   {
      try
      {
         SOAPMessage soapMessage = ((SOAPMessageContext)messageContext).getMessage();
         SOAPBody soapBody = soapMessage.getSOAPBody();

         SOAPElement bodyElement = (SOAPElement)soapBody.getChildElements().next();
         SOAPElement xopElement = (SOAPElement)bodyElement.getChildElements(new NameImpl("xopContent")).next();
         String base64Value = xopElement.getValue();
         log.debug("base64Value: " + base64Value);
         messageContext.setProperty("xop.inline.value", base64Value);
      }
      catch (Exception e)
      {
         log.error("Failed to access inline XOP values", e);
      }
   }
}
TOP

Related Classes of org.jboss.test.ws.jaxrpc.xop.doclit.InlineHandler

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.