Skip to main content



      Home
Home » Language IDEs » ServerTools (WTP) » Will WTP support JBoss 4 ?
Will WTP support JBoss 4 ? [message #77549] Sun, 27 February 2005 02:58 Go to next message
Eclipse UserFriend
Originally posted by: michael_furman.hotmail.com

Hi!
A short question: Will WTP support JBoss 4?
Best regards,
Michael
Re: Will WTP support JBoss 4 ? [message #85244 is a reply to message #77549] Sun, 20 March 2005 18:07 Go to previous messageGo to next message
Eclipse UserFriend
Hi Michael,

Currently we only have support for JBoss 3.2.3 (via the generic server
support). Although we have had some interest and participation directly from
JBoss, this has not yet ended up producing any code. Please let us know if
you are interested in getting involved.
Re: Will WTP support JBoss 4 ? [message #89779 is a reply to message #85244] Sat, 02 April 2005 22:53 Go to previous messageGo to next message
Eclipse UserFriend
I have created a JBoss 4.0.1 generic server configuration and tested it with
M3. Attached you will find the necessary three files: jboos401.server,
jboss401.xml and plugin.xml. They need to be placed in the
eclipse\plugins\org.eclipse.jst.server.generic.serverdefinit ions_1.0.0\serve
rs,
eclipse\plugins\org.eclipse.jst.server.generic.serverdefinit ions_1.0.0\build
files and
eclipse\plugins\org.eclipse.jst.server.generic.serverdefinit ions_1.0.0
respectively.

I also created bug 90100 and attached files.

"Tim deBoer" <deboer@ca.ibm.com> wrote in message
news:d1l4f5$dom$1@news.eclipse.org...
> Hi Michael,
>
> Currently we only have support for JBoss 3.2.3 (via the generic server
> support). Although we have had some interest and participation directly
from
> JBoss, this has not yet ended up producing any code. Please let us know if
> you are interested in getting involved.
>
>




  • Attachment: jboss401.xml
    (Size: 0.89KB, Downloaded 104 times)
  • Attachment: jboss401.server
    (Size: 3.99KB, Downloaded 381 times)
  • Attachment: plugin.xml
    (Size: 1.05KB, Downloaded 188 times)
Re: Will WTP support JBoss 4 ? [message #89794 is a reply to message #89779] Sun, 03 April 2005 04:36 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: gercan.REMOVEME.acm.org

Hi Christopher,

I have looked at your .server files. There are some minor things you
should look at for instance the line
<classpath id="jboss" isLibrary="true">
<archive path="C:/devl/jboss-4.0.1sp1/server/${serverConfig}/conf"/ >

directly refers to a directory where you should be using a property
instead.

Also you may want to alter your files so that they are compatible with
latest generic server. After the M3 release I have changed the generic
server a little. First, the way we define a server definition in
plugin.xml is changed. Also the .server files are .serverdef files now
since they were mixed with the server config files from the server
tooling core. And I did a few minor changes in the server definition
structure but they are really minor.

In the webtools server tooling we have a different approach than lomboz.
In lomboz we tried to host as much of the server definitions in lomboz
project. But in the webtools we provide only a few to be examples,
because a new server definition can be added and updated in its plugin
using the update manager. So we would like to encourage hosting server
definition update sites to server vendors and server experts. But In
this case we are considering changing the current server definition from
JBoss 3.2.3 to JBoss 4.

--
Gorkem Ercan

Christopher M. Judd wrote:
> I have created a JBoss 4.0.1 generic server configuration and tested it with
> M3. Attached you will find the necessary three files: jboos401.server,
> jboss401.xml and plugin.xml. They need to be placed in the
> eclipse\plugins\org.eclipse.jst.server.generic.serverdefinit ions_1.0.0\serve
> rs,
> eclipse\plugins\org.eclipse.jst.server.generic.serverdefinit ions_1.0.0\build
> files and
> eclipse\plugins\org.eclipse.jst.server.generic.serverdefinit ions_1.0.0
> respectively.
>
> I also created bug 90100 and attached files.
>
> "Tim deBoer" <deboer@ca.ibm.com> wrote in message
> news:d1l4f5$dom$1@news.eclipse.org...
>
>>Hi Michael,
>>
>>Currently we only have support for JBoss 3.2.3 (via the generic server
>>support). Although we have had some interest and participation directly
>
> from
>
>>JBoss, this has not yet ended up producing any code. Please let us know if
>>you are interested in getting involved.
>>
>>
>
>
>
> <project name="deployextension" default="deploy.j2ee.web" basedir=".">
> <target name="deploy.j2ee.web">
> <jar destfile="${module.name}.war">
> <zipfileset dir="${module.dir}">
> <include name="**/*.*"/>
> <exclude name="**/*.war"/>
> </zipfileset>
> </jar>
> <move file="${module.name}.war" todir="${server.publish.dir}"/>
> </target>
>
> <target name="deploy.j2ee.ejb">
> <jar destfile="${module.name}.jar">
> <zipfileset dir="${module.dir}">
> <include name="**/*.*"/>
> <exclude name="**/*.java"/>
> <exclude name="**/*.jar"/>
> </zipfileset>
> </jar>
> <move file="${module.name}.jar" todir="${server.publish.dir}"/>
> </target>
> <target name="undeploy.j2ee.web">
> <delete file="${server.publish.dir}/${module.name}.war"> </delete>
> </target>
> <target name="undeploy.j2ee.ejb">
> <delete file="${server.publish.dir}/${module.name}.jar"> </delete>
> </target>
> </project>
>
> <?xml version="1.0" encoding="UTF-8"?>
> <?eclipse version="3.0"?>
> <plugin
> id="org.eclipse.jst.server.generic.serverdefinitions"
> name="Serverdefinitions Plug-in"
> version="1.0.0"
> provider-name="Eclipse.org"
> class=" org.eclipse.jst.server.generic.serverdefinitions.Serverdefin itionsPlugin ">
>
> <runtime>
> <library name="serverdefinitions.jar">
> <export name="*"/>
> </library>
> </runtime>
>
> <requires>
> <import plugin="org.eclipse.core.runtime"/>
> <import plugin="org.eclipse.jst.server.generic.core"/>
> </requires>
>
> <extension point="org.eclipse.jst.server.generic.core.serverdefinition ">
> <serverdefinition id="Weblogic8.1" definitionfile="/servers/weblogic81.server">
> </serverdefinition>
> <serverdefinition id="JBoss 3.2.3" definitionfile="/servers/jboss323.server">
> </serverdefinition>
> <serverdefinition id="Jonas 4.1.4" definitionfile="/servers/jonas.server">
> </serverdefinition>
> <serverdefinition id="JBoss 4.0.1" definitionfile="/servers/jboss401.server">
> </serverdefinition>
> </extension>
> </plugin>
Re: Will WTP support JBoss 4 ? [message #90286 is a reply to message #89794] Mon, 04 April 2005 22:03 Go to previous messageGo to next message
Eclipse UserFriend
Gorkem,

Thanks for finding my bug. I have attached a new version using the property.

Also, thanks explaining the new direction. I needed support in M3 so it was
worth my effort and good for my understanding. Based on the questions in
this newsgroup, I think others needed it for M3 as well. If you would like
me to provide a JBoss 4.0.1 version for M4 let me know.

I like having each vendor provide their own update sites for all the
different extensions. Is the WTP website going to have a list of updates
sites from the different vendors? Will there be a roadmap of suggested
extensions that each of the vendors should provide? I think this would be
helpful for them and encourage them to provide a full and quality set of
plug-ins.

"Gorkem Ercan" <gercan@REMOVEME.acm.org> wrote in message
news:424FAB0E.9040406@REMOVEME.acm.org...
> Hi Christopher,
>
> I have looked at your .server files. There are some minor things you
> should look at for instance the line
> <classpath id="jboss" isLibrary="true">
> <archive path="C:/devl/jboss-4.0.1sp1/server/${serverConfig}/conf"/ >
>
> directly refers to a directory where you should be using a property
> instead.
>
> Also you may want to alter your files so that they are compatible with
> latest generic server. After the M3 release I have changed the generic
> server a little. First, the way we define a server definition in
> plugin.xml is changed. Also the .server files are .serverdef files now
> since they were mixed with the server config files from the server
> tooling core. And I did a few minor changes in the server definition
> structure but they are really minor.
>
> In the webtools server tooling we have a different approach than lomboz.
> In lomboz we tried to host as much of the server definitions in lomboz
> project. But in the webtools we provide only a few to be examples,
> because a new server definition can be added and updated in its plugin
> using the update manager. So we would like to encourage hosting server
> definition update sites to server vendors and server experts. But In
> this case we are considering changing the current server definition from
> JBoss 3.2.3 to JBoss 4.
>
> --
> Gorkem Ercan
>
> Christopher M. Judd wrote:
> > I have created a JBoss 4.0.1 generic server configuration and tested it
with
> > M3. Attached you will find the necessary three files: jboos401.server,
> > jboss401.xml and plugin.xml. They need to be placed in the
> >
eclipse\plugins\org.eclipse.jst.server.generic.serverdefinit ions_1.0.0\serve
> > rs,
> >
eclipse\plugins\org.eclipse.jst.server.generic.serverdefinit ions_1.0.0\build
> > files and
> > eclipse\plugins\org.eclipse.jst.server.generic.serverdefinit ions_1.0.0
> > respectively.
> >
> > I also created bug 90100 and attached files.
> >
> > "Tim deBoer" <deboer@ca.ibm.com> wrote in message
> > news:d1l4f5$dom$1@news.eclipse.org...
> >
> >>Hi Michael,
> >>
> >>Currently we only have support for JBoss 3.2.3 (via the generic server
> >>support). Although we have had some interest and participation directly
> >
> > from
> >
> >>JBoss, this has not yet ended up producing any code. Please let us know
if
> >>you are interested in getting involved.
> >>
> >>
> >
> >
> >
> > <project name="deployextension" default="deploy.j2ee.web" basedir=".">
> > <target name="deploy.j2ee.web">
> > <jar destfile="${module.name}.war">
> > <zipfileset dir="${module.dir}">
> > <include name="**/*.*"/>
> > <exclude name="**/*.war"/>
> > </zipfileset>
> > </jar>
> > <move file="${module.name}.war" todir="${server.publish.dir}"/>
> > </target>
> >
> > <target name="deploy.j2ee.ejb">
> > <jar destfile="${module.name}.jar">
> > <zipfileset dir="${module.dir}">
> > <include name="**/*.*"/>
> > <exclude name="**/*.java"/>
> > <exclude name="**/*.jar"/>
> > </zipfileset>
> > </jar>
> > <move file="${module.name}.jar" todir="${server.publish.dir}"/>
> > </target>
> > <target name="undeploy.j2ee.web">
> > <delete file="${server.publish.dir}/${module.name}.war"> </delete>
> > </target>
> > <target name="undeploy.j2ee.ejb">
> > <delete file="${server.publish.dir}/${module.name}.jar"> </delete>
> > </target>
> > </project>
> >
> > <?xml version="1.0" encoding="UTF-8"?>
> > <?eclipse version="3.0"?>
> > <plugin
> > id="org.eclipse.jst.server.generic.serverdefinitions"
> > name="Serverdefinitions Plug-in"
> > version="1.0.0"
> > provider-name="Eclipse.org"
> >
class=" org.eclipse.jst.server.generic.serverdefinitions.Serverdefin itionsPlu
gin">
> >
> > <runtime>
> > <library name="serverdefinitions.jar">
> > <export name="*"/>
> > </library>
> > </runtime>
> >
> > <requires>
> > <import plugin="org.eclipse.core.runtime"/>
> > <import plugin="org.eclipse.jst.server.generic.core"/>
> > </requires>
> >
> > <extension
point="org.eclipse.jst.server.generic.core.serverdefinition ">
> > <serverdefinition id="Weblogic8.1"
definitionfile="/servers/weblogic81.server">
> > </serverdefinition>
> > <serverdefinition id="JBoss 3.2.3"
definitionfile="/servers/jboss323.server">
> > </serverdefinition>
> > <serverdefinition id="Jonas 4.1.4"
definitionfile="/servers/jonas.server">
> > </serverdefinition>
> > <serverdefinition id="JBoss 4.0.1"
definitionfile="/servers/jboss401.server">
> > </serverdefinition>
> > </extension>
> > </plugin>


Re: Will WTP support JBoss 4 ? [message #90381 is a reply to message #90286] Tue, 05 April 2005 16:48 Go to previous message
Eclipse UserFriend
Originally posted by: gercan.REMOVEME.acm.org

Hi Christopher,
As I said on the previous posting JBoss 3.2.3 is becoming less common so
I do consider switching our example to a JBoss 4 release please do
continue to provide server definition for M4 and later releases as well.

Having a list of server plugin providers in WTP web site is definitely
something we would have. I am preparing a how to and a plugin project
template plugin that will create all the extensions etc. I am hoping to
have both ready for M4.
--
Gorkem

Christopher M. Judd wrote:
> Gorkem,
>
> Thanks for finding my bug. I have attached a new version using the property.
>
> Also, thanks explaining the new direction. I needed support in M3 so it was
> worth my effort and good for my understanding. Based on the questions in
> this newsgroup, I think others needed it for M3 as well. If you would like
> me to provide a JBoss 4.0.1 version for M4 let me know.
>
> I like having each vendor provide their own update sites for all the
> different extensions. Is the WTP website going to have a list of updates
> sites from the different vendors? Will there be a roadmap of suggested
> extensions that each of the vendors should provide? I think this would be
> helpful for them and encourage them to provide a full and quality set of
> plug-ins.
>
> "Gorkem Ercan" <gercan@REMOVEME.acm.org> wrote in message
> news:424FAB0E.9040406@REMOVEME.acm.org...
>
>>Hi Christopher,
>>
>>I have looked at your .server files. There are some minor things you
>>should look at for instance the line
>><classpath id="jboss" isLibrary="true">
>><archive path="C:/devl/jboss-4.0.1sp1/server/${serverConfig}/conf"/ >
>>
>>directly refers to a directory where you should be using a property
>>instead.
>>
>>Also you may want to alter your files so that they are compatible with
>>latest generic server. After the M3 release I have changed the generic
>>server a little. First, the way we define a server definition in
>>plugin.xml is changed. Also the .server files are .serverdef files now
>>since they were mixed with the server config files from the server
>>tooling core. And I did a few minor changes in the server definition
>>structure but they are really minor.
>>
>>In the webtools server tooling we have a different approach than lomboz.
>>In lomboz we tried to host as much of the server definitions in lomboz
>>project. But in the webtools we provide only a few to be examples,
>>because a new server definition can be added and updated in its plugin
>>using the update manager. So we would like to encourage hosting server
>>definition update sites to server vendors and server experts. But In
>>this case we are considering changing the current server definition from
>>JBoss 3.2.3 to JBoss 4.
>>
>>--
>>Gorkem Ercan
>>
>>Christopher M. Judd wrote:
>>
>>>I have created a JBoss 4.0.1 generic server configuration and tested it
>
> with
>
>>>M3. Attached you will find the necessary three files: jboos401.server,
>>>jboss401.xml and plugin.xml. They need to be placed in the
>>>
>
> eclipse\plugins\org.eclipse.jst.server.generic.serverdefinit ions_1.0.0\serve
>
>>>rs,
>>>
>
> eclipse\plugins\org.eclipse.jst.server.generic.serverdefinit ions_1.0.0\build
>
>>>files and
>>> eclipse\plugins\org.eclipse.jst.server.generic.serverdefinit ions_1.0.0
>>>respectively.
>>>
>>>I also created bug 90100 and attached files.
>>>
>>>"Tim deBoer" <deboer@ca.ibm.com> wrote in message
>>>news:d1l4f5$dom$1@news.eclipse.org...
>>>
>>>
>>>>Hi Michael,
>>>>
>>>>Currently we only have support for JBoss 3.2.3 (via the generic server
>>>>support). Although we have had some interest and participation directly
>>>
>>>from
>>>
>>>
>>>>JBoss, this has not yet ended up producing any code. Please let us know
>
> if
>
>>>>you are interested in getting involved.
>>>>
>>>>
>>>
>>>
>>>
>>><project name="deployextension" default="deploy.j2ee.web" basedir=".">
>>><target name="deploy.j2ee.web">
>>><jar destfile="${module.name}.war">
>>><zipfileset dir="${module.dir}">
>>> <include name="**/*.*"/>
>>><exclude name="**/*.war"/>
>>></zipfileset>
>>></jar>
>>> <move file="${module.name}.war" todir="${server.publish.dir}"/>
>>></target>
>>>
>>><target name="deploy.j2ee.ejb">
>>><jar destfile="${module.name}.jar">
>>><zipfileset dir="${module.dir}">
>>> <include name="**/*.*"/>
>>> <exclude name="**/*.java"/>
>>><exclude name="**/*.jar"/>
>>></zipfileset>
>>></jar>
>>> <move file="${module.name}.jar" todir="${server.publish.dir}"/>
>>></target>
>>><target name="undeploy.j2ee.web">
>>><delete file="${server.publish.dir}/${module.name}.war"> </delete>
>>></target>
>>><target name="undeploy.j2ee.ejb">
>>><delete file="${server.publish.dir}/${module.name}.jar"> </delete>
>>></target>
>>></project>
>>>
>>><?xml version="1.0" encoding="UTF-8"?>
>>><?eclipse version="3.0"?>
>>><plugin
>>> id="org.eclipse.jst.server.generic.serverdefinitions"
>>> name="Serverdefinitions Plug-in"
>>> version="1.0.0"
>>> provider-name="Eclipse.org"
>>>
>
> class=" org.eclipse.jst.server.generic.serverdefinitions.Serverdefin itionsPlu
> gin">
>
>>> <runtime>
>>> <library name="serverdefinitions.jar">
>>> <export name="*"/>
>>> </library>
>>> </runtime>
>>>
>>> <requires>
>>> <import plugin="org.eclipse.core.runtime"/>
>>> <import plugin="org.eclipse.jst.server.generic.core"/>
>>> </requires>
>>>
>>> <extension
>
> point="org.eclipse.jst.server.generic.core.serverdefinition ">
>
>>><serverdefinition id="Weblogic8.1"
>
> definitionfile="/servers/weblogic81.server">
>
>>></serverdefinition>
>>><serverdefinition id="JBoss 3.2.3"
>
> definitionfile="/servers/jboss323.server">
>
>>></serverdefinition>
>>><serverdefinition id="Jonas 4.1.4"
>
> definitionfile="/servers/jonas.server">
>
>>></serverdefinition>
>>><serverdefinition id="JBoss 4.0.1"
>
> definitionfile="/servers/jboss401.server">
>
>>></serverdefinition>
>>> </extension>
>>></plugin>
>
>
>
Previous Topic:Rudderless Ship
Next Topic:How to build a JSR 168 portlet?
Goto Forum:
  


Current Time: Wed Jul 16 05:32:10 EDT 2025

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

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

Back to the top