/*
* $Id: EjbConnector.java 19191 2010-08-25 21:05:23Z tcarlson $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com
*
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.transport.ejb;
import org.mule.api.MuleContext;
import org.mule.api.endpoint.ImmutableEndpoint;
import org.mule.transport.rmi.RmiConnector;
import org.mule.util.ClassUtils;
import java.lang.reflect.Method;
import java.net.UnknownHostException;
import java.rmi.Remote;
import java.rmi.RemoteException;
import javax.ejb.EJBObject;
/**
* Provides Connection configurstion for EJB endpoints
*/
public class EjbConnector extends RmiConnector
{
public static final String EJB = "ejb";
// Errorcodes
public static final int EJB_SERVICECLASS_INVOCATION_FAILED = 2;
public EjbConnector(MuleContext context)
{
super(context);
}
public String getProtocol()
{
return EJB;
}
public Remote getRemoteObject(ImmutableEndpoint endpoint) throws RemoteException, UnknownHostException
{
EJBObject remoteObj;
try
{
Object ref = getRemoteRef(endpoint);
Method method = ClassUtils.getMethod(ref.getClass(), "create", null);
remoteObj = (EJBObject)method.invoke(ref);
}
catch (Exception e)
{
throw new RemoteException("Remote EJBObject lookup failed for '" + endpoint.getEndpointURI(), e);
}
return remoteObj;
}
}