Package org.jboss.soa.esb.samples.quickstart.businessservice

Source Code of org.jboss.soa.esb.samples.quickstart.businessservice.MyAction

/*
* JBoss, Home of Professional Open Source
* Copyright 2006, JBoss Inc., and others contributors as indicated
* by the @authors tag. All rights reserved.
* See the copyright.txt in the distribution for a
* full listing of individual contributors.
* This copyrighted material is made available to anyone wishing to use,
* modify, copy, or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License, v. 2.1.
* This program is distributed in the hope that it will be useful, but WITHOUT A
* 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,
* v.2.1 along with this distribution; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA  02110-1301, USA.
*
* (C) 2005-2006,
* @author JBoss Inc.
*/
package org.jboss.soa.esb.samples.quickstart.businessservice;

import org.jboss.soa.esb.actions.AbstractActionLifecycle;
import org.jboss.soa.esb.helpers.ConfigTree;
import org.jboss.soa.esb.message.Body;
import org.jboss.soa.esb.message.Message;
import org.jboss.tutorial.stateless.bean.HelloWorld;
import javax.naming.InitialContext;

public class MyAction extends AbstractActionLifecycle
{
   
  protected ConfigTree  _config;
   
  public MyAction(ConfigTree config) { _config = config; }
 
  public Message noOperation(Message message) { return message; }

  public Message displayMessage(Message message) throws Exception{   
      logHeader();
      System.out.println("Body: " + (String)message.getBody().get());
      logFooter();
      return message;          
  }
 
   public Message playWithMessage(Message message) throws Exception {
     Body msgBody = message.getBody();
     String results = new String();
     String contents = new String((String)msgBody.get());
     try {
         InitialContext ctx = new InitialContext();
              
         HelloWorld client = (HelloWorld) ctx.lookup("HelloWorldBean/remote");
         results = client.sayHello(contents);
         System.out.println("Invoked EJB3: " + results);
     } catch (Exception e) {
     e.printStackTrace();
         System.out.println(e);
     }
     msgBody.add(results);
     return message;
   }
  
   public void exceptionHandler(Message message, Throwable exception) {
     logHeader();
     System.out.println("!ERROR!");
     System.out.println(exception.getMessage());
     System.out.println("For Message: ");
     System.out.println(message.getBody().get());
     exception.printStackTrace();
     logFooter();
   }
 
   // This makes it easier to read on the console
   private void logHeader() {
     System.out.println("\n&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&");
   }
   private void logFooter() {
     System.out.println("&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&\n");
   }
}
TOP

Related Classes of org.jboss.soa.esb.samples.quickstart.businessservice.MyAction

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.