[JBoss-user] ant deploy task

2002-11-04 Thread Michael Bartmann
Hi everybody, I remember having heard of an ant task which talks directly to the jboss deployer mbean, so you can get along w/o filesystem copies. Or does it only provide an url to the deployer?... Can anybody provide me whith a hint where to look for the thing? Regards, Michael Bartmann

Re: [JBoss-user] ant deploy task

2002-11-04 Thread David Jencks
varia/output/lib/jbossjmx-ant.jar There are slight instructions in the package docs for it, I think I wrote more instructions in the patch notice. You can do arbitrary (serializable) mbean operations with it. As with all deployment, it works by sending a url to the deployer. The deployer

RE: [JBoss-user] Ant JBoss NT service

2002-08-19 Thread Kim, Yong
JNT -Original Message- From: Guy Rouillier [mailto:[EMAIL PROTECTED]] Sent: Sunday, August 18, 2002 1:51 AM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Ant JBoss NT service What are you using to run JBoss as a service? javants from the contrib directory? - Original Message

Re: [JBoss-user] Ant JBoss NT service

2002-08-18 Thread Stephen Davidson
Hi Yong. Try something along the lines of exec executable=service os=Windows and set the command line parameters to have the service name and start or stop, depending on what you are trying to do. I apologize, but I do not remember the exact syntax of the M$ service command, but a little

RE: [JBoss-user] Ant 1.5 - ServerDeploy

2002-05-30 Thread Jim Birchfield
To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Ant 1.5 - ServerDeploy Hmm, I left out some useful details. There's a jmx -rmi-connector or adapter that provides a remote representation of the mbean server. The testsuite uses it to deploy everything in the tests. Basically what you'd need to do is take

[JBoss-user] Ant 1.5 - ServerDeploy

2002-05-29 Thread Dave Smith
I see that in ant 1.5 they have a ServerDeploy task. Has anyone looked at it or added a jboss function? ___ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25-28 in Las Vegas --

Re: [JBoss-user] Ant 1.5 - ServerDeploy

2002-05-29 Thread David Jencks
I looked at it and started implementing, however I didn't see a way to do it without including many jboss and/or jmx classes in ant, which I don't think they'd go for. The task has a rather questionable design, it is based on the assumption that you want to deploy to many app servers at once in

Re: [JBoss-user] Ant 1.5 - ServerDeploy

2002-05-29 Thread Dave Smith
Does the jboss mbean server have an socket connection for querying and executing mbeans or would you need an Ant mbean in jboss which acted as a proxy between the external ant task and jboss. What would be better is if we add an ant service running in jboss and a lightweight external client

Re: [JBoss-user] Ant 1.5 - ServerDeploy

2002-05-29 Thread David Jencks
Hmm, I left out some useful details. There's a jmx -rmi-connector or adapter that provides a remote representation of the mbean server. The testsuite uses it to deploy everything in the tests. Basically what you'd need to do is take testsuite/.../test/JBossTestServices.java and rewrite it into

[JBoss-user] ANT

2001-07-02 Thread Devraj Mukherjee
Can someone who has used EJBDoclet send me their build.xml file? Devraj ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

RE: [JBoss-user] ant tutorial for jboss

2001-06-29 Thread Ryan Wu
Looking at the ant/docs, you will find your answer. It is not that tough. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of marc fleury Sent: Tuesday, June 26, 2001 3:09 AM To: [EMAIL PROTECTED] Subject: RE: [JBoss-user] ant tutorial for jboss |Can

RE: [JBoss-user] ant tutorial for jboss

2001-06-26 Thread marc fleury
|Can someone please tell me where the best resoucres are for using ant |with jboss. wow that's a tough one... marcf ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] ant tutorial for jboss

2001-06-26 Thread Nicolai P Guba
AS == Antony Stace [EMAIL PROTECTED] writes: AS Hi Folks Can someone please tell me where the best resoucres are AS for using ant with jboss. cvs -d :pserver:[EMAIL PROTECTED]:/cvsroot/jboss login cvs -d :pserver:[EMAIL PROTECTED]:/cvsroot/jboss co jbosstest/src/build Should do the trick.

[JBoss-user] ant tutorial for jboss

2001-06-25 Thread Antony Stace
Hi Folks Can someone please tell me where the best resoucres are for using ant with jboss. Cheers Tony ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] Ant

2001-06-24 Thread Ivan Novick
you dont need custom tasks, just use jar and war and move and copy and mkdir etc. Ivan - Original Message - From: Hunter Hillegas [EMAIL PROTECTED] To: JBoss 2 [EMAIL PROTECTED] Sent: Sunday, June 24, 2001 3:37 PM Subject: [JBoss-user] Ant I've been using Ant with my JSP+Servlet

[JBoss-user] Ant

2001-06-24 Thread Hunter Hillegas
I've been using Ant with my JSP+Servlet projects and I'm trying to transition it to my work with EJBs. The only EJB related tasks seem to be associated with WebLogic... Is anyone using Ant with JBoss to build the beans, package a WAR, create an EAR? Hunter