0 Replies Latest reply on Feb 10, 2003 8:10 PM by nimrod

    how to access the user service?

    nimrod

      i use jboss3.04 integrated tomcat4.12

      I configured the user-service.xml like this:

      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE server>




      and the Jboss startup correctly.

      i write a JSP like this to access the QuartzService:


      ....

      Context context = new InitialContext();
      Object obj = context.lookup("QuartzService");

      .....

      when i access the JSP in browser, the exception show me "javax.naming.NameNotFoundException: QuartzService not bound"

      but i use this url:http://localhost/jmx-console/index.jsp,can see that:user
      service=QuartzService,name=QuartzService

      so why?