• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

ejb on weblogic

 
Ranch Hand
Posts: 452
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello Friends,
I am trying to work on EJBs and i am using weblogic 6.0
I have created my bean and deployed it on the server using command line
weblogic.deploy deploy password HelloWorld c:\helloWorld.jar
When i start my server, the server also creates 10 instances of my bean (I have mentioned this in deplyment decripter)
But my problem is my client is not able to locate the bean, the error which comes is
javax.naming.NameNotFoundException: Unable to resolve HelloWorld. Resolved: '' Unresolved:'HelloWorld' ; remaining name ''
i dont know why it is not working, when i start weblogic console, the name of my bean there is HelloWorld, then why it can not resolve the name HelloWorld.
I am attaching code of my java client

import javax.ejb.*;
import javax.naming.*;
import java.rmi.*;
import java.util.Properties;
import helloWorld.*;
public class HelloClient4
{
public static void main(String[] args)
{
try
{
Properties props = new Properties();
props.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.TengahInitialContextFactory");
props.put(Context.PROVIDER_URL,"t3://localhost:7001");
Context ctx = new InitialContext(props);
HelloHome home = (HelloHome) ctx.lookup("HelloWorld");
Hello hello = home.create();
System.out.println(hello.hello());
hello.remove();
}
catch(Exception e)
{
System.out.println(e);
}
}
}
 
Ranch Hand
Posts: 2713
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What is the JNDI name you set in your weblogic-ejb-jar.xml deployment descriptor? Is this the name you are performing the lookup on?
BTW, this type of question should be posted in the WebLogic forum, you would probably get a better response. Could a moderator move this?
 
Prakash Dwivedi
Ranch Hand
Posts: 452
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you for your response, it is working now, the name specified in ejb-jar.xml was different.
Actually i was confused, i was in the impression that the name specified at weblogic.deploy is the jndi name.
thanks again

saddysan
 
"To do good, you actually have to do something." -- Yvon Chouinard
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic