[jboss-user] [Beginners Corner] - Is there An Easy Way to Generate Jboss.xml and Jboss-client.

2006-08-28 Thread a.rubalcaba
Is there an easy way to generate the jboss.xml file and a Jboss-client.xml file? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3966872#3966872 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3966872

[jboss-user] [Beginners Corner] - Re: ejb not bound?

2006-08-26 Thread a.rubalcaba
I know I had the similar problem and I ended up going with the following piece of code and it worked for me. Context ctx = new InitialContext(); Object o = ctx.lookup(java:comp/env/HelloWorld); View the original post :

[jboss-user] [Beginners Corner] - Re: Is there An Easy Way to Generate Jboss.xml and Jboss-cli

2006-08-25 Thread a.rubalcaba
kaobe wrote : Hi, | | you could begin with downloading the JBossIDE for Eclipse or Eclipse with WTP. Both make the work with XDoclet possible and quite easy. I have not worked with XDoclet for a while, but for little examples it is working fine. The wizards of both systems and the

[jboss-user] [Beginners Corner] - Re: Is there An Easy Way to Generate Jboss.xml and Jboss-cli

2006-08-24 Thread a.rubalcaba
kaobe wrote : Yes. | Perhaps you could give us a bit more detail information of what you are trying to do. Do you want to generate the deployment descriptors for J2EE applications? If yes, you could try XDoclet (http://sourceforge.net/projects/xdoclet/). That generates these files from

[jboss-user] [JBoss Getting Started Documentation] - Re: more simple jsp web app deployment needed

2006-08-23 Thread a.rubalcaba
bmdefnall wrote : nevermind, i got it Could you please post the link or point us in the direction that you found the info that you were looking for? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3967101#3967101 Reply to the post :

[jboss-user] [JBoss Getting Started Documentation] - Re: How do you run app in a Ear file that has a application-

2006-08-22 Thread a.rubalcaba
Is there a way to call an EJB from a Standalone Java Application from within Eclipse? Say I have a HelloWord Bean that outputs a simple Say Hello World Message. Is there a way to create a Java Client Application and test it from within Eclipse as a Standalone Java App that calls that Beans?