Skip to main content



      Home
Home » Language IDEs » C / C++ IDE (CDT) » [ANN] JBoss plug-in for Eclipse now available
[ANN] JBoss plug-in for Eclipse now available [message #18808] Mon, 18 February 2002 11:00 Go to next message
Eclipse UserFriend
February 18, 2002

EASIE(tm) JBoss 2.4.4/3.0Alpha Plugin (Early Access 1)

Genuitec announces the Early Access 1 release of the EASIE JBoss Plugin.
This plugin is one of a series of application and web server plugins
for the Eclipse 2.0 IDE. EASIE JBoss Plugin extends the Eclipse IDE to
include user controls for managing a JBoss 2.4.4/3.0Alpha instance from
within Eclipse runtime and debug contexts. The plug-in is built on top of
Genuitec's Eclipse Application Server Integration Environment, (EASIE), a
framework for interfacing Eclipse with Java/J2EE application servers.

Early Access Features:
1) Easy plugin configuration
2) Start JBoss Server in Eclipse debug context
3) Graceful shutdown of JBoss Server
4) Monitor JBoss output from Eclipse console
5) Fix-and-Go debugging of EJBs, Servlets, and Controller logic using JDK
1.4 HotSwap feature
6) How-To documentation

Features remaining in development for 1.0 Release:
1) Auto deployment of EJBs and Web Applications
2) Tutorial and Examples

EASIE JBoss Plugin is free for personal and commercial use. Visit
http://www.genuitec.com/products.htm for download instructions.

EASIE Weblogic Plugin version 1.0ea3 is also available immediately.
EASIE Webspere Plugin version 1.0ea1 is scheduled for release on Friday,
2/22/2002.
Other EASIE plugins soon to be released include Orion/Oracle 9i.

