now on to the next task. i have slsb's that use other beans via a remote lookup call. the beans use a service locator to get to the other beans. something like:
BeanB's ejbCreate() method:
serviceLocator.init( remoteURL, context factory );
remoteBeanA = (RemoteBeanA) serviceLocator.locate( "remoteBeanA", RemoteBeanAHome.class);
nearly all the parameters come from doing a jndi lookup on this bean's env-entry. the env-entry values are set via ant/xdoclet to contain the values needed for a particular environment. it passes in the jndi name for the bean it wants and the Home class that'll return that bean.
with intravm, is a remote lookup like this possible? and if so, is there a way to configure openejb so that i can say, "hey container, i know these here beans are going to declare some garbage in their env-entries, but i'd like you to use _THIS_ value instead." ? so that i can force a url/context factory the service locator will use.
