5 Replies Latest reply on Apr 4, 2002 4:22 PM by micahr

    c:\jdk1.3\jre\lib\ext

    burnsanthony

      I have a JAR file containing the files for an EJB I created unless I put it in

      c:\jdk1.3\jre\lib\ext

      I am unable to compile a servlet that refers to it

      however if I put it the I get a bunch of errors when I start up JBOSS

        • 1. Re: c:\jdk1.3\jre\lib\ext
          rgjawanda

          You should put your ejb.jar file in the jboss\deploy
          then you should also put your ejb.jar file in the
          tomcat\app\WEB-INF\lib directory so the servlet knows about it.

          You also need to post the errors so people can figure out without guessing. Scroll to the top and get the first exception that happens when jboss/tomcat startup. This is necessary to answer any questions.
          ?

          • 2. Re: c:\jdk1.3\jre\lib\ext
            micahr

            The problem that I found is that if the jar that is under jre/lib/ext contains the ejb-jar.xml file under the META-INF directory, then jboss will try to deploy from that directory. So, the sollution that I found was to make two jar files one with the META-INF directory for jboss's deploy and another jar file that doesn't have META-INF and put that under jre/lib/ext. If you do this jboss should be happy and you should be able to compile your servlets. The other sollution is to manually specify all of the jar files in the classpath when you are compiling servlets and don't have them under jre/lib/ext.

            Micah

            • 3. Re: c:\jdk1.3\jre\lib\ext
              user57

              Why are you (or anyone) putting application archives into the runtime library extention directory?

              --jason

              • 4. Re: c:\jdk1.3\jre\lib\ext
                burnsanthony

                Thanks micahr

                I am putting application archives into the runtime library extention directory so that JSP's can compile successfully

                • 5. Re: c:\jdk1.3\jre\lib\ext
                  micahr

                  The reason for doing this is so that the remote and home interfaces are defined for the servlet and jsp compilation Putting it under the runtime library extention directory is a whole lot easier than specifying a classpath to load all of the jar files. And in my case I have over 50 beans to deal with and it is just a headache to maintain the classpath.