Genuitec, L.L.C.
http://www.genuitec.com
Re: [ANN] JBoss plug-in for Eclipse now available [message #18831 is a reply to message #18808] Mon, 18 February 2002 11:37 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: jthompson.allezconsulting.com

I have been able to get the plug-in to work properly. However, I am unable
to use the Fix-and-Go feature, I had this problem when I was working with
JBoss externally too. I have and EAR being deployed, I have break points
set and I can reach them and debug, howerver when I update the code, I get
an error, saying it was unable to update the code and that it is out of
sync.

Any help on what I am doing wrong would be greatly appreciated.

Thanks,
Jake T.

"Todd Williams" <todd@genuitec.com> wrote in message
news:a4r859$f33$1@rogue.oti.com...
> February 18, 2002
>
> EASIE(tm) JBoss 2.4.4/3.0Alpha Plugin (Early Access 1)
>
> Genuitec announces the Early Access 1 release of the EASIE JBoss Plugin.
> This plugin is one of a series of application and web server plugins
> for the Eclipse 2.0 IDE. EASIE JBoss Plugin extends the Eclipse IDE to
> include user controls for managing a JBoss 2.4.4/3.0Alpha instance from
> within Eclipse runtime and debug contexts. The plug-in is built on top of
> Genuitec's Eclipse Application Server Integration Environment, (EASIE), a
> framework for interfacing Eclipse with Java/J2EE application servers.
>
> Early Access Features:
> 1) Easy plugin configuration
> 2) Start JBoss Server in Eclipse debug context
> 3) Graceful shutdown of JBoss Server
> 4) Monitor JBoss output from Eclipse console
> 5) Fix-and-Go debugging of EJBs, Servlets, and Controller logic using
JDK
> 1.4 HotSwap feature
> 6) How-To documentation
>
> Features remaining in development for 1.0 Release:
> 1) Auto deployment of EJBs and Web Applications
> 2) Tutorial and Examples
>
> EASIE JBoss Plugin is free for personal and commercial use. Visit
> http://www.genuitec.com/products.htm for download instructions.
>
> EASIE Weblogic Plugin version 1.0ea3 is also available immediately.
> EASIE Webspere Plugin version 1.0ea1 is scheduled for release on Friday,
> 2/22/2002.
> Other EASIE plugins soon to be released include Orion/Oracle 9i.
>
> Genuitec, L.L.C.
> http://www.genuitec.com
>
>
>
>
>
Re: [ANN] JBoss plug-in for Eclipse now available [message #18854 is a reply to message #18831] Mon, 18 February 2002 11:58 Go to previous messageGo to next message
Eclipse UserFriend
Hello Jack,

you it is not a good idea to put all your class files within the ear-file.
you only should your deployment-descriptors to the deploy-directory of
jboss.

further you have to add a ClassPathExtension in your
conf/<configuration_name>/jboss.conf file which is linked to your output
directory of your project in Eclipse.
If you have done it, everything works fine. By this ClassPathExtension your
are able to debug self-written MBeans and you EJBs and also all the classes
needed.

If you have any question to do it that way, let me know about that newsgroup
here.

so long..


Daniel
Re: [ANN] JBoss plug-in for Eclipse now available [message #18877 is a reply to message #18854] Mon, 18 February 2002 12:05 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: jthompson.allezconsulting.com

Could you give me an example of what I need to setup in the jboss.conf?
Not too sure what to set there.

Thanks,
Jake T.


"Daniel Schaller" <daniel.mobil@gmx.net> wrote in message
news:a4rb97$glj$1@rogue.oti.com...
> Hello Jack,
>
> you it is not a good idea to put all your class files within the ear-file.
> you only should your deployment-descriptors to the deploy-directory of
> jboss.
>
> further you have to add a ClassPathExtension in your
> conf/<configuration_name>/jboss.conf file which is linked to your output
> directory of your project in Eclipse.
> If you have done it, everything works fine. By this ClassPathExtension
your
> are able to debug self-written MBeans and you EJBs and also all the
classes
> needed.
>
> If you have any question to do it that way, let me know about that
newsgroup
> here.
>
> so long..
>
>
> Daniel
>
>
Re: [ANN] JBoss plug-in for Eclipse now available [message #18920 is a reply to message #18877] Mon, 18 February 2002 12:17 Go to previous messageGo to next message
Eclipse UserFriend
Hello Jack,

if you have the following directory-strukture (e.g.)

/
|---> JBoss-Tomcat
|----jboss
|----conf
|----tomcat
|-----jboss.conf
|----deploy
|---META-INF

|--->workspace
|----myProject
|----bin

with bin := the folder, where your class files are located

you can add the following in your jboss.conf:

<MLET CODE = "org.jboss.util.ClassPathExtension" ARCHIVE="jboss.jar"
CODEBASE="../../lib/ext/">
<ARG TYPE="java.lang.String"
VALUE="../../../../workspace/myProject/bin/">
</MLET>

In your deploy/META-INF directory you put your jboss.xml, ejb-jar.xml and
your jaws.xml. Do not put any jar or ear file in your deploy directory

I hope, that will help you

Daniel
Re: [ANN] JBoss plug-in for Eclipse now available [message #18942 is a reply to message #18831] Mon, 18 February 2002 13:52 Go to previous messageGo to next message
Eclipse UserFriend
Jake,

I'm not familiar with the problem you're reporting. As a place to start, we
published an EJB debugging tutorial at the website
(http://www.genuitec.com/products.htm) recently that you might want to take
a look at. Although the tutorial was written using the Weblogic plug-in,
the same set of steps and results have been tested with the JBoss plug-in
also. If you'd like to go through the tutorial with the JBoss plug-in, drop
an email to easie@genuitec.com , reference this posting, and request a
modified client and build script for JBoss to make life a little easier.

Before doing even that though, I would check is that my software environment
(Eclipse 2.0 build, JDK 1.4 version) are the same or later than as those
listed in the tutorial.

Regards,
Todd


"Jake Thompson" <jthompson@allezconsulting.com> wrote in message
news:a4raaa$g5p$1@rogue.oti.com...
> I have been able to get the plug-in to work properly. However, I am
unable
> to use the Fix-and-Go feature, I had this problem when I was working with
> JBoss externally too. I have and EAR being deployed, I have break points
> set and I can reach them and debug, howerver when I update the code, I get
> an error, saying it was unable to update the code and that it is out of
> sync.
>
> Any help on what I am doing wrong would be greatly appreciated.
>
> Thanks,
> Jake T.
>
> "Todd Williams" <todd@genuitec.com> wrote in message
> news:a4r859$f33$1@rogue.oti.com...
> > February 18, 2002
> >
> > EASIE(tm) JBoss 2.4.4/3.0Alpha Plugin (Early Access 1)
> >
> > Genuitec announces the Early Access 1 release of the EASIE JBoss Plugin.
> > This plugin is one of a series of application and web server plugins
> > for the Eclipse 2.0 IDE. EASIE JBoss Plugin extends the Eclipse IDE to
> > include user controls for managing a JBoss 2.4.4/3.0Alpha instance from
> > within Eclipse runtime and debug contexts. The plug-in is built on top
of
> > Genuitec's Eclipse Application Server Integration Environment, (EASIE),
a
> > framework for interfacing Eclipse with Java/J2EE application servers.
> >
> > Early Access Features:
> > 1) Easy plugin configuration
> > 2) Start JBoss Server in Eclipse debug context
> > 3) Graceful shutdown of JBoss Server
> > 4) Monitor JBoss output from Eclipse console
> > 5) Fix-and-Go debugging of EJBs, Servlets, and Controller logic using
> JDK
> > 1.4 HotSwap feature
> > 6) How-To documentation
> >
> > Features remaining in development for 1.0 Release:
> > 1) Auto deployment of EJBs and Web Applications
> > 2) Tutorial and Examples
> >
> > EASIE JBoss Plugin is free for personal and commercial use. Visit
> > http://www.genuitec.com/products.htm for download instructions.
> >
> > EASIE Weblogic Plugin version 1.0ea3 is also available immediately.
> > EASIE Webspere Plugin version 1.0ea1 is scheduled for release on Friday,
> > 2/22/2002.
> > Other EASIE plugins soon to be released include Orion/Oracle 9i.
> >
> > Genuitec, L.L.C.
> > http://www.genuitec.com
> >
> >
> >
> >
> >
>
>
Re: [ANN] JBoss plug-in for Eclipse now available [message #18964 is a reply to message #18942] Mon, 18 February 2002 13:56 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: jthompson.allezconsulting.com

I think my proble, is that I am used to the "production" deployment of a
single ear, that contains everything, from the feedback I have gotten, I
cannot update this way, so instead I need to configure jboss to use the
eclipse build directory for the class files.


Thanks,
Jake T.


"Todd Williams" <todd@genuitec.com> wrote in message
news:a4ri6i$jjv$1@rogue.oti.com...
> Jake,
>
> I'm not familiar with the problem you're reporting. As a place to start,
we
> published an EJB debugging tutorial at the website
> (http://www.genuitec.com/products.htm) recently that you might want to
take
> a look at. Although the tutorial was written using the Weblogic plug-in,
> the same set of steps and results have been tested with the JBoss plug-in
> also. If you'd like to go through the tutorial with the JBoss plug-in,
drop
> an email to easie@genuitec.com , reference this posting, and request a
> modified client and build script for JBoss to make life a little easier.
>
> Before doing even that though, I would check is that my software
environment
> (Eclipse 2.0 build, JDK 1.4 version) are the same or later than as those
> listed in the tutorial.
>
> Regards,
> Todd
>
>
> "Jake Thompson" <jthompson@allezconsulting.com> wrote in message
> news:a4raaa$g5p$1@rogue.oti.com...
> > I have been able to get the plug-in to work properly. However, I am
> unable
> > to use the Fix-and-Go feature, I had this problem when I was working
with
> > JBoss externally too. I have and EAR being deployed, I have break
points
> > set and I can reach them and debug, howerver when I update the code, I
get
> > an error, saying it was unable to update the code and that it is out of
> > sync.
> >
> > Any help on what I am doing wrong would be greatly appreciated.
> >
> > Thanks,
> > Jake T.
> >
> > "Todd Williams" <todd@genuitec.com> wrote in message
> > news:a4r859$f33$1@rogue.oti.com...
> > > February 18, 2002
> > >
> > > EASIE(tm) JBoss 2.4.4/3.0Alpha Plugin (Early Access 1)
> > >
> > > Genuitec announces the Early Access 1 release of the EASIE JBoss
Plugin.
> > > This plugin is one of a series of application and web server plugins
> > > for the Eclipse 2.0 IDE. EASIE JBoss Plugin extends the Eclipse IDE to
> > > include user controls for managing a JBoss 2.4.4/3.0Alpha instance
from
> > > within Eclipse runtime and debug contexts. The plug-in is built on top
> of
> > > Genuitec's Eclipse Application Server Integration Environment,
(EASIE),
> a
> > > framework for interfacing Eclipse with Java/J2EE application servers.
> > >
> > > Early Access Features:
> > > 1) Easy plugin configuration
> > > 2) Start JBoss Server in Eclipse debug context
> > > 3) Graceful shutdown of JBoss Server
> > > 4) Monitor JBoss output from Eclipse console
> > > 5) Fix-and-Go debugging of EJBs, Servlets, and Controller logic
using
> > JDK
> > > 1.4 HotSwap feature
> > > 6) How-To documentation
> > >
> > > Features remaining in development for 1.0 Release:
> > > 1) Auto deployment of EJBs and Web Applications
> > > 2) Tutorial and Examples
> > >
> > > EASIE JBoss Plugin is free for personal and commercial use. Visit
> > > http://www.genuitec.com/products.htm for download instructions.
> > >
> > > EASIE Weblogic Plugin version 1.0ea3 is also available immediately.
> > > EASIE Webspere Plugin version 1.0ea1 is scheduled for release on
Friday,
> > > 2/22/2002.
> > > Other EASIE plugins soon to be released include Orion/Oracle 9i.
> > >
> > > Genuitec, L.L.C.
> > > http://www.genuitec.com
> > >
> > >
> > >
> > >
> > >
> >
> >
>
>
Re: [ANN] JBoss plug-in for Eclipse now available [message #18986 is a reply to message #18942] Mon, 18 February 2002 16:37 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: jthompson.allezconsulting.com

Ok, solution:
Make sure that if you are using ant, you are putting the eclipse compiled
class files into the jar's and not a ant/javac set of class files.

Thanks all,
Jake T.
"Todd Williams" <todd@genuitec.com> wrote in message
news:a4ri6i$jjv$1@rogue.oti.com...
> Jake,
>
> I'm not familiar with the problem you're reporting. As a place to start,
we
> published an EJB debugging tutorial at the website
> (http://www.genuitec.com/products.htm) recently that you might want to
take
> a look at. Although the tutorial was written using the Weblogic plug-in,
> the same set of steps and results have been tested with the JBoss plug-in
> also. If you'd like to go through the tutorial with the JBoss plug-in,
drop
> an email to easie@genuitec.com , reference this posting, and request a
> modified client and build script for JBoss to make life a little easier.
>
> Before doing even that though, I would check is that my software
environment
> (Eclipse 2.0 build, JDK 1.4 version) are the same or later than as those
> listed in the tutorial.
>
> Regards,
> Todd
>
>
> "Jake Thompson" <jthompson@allezconsulting.com> wrote in message
> news:a4raaa$g5p$1@rogue.oti.com...
> > I have been able to get the plug-in to work properly. However, I am
> unable
> > to use the Fix-and-Go feature, I had this problem when I was working
with
> > JBoss externally too. I have and EAR being deployed, I have break
points
> > set and I can reach them and debug, howerver when I update the code, I
get
> > an error, saying it was unable to update the code and that it is out of
> > sync.
> >
> > Any help on what I am doing wrong would be greatly appreciated.
> >
> > Thanks,
> > Jake T.
> >
> > "Todd Williams" <todd@genuitec.com> wrote in message
> > news:a4r859$f33$1@rogue.oti.com...
> > > February 18, 2002
> > >
> > > EASIE(tm) JBoss 2.4.4/3.0Alpha Plugin (Early Access 1)
> > >
> > > Genuitec announces the Early Access 1 release of the EASIE JBoss
Plugin.
> > > This plugin is one of a series of application and web server plugins
> > > for the Eclipse 2.0 IDE. EASIE JBoss Plugin extends the Eclipse IDE to
> > > include user controls for managing a JBoss 2.4.4/3.0Alpha instance
from
> > > within Eclipse runtime and debug contexts. The plug-in is built on top
> of
> > > Genuitec's Eclipse Application Server Integration Environment,
(EASIE),
> a
> > > framework for interfacing Eclipse with Java/J2EE application servers.
> > >
> > > Early Access Features:
> > > 1) Easy plugin configuration
> > > 2) Start JBoss Server in Eclipse debug context
> > > 3) Graceful shutdown of JBoss Server
> > > 4) Monitor JBoss output from Eclipse console
> > > 5) Fix-and-Go debugging of EJBs, Servlets, and Controller logic
using
> > JDK
> > > 1.4 HotSwap feature
> > > 6) How-To documentation
> > >
> > > Features remaining in development for 1.0 Release:
> > > 1) Auto deployment of EJBs and Web Applications
> > > 2) Tutorial and Examples
> > >
> > > EASIE JBoss Plugin is free for personal and commercial use. Visit
> > > http://www.genuitec.com/products.htm for download instructions.
> > >
> > > EASIE Weblogic Plugin version 1.0ea3 is also available immediately.
> > > EASIE Webspere Plugin version 1.0ea1 is scheduled for release on
Friday,
> > > 2/22/2002.
> > > Other EASIE plugins soon to be released include Orion/Oracle 9i.
> > >
> > > Genuitec, L.L.C.
> > > http://www.genuitec.com
> > >
> > >
> > >
> > >
> > >
> >
> >
>
>
Re: [ANN] JBoss plug-in for Eclipse now available [message #19631 is a reply to message #18808] Wed, 20 February 2002 13:36 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: nguinto.mincron.com

I liked to know how can I add dirs/jars on the startup classpath? The
reason I asked is we are using JBoss together with Cocoon. Appreciate any
help.

"Todd Williams" <todd@genuitec.com> wrote in message
news:a4r859$f33$1@rogue.oti.com...
> February 18, 2002
>
> EASIE(tm) JBoss 2.4.4/3.0Alpha Plugin (Early Access 1)
>
> Genuitec announces the Early Access 1 release of the EASIE JBoss Plugin.
> This plugin is one of a series of application and web server plugins
> for the Eclipse 2.0 IDE. EASIE JBoss Plugin extends the Eclipse IDE to
> include user controls for managing a JBoss 2.4.4/3.0Alpha instance from
> within Eclipse runtime and debug contexts. The plug-in is built on top of
> Genuitec's Eclipse Application Server Integration Environment, (EASIE), a
> framework for interfacing Eclipse with Java/J2EE application servers.
>
> Early Access Features:
> 1) Easy plugin configuration
> 2) Start JBoss Server in Eclipse debug context
> 3) Graceful shutdown of JBoss Server
> 4) Monitor JBoss output from Eclipse console
> 5) Fix-and-Go debugging of EJBs, Servlets, and Controller logic using
JDK
> 1.4 HotSwap feature
> 6) How-To documentation
>
> Features remaining in development for 1.0 Release:
> 1) Auto deployment of EJBs and Web Applications
> 2) Tutorial and Examples
>
> EASIE JBoss Plugin is free for personal and commercial use. Visit
> http://www.genuitec.com/products.htm for download instructions.
>
> EASIE Weblogic Plugin version 1.0ea3 is also available immediately.
> EASIE Webspere Plugin version 1.0ea1 is scheduled for release on Friday,
> 2/22/2002.
> Other EASIE plugins soon to be released include Orion/Oracle 9i.
>
> Genuitec, L.L.C.
> http://www.genuitec.com
>
>
>
>
>
Re: [ANN] JBoss plug-in for Eclipse now available [message #19676 is a reply to message #19631] Wed, 20 February 2002 17:21 Go to previous message
Eclipse UserFriend
Neil,

JBoss has a very nice classpath extension mechanism that is configurable in
the
jboss.conf file. Have a look at the one in the 'catalina' directory and
compare
it to the one in the 'default' directory. You'll need to add Cocoon's jars
the
same way the catalina configuration adds Tomcat's jars.

Hope that helps,
Todd


"Neil Guinto" <nguinto@mincron.com> wrote in message
news:a50pul$o0n$1@rogue.oti.com...
> I liked to know how can I add dirs/jars on the startup classpath? The
> reason I asked is we are using JBoss together with Cocoon. Appreciate any
> help.
>
> "Todd Williams" <todd@genuitec.com> wrote in message
> news:a4r859$f33$1@rogue.oti.com...
> > February 18, 2002
> >
> > EASIE(tm) JBoss 2.4.4/3.0Alpha Plugin (Early Access 1)
> >
> > Genuitec announces the Early Access 1 release of the EASIE JBoss Plugin.
> > This plugin is one of a series of application and web server plugins
> > for the Eclipse 2.0 IDE. EASIE JBoss Plugin extends the Eclipse IDE to
> > include user controls for managing a JBoss 2.4.4/3.0Alpha instance from
> > within Eclipse runtime and debug contexts. The plug-in is built on top
of
> > Genuitec's Eclipse Application Server Integration Environment, (EASIE),
a
> > framework for interfacing Eclipse with Java/J2EE application servers.
> >
> > Early Access Features:
> > 1) Easy plugin configuration
> > 2) Start JBoss Server in Eclipse debug context
> > 3) Graceful shutdown of JBoss Server
> > 4) Monitor JBoss output from Eclipse console
> > 5) Fix-and-Go debugging of EJBs, Servlets, and Controller logic using
> JDK
> > 1.4 HotSwap feature
> > 6) How-To documentation
> >
> > Features remaining in development for 1.0 Release:
> > 1) Auto deployment of EJBs and Web Applications
> > 2) Tutorial and Examples
> >
> > EASIE JBoss Plugin is free for personal and commercial use. Visit
> > http://www.genuitec.com/products.htm for download instructions.
> >
> > EASIE Weblogic Plugin version 1.0ea3 is also available immediately.
> > EASIE Webspere Plugin version 1.0ea1 is scheduled for release on Friday,
> > 2/22/2002.
> > Other EASIE plugins soon to be released include Orion/Oracle 9i.
> >
> > Genuitec, L.L.C.
> > http://www.genuitec.com
> >
> >
> >
> >
> >
>
>
Previous Topic:LPEX indentation
Next Topic:Code completion
Goto Forum:
  


Current Time: Thu May 29 02:11:49 EDT 2025

Powered by FUDForum. Page generated in 0.24665 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top