1 Reply Latest reply on Jun 2, 2003 2:37 AM by xuyongshuo

    Deploy Problem

    dbcjboss

      I installed JBoss3.2.1, along with the J2sdk1.4.1
      When executing from line of commando: run.bat
      I Obtain: Server JBoss Start
      In order to verify if the JBoss this running.
      I use: http://localhost:8080 , ok
      http://localhost:8080/jmx-console, ok
      But when trying to run from line of commando: deployer.bat
      I Obtain the following error:
      "Exception in tread "main" java.lang.NoClassDefFoundError: org/jboss/jmx/service/RemoteDeployer"
      My variables of envairoment are:
      set JAVA_HOME=C:\j2sdk1.4.1_01
      set J2EE_HOME=C:\j2sdkee1.3.1
      set ANT_HOME=C:\ant\apache-ant-1.5.3
      set JBOSS_HOME=C:\JBOSS\jboss-3.2.1_tomcat-4.1.24
      set JBOSS_CLASSPATH=%JBOSS_HOME%\lib;%JBOSS_HOME%\client;

      set Path=%JAVA_HOME%\bin;%ANT_HOME%\bin;%JAVA_HOME%\lib\Tools.jar;%J2EE_HOME%\bin;\%JBOSS_HOME%\lib\xercesImpl.jar;

      Somebody can help me?

        • 1. Re: Deploy Problem
          xuyongshuo

          I met this problem too.
          I look the deployer.bat, and I found this bat does't set JBOSS_CLASSPATH, so I copy set JBOSS_CLASSPATH=%JBOSS_CLASSPATH%;%JAVAC_JAR%;%RUNJAR% from run.bat, then the deployer.bat can run, but I don't know whether this is correct