The general scenario looks a little something like the following image below:

import javax.ejb.Stateless;
@Stateless
public class SampleBean implements SampleBeanLocal {
public SampleBean() {}
public String echo(String s) {
return s;
}
}
with a simple local interface...
import javax.ejb.Local;
@Local
public interface SampleBeanLocal {
public String echo (String s);
}
it becomes easy to then inject a reference into a JAX-WS bean in order to get this to work... The code is also pretty trivial...
import javax.ejb.EJB;
import sample.ejb.SampleBeanLocal;
@javax.jws.WebService
public class SampleService{
@EJB(mappedName = "sample.ejb.SampleBeanLocal")
private SampleBeanLocal sample;
public String echo(String arg0) {
return sample.echo(arg0);
}
}
and that's about it. This is supported in IBM WebSphere Application Server v7.0. Let us know if you have any questions.