Hey Ivan, if you had time to update this page with the working
solution, that would be great: http://cwiki.apache.org/GMOxDEV/client-jndi-names.html
On Jun 3, 2009, at 12:24 AM, Ivan wrote:
OK, try this:
set GERONIMO_OPTS="-Dopenejb.jndiname.format={ejbName}/
{interfaceClass}
geronimo.bat start
2009/6/3 Rodger <[email protected]>
I tried it.But the default format--{ejbName}
{interfaceType.annotationName}
still works,the format doesn't change to {ejbName}/{interfaceClass}.
That is
initialContext.lookup("CalculatorRemote"); works
but initialContext.lookup("Calculator/
org.apache.geronimo.samples.slsb.calculator.CalculatorRemote");
failed.
There are my ejb part:
@Remote
interface CalculatorRemote
@Stateless
class Calculator implements CalculatorRemote
--
Ivan