[EJB 3.0] - Re: Ejb3 - MDB
by rudreshtcs
Hi,
I have checked it is not part of the EJB jar but was present in the server/all/deploy (i have configured for "all')
I have tried adding it to the jar also, but the errors are same.
Thanks
Following the build file that i am using
*******************************************************
<!-- Build classpath -->
<!-- So that we can get jndi.properties for InitialContext -->
<!-- Only the jbossall-client.jar should ideally be sufficient -->
<!-- =================================================================== -->
<!-- Prepares the build directory -->
<!-- =================================================================== -->
<!-- =================================================================== -->
<!-- Compiles the source code -->
<!-- =================================================================== -->
<!-- =================================================================== -->
<!-- Cleans up generated stuff -->
<!-- =================================================================== -->
*******************************************
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4205320#4205320
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4205320
17 years, 2 months
[Installation, Configuration & DEPLOYMENT] - Re: Jboss install on Solaris
by PeterJ
The install instructions are the same as for any other system:
1) Set the JAVA_HOME env var to where your JDK is installed.
2) Download the JBoss AS binary. Make sure you get the binary zip file that matches your JDK - get the binary with jdk6 in the name if you are running JDK 6, get the other one if you are running JDK 5.
3) Unzip the zip file anywhere you want and make sure that the account that will run the app server has full control over the files and directories.
4) Go into the bin directory and run: chmod a+x *.sh
That's it for installation. To try it out:
5) Go into the bin directory and run: ./run.sh
6) Wait until you see a message similar to:
11:20:43,812 INFO [ServerImpl] JBoss ... Started in 29s:663ms
7) Open a browser, enter the url: http://localhost:8080. You should then see the home page.
For deploying an EAR, simply copy it to the server/default/deploy directory. For more information, read the docs.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4205309#4205309
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4205309
17 years, 2 months