You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomee.apache.org by Screve Jean-Sébastien <je...@atosorigin.com> on 2009/06/02 15:31:23 UTC

RE: [jira] Created: (OEP-32) Eases OpenEJB installation in Tomcat (througout WTP)

Jean-Louis,

I developped something similar for WTP 1.5.
What WTP version is used or could be used in OpenEJB eclipse plugin ?

Regards,

Jean-Sébastien.

-----Message d'origine-----
De : Jean-Louis MONTEIRO (JIRA) [mailto:jira@apache.org]
Envoyé : mardi 2 juin 2009 13:54
À : commits@openejb.apache.org
Objet : [jira] Created: (OEP-32) Eases OpenEJB installation in Tomcat (througout WTP)

Eases OpenEJB installation in Tomcat (througout WTP)
----------------------------------------------------

                 Key: OEP-32
                 URL: https://issues.apache.org/jira/browse/OEP-32
             Project: OpenEJB Eclipse Plugin
          Issue Type: Improvement
         Environment: All
            Reporter: Jean-Louis MONTEIRO


Nowadays, OpenEJB Eclipse plugin only supports OpenEJB in a standalone mode. It would be nice to propose a wizard to install OpenEJB in a Tomcat server (WTP) already set up.
For example, the plugin should propose available OpenEJB version, then Tomcat version (already configured in WTP) and finally, install all needed stuff (webapp, loader, ...) in the target Tomcat server.

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.




Ce message et les pièces jointes sont confidentiels et réservés à l'usage exclusif de ses destinataires. Il peut également être protégé par le secret professionnel. Si vous recevez ce message par erreur, merci d'en avertir immédiatement l'expéditeur et de le détruire. L'intégrité du message ne pouvant être assurée sur Internet, la responsabilité du groupe Atos Origin ne pourra être recherchée quant au contenu de ce message. Bien que les meilleurs efforts soient faits pour maintenir cette transmission exempte de tout virus, l'expéditeur ne donne aucune garantie à cet égard et sa responsabilité ne saurait être recherchée pour tout dommage résultant d'un virus transmis.

This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Atos Origin group liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted.

Re: [jira] Created: (OEP-32) Eases OpenEJB installation in Tomcat (througout WTP)

Posted by Jean-Louis MONTEIRO <je...@atosorigin.com>.
Hi Jean-Sébastien,

It would be nice to share that plugin with Jon.
Eclipse 3.5 is definitely the target runtime (plateform). The plugin should
be able to download binaries (openejb webapp) from a maven repository. May
be the default repository can be central but it would be nice to have a way
to customize it.

Jean-Louis



Jean-Sébastien Scrève wrote:
> 
> Hi,
> 
> I had some time to work on the plugin. This is a new revision. It still
> works with WTP 1.5. However it dowloads latest OpenEJB revision from our
> local repository. (need to change default repository to make it work).
> Next step will be to migrate it to Eclipse 3.5. I'll keep you informed !
> 
> Regards,
> 
> Jean-Sébastien Scrève.
> 
> 
> Jean-Sébastien Scrève wrote:
>> 
>> Hi Jonathan,
>> 
>> It cannot be a contribution as it is for now, it's only a first draft. I
>> send it to you anyway as I don't know if I have a lot of time to spend on
>> this feature.
>> 
>> We embed OpenEJB into an eclipse plugin. It's stored into
>> D:\OpenEJBWTPTomcat\net.atos.xa.ejb3.openejb\OpenEJBWebApp.
>> We also embed SQL jars into net.atos.xa.ejb3.openejb/TomcatCommon.
>> We embed conf into  net.atos.xa.ejb3.openejb/conf.
>> 
>> A customized tomcat plugin will be then in charge of configuring that web
>> application. We did not want to modify the Tomcat installation so we
>> create a catalina.properties file that reference the
>> openejb-tomcat-loader jar as well as SQL jars.
>> We modify the server.xml to add the listener and declare a context for
>> OpenEJB.
>> 
>> The customized Tomcat plugin only slighlty differs from the "original"
>> Tomcat plugin. Modifications are mostly in
>> net.atos.xa.jst.server.openejb.tomcat.core.internal.Tomcat55Configuration.
>> 
>> As you can see this is quick solution to have a ready-to-run environment
>> with a preconfigured DataSource.
>> 
>> I would say that the following things still need to be done :
>> 
>> - download openejb from a repository.
>> - retrieve openejb.xml from OpenEJB itself.
>> - you don't need SQL jars.
>> - migrate to WTP 3.X.
>> - integrate it into the OpenEJB eclipse plugin.
>> 
>> 
>> I'm happy to share it with the community and look forward for your
>> feedback !
>> 
>> Best regards,
>> 
>> Jean-Sébastien Scrève.
>> 
>> -  http://www.nabble.com/file/p23865712/OpenEJBWTPTomcat.zip
>> OpenEJBWTPTomcat.zip 
>> 
>> 
>> Jonathan Gallimore-2 wrote:
>>> 
>>> Hi guys,
>>> 
>>> Thanks for logging this, I had meant to add an entry for this myself. We
>>> currently use WTP 3.0.3 and Eclipse 3.4. If you look at
>>> openejb-eclipse-plugin/eclipse/build.xml you can see the various Eclipse
>>> artifacts the build downloads and compiles against.
>>> 
>>> I'm all for using the latest stuff, but I'd like to keep an element of
>>> backwards compatibility too, the Eclipse plugins did work last time I
>>> deployed them on an Eclipse 3.3 installation (which IIRC wasn't that
>>> long
>>> ago).
>>> 
>>> If you have some code you've already worked on and would like / are able
>>> to
>>> share, please do, I'll happily try it out and give my feedback.
>>> 
>>> Regards
>>> 
>>> Jon
>>> 
>>> 
>>> 
>>> On Tue, Jun 2, 2009 at 4:58 PM, Jean-Louis MONTEIRO <
>>> jean-louis.monteiro@atosorigin.com> wrote:
>>> 
>>>>
>>>> The more relevant would be to use the latests.
>>>> * eclipse 3.4, or better 3.5 (coming soon)
>>>> * WTP 2.x and 3.x at least
>>>>
>>>> May be we can start with our internal development and see how we should
>>>> give
>>>> it to the community.
>>>>
>>>> Thanks.
>>>> Jean-Louis
>>>>
>>>>
>>>> Jean-Sébastien Scrève wrote:
>>>> >
>>>> > Jean-Louis,
>>>> >
>>>> > I developped something similar for WTP 1.5.
>>>> > What WTP version is used or could be used in OpenEJB eclipse plugin ?
>>>> >
>>>> > Regards,
>>>> >
>>>> > Jean-Sébastien.
>>>> >
>>>> > -----Message d'origine-----
>>>> > De : Jean-Louis MONTEIRO (JIRA) [mailto:jira@apache.org]
>>>> > Envoyé : mardi 2 juin 2009 13:54
>>>> > À : commits@openejb.apache.org
>>>> > Objet : [jira] Created: (OEP-32) Eases OpenEJB installation in Tomcat
>>>> > (througout WTP)
>>>> >
>>>> > Eases OpenEJB installation in Tomcat (througout WTP)
>>>> > ----------------------------------------------------
>>>> >
>>>> >                  Key: OEP-32
>>>> >                  URL: https://issues.apache.org/jira/browse/OEP-32
>>>> >              Project: OpenEJB Eclipse Plugin
>>>> >           Issue Type: Improvement
>>>> >          Environment: All
>>>> >             Reporter: Jean-Louis MONTEIRO
>>>> >
>>>> >
>>>> > Nowadays, OpenEJB Eclipse plugin only supports OpenEJB in a
>>>> standalone
>>>> > mode. It would be nice to propose a wizard to install OpenEJB in a
>>>> Tomcat
>>>> > server (WTP) already set up.
>>>> > For example, the plugin should propose available OpenEJB version,
>>>> then
>>>> > Tomcat version (already configured in WTP) and finally, install all
>>>> needed
>>>> > stuff (webapp, loader, ...) in the target Tomcat server.
>>>> >
>>>> > --
>>>> > This message is automatically generated by JIRA.
>>>> > -
>>>> > You can reply to this email to add a comment to the issue online.
>>>> >
>>>> >
>>>> >
>>>> >
>>>> > Ce message et les pièces jointes sont confidentiels et réservés à
>>>> l'usage
>>>> > exclusif de ses destinataires. Il peut également être protégé par le
>>>> > secret professionnel. Si vous recevez ce message par erreur, merci
>>>> d'en
>>>> > avertir immédiatement l'expéditeur et de le détruire. L'intégrité du
>>>> > message ne pouvant être assurée sur Internet, la responsabilité du
>>>> groupe
>>>> > Atos Origin ne pourra être recherchée quant au contenu de ce message.
>>>> Bien
>>>> > que les meilleurs efforts soient faits pour maintenir cette
>>>> transmission
>>>> > exempte de tout virus, l'expéditeur ne donne aucune garantie à cet
>>>> égard
>>>> > et sa responsabilité ne saurait être recherchée pour tout dommage
>>>> > résultant d'un virus transmis.
>>>> >
>>>> > This e-mail and the documents attached are confidential and intended
>>>> > solely for the addressee; it may also be privileged. If you receive
>>>> this
>>>> > e-mail in error, please notify the sender immediately and destroy it.
>>>> As
>>>> > its integrity cannot be secured on the Internet, the Atos Origin
>>>> group
>>>> > liability cannot be triggered for the message content. Although the
>>>> sender
>>>> > endeavours to maintain a computer virus-free network, the sender does
>>>> not
>>>> > warrant that this transmission is virus-free and will not be liable
>>>> for
>>>> > any damages resulting from any virus transmitted.
>>>> >
>>>> >
>>>>
>>>> --
>>>> View this message in context:
>>>> http://www.nabble.com/RE%3A--jira--Created%3A-%28OEP-32%29-Eases-OpenEJB-installation-in-Tomcat-%28througout-WTP%29-tp23833435p23835574.html
>>>> Sent from the OpenEJB Dev mailing list archive at Nabble.com.
>>>>
>>>>
>>> 
>>> 
>> 
>> 
>  http://www.nabble.com/file/p25328195/OpenEJBWTP.zip OpenEJBWTP.zip 
> http://www.nabble.com/file/p25328195/OpenEJBWTP.zip OpenEJBWTP.zip 
> 

-- 
View this message in context: http://www.nabble.com/RE%3A--jira--Created%3A-%28OEP-32%29-Eases-OpenEJB-installation-in-Tomcat-%28througout-WTP%29-tp23833435p25329042.html
Sent from the OpenEJB Dev mailing list archive at Nabble.com.


Re: [jira] Created: (OEP-32) Eases OpenEJB installation in Tomcat (througout WTP)

Posted by Jean-Sébastien Scrève <je...@atosorigin.com>.
Hi,

I had some time to work on the plugin. This is a new revision. It still
works with WTP 1.5. However it dowloads latest OpenEJB revision from our
local repository. (need to change default repository to make it work).
Next step will be to migrate it to Eclipse 3.5. I'll keep you informed !

Regards,

Jean-Sébastien Scrève.


Jean-Sébastien Scrève wrote:
> 
> Hi Jonathan,
> 
> It cannot be a contribution as it is for now, it's only a first draft. I
> send it to you anyway as I don't know if I have a lot of time to spend on
> this feature.
> 
> We embed OpenEJB into an eclipse plugin. It's stored into
> D:\OpenEJBWTPTomcat\net.atos.xa.ejb3.openejb\OpenEJBWebApp.
> We also embed SQL jars into net.atos.xa.ejb3.openejb/TomcatCommon.
> We embed conf into  net.atos.xa.ejb3.openejb/conf.
> 
> A customized tomcat plugin will be then in charge of configuring that web
> application. We did not want to modify the Tomcat installation so we
> create a catalina.properties file that reference the openejb-tomcat-loader
> jar as well as SQL jars.
> We modify the server.xml to add the listener and declare a context for
> OpenEJB.
> 
> The customized Tomcat plugin only slighlty differs from the "original"
> Tomcat plugin. Modifications are mostly in
> net.atos.xa.jst.server.openejb.tomcat.core.internal.Tomcat55Configuration.
> 
> As you can see this is quick solution to have a ready-to-run environment
> with a preconfigured DataSource.
> 
> I would say that the following things still need to be done :
> 
> - download openejb from a repository.
> - retrieve openejb.xml from OpenEJB itself.
> - you don't need SQL jars.
> - migrate to WTP 3.X.
> - integrate it into the OpenEJB eclipse plugin.
> 
> 
> I'm happy to share it with the community and look forward for your
> feedback !
> 
> Best regards,
> 
> Jean-Sébastien Scrève.
> 
> -  http://www.nabble.com/file/p23865712/OpenEJBWTPTomcat.zip
> OpenEJBWTPTomcat.zip 
> 
> 
> Jonathan Gallimore-2 wrote:
>> 
>> Hi guys,
>> 
>> Thanks for logging this, I had meant to add an entry for this myself. We
>> currently use WTP 3.0.3 and Eclipse 3.4. If you look at
>> openejb-eclipse-plugin/eclipse/build.xml you can see the various Eclipse
>> artifacts the build downloads and compiles against.
>> 
>> I'm all for using the latest stuff, but I'd like to keep an element of
>> backwards compatibility too, the Eclipse plugins did work last time I
>> deployed them on an Eclipse 3.3 installation (which IIRC wasn't that long
>> ago).
>> 
>> If you have some code you've already worked on and would like / are able
>> to
>> share, please do, I'll happily try it out and give my feedback.
>> 
>> Regards
>> 
>> Jon
>> 
>> 
>> 
>> On Tue, Jun 2, 2009 at 4:58 PM, Jean-Louis MONTEIRO <
>> jean-louis.monteiro@atosorigin.com> wrote:
>> 
>>>
>>> The more relevant would be to use the latests.
>>> * eclipse 3.4, or better 3.5 (coming soon)
>>> * WTP 2.x and 3.x at least
>>>
>>> May be we can start with our internal development and see how we should
>>> give
>>> it to the community.
>>>
>>> Thanks.
>>> Jean-Louis
>>>
>>>
>>> Jean-Sébastien Scrève wrote:
>>> >
>>> > Jean-Louis,
>>> >
>>> > I developped something similar for WTP 1.5.
>>> > What WTP version is used or could be used in OpenEJB eclipse plugin ?
>>> >
>>> > Regards,
>>> >
>>> > Jean-Sébastien.
>>> >
>>> > -----Message d'origine-----
>>> > De : Jean-Louis MONTEIRO (JIRA) [mailto:jira@apache.org]
>>> > Envoyé : mardi 2 juin 2009 13:54
>>> > À : commits@openejb.apache.org
>>> > Objet : [jira] Created: (OEP-32) Eases OpenEJB installation in Tomcat
>>> > (througout WTP)
>>> >
>>> > Eases OpenEJB installation in Tomcat (througout WTP)
>>> > ----------------------------------------------------
>>> >
>>> >                  Key: OEP-32
>>> >                  URL: https://issues.apache.org/jira/browse/OEP-32
>>> >              Project: OpenEJB Eclipse Plugin
>>> >           Issue Type: Improvement
>>> >          Environment: All
>>> >             Reporter: Jean-Louis MONTEIRO
>>> >
>>> >
>>> > Nowadays, OpenEJB Eclipse plugin only supports OpenEJB in a standalone
>>> > mode. It would be nice to propose a wizard to install OpenEJB in a
>>> Tomcat
>>> > server (WTP) already set up.
>>> > For example, the plugin should propose available OpenEJB version, then
>>> > Tomcat version (already configured in WTP) and finally, install all
>>> needed
>>> > stuff (webapp, loader, ...) in the target Tomcat server.
>>> >
>>> > --
>>> > This message is automatically generated by JIRA.
>>> > -
>>> > You can reply to this email to add a comment to the issue online.
>>> >
>>> >
>>> >
>>> >
>>> > Ce message et les pièces jointes sont confidentiels et réservés à
>>> l'usage
>>> > exclusif de ses destinataires. Il peut également être protégé par le
>>> > secret professionnel. Si vous recevez ce message par erreur, merci
>>> d'en
>>> > avertir immédiatement l'expéditeur et de le détruire. L'intégrité du
>>> > message ne pouvant être assurée sur Internet, la responsabilité du
>>> groupe
>>> > Atos Origin ne pourra être recherchée quant au contenu de ce message.
>>> Bien
>>> > que les meilleurs efforts soient faits pour maintenir cette
>>> transmission
>>> > exempte de tout virus, l'expéditeur ne donne aucune garantie à cet
>>> égard
>>> > et sa responsabilité ne saurait être recherchée pour tout dommage
>>> > résultant d'un virus transmis.
>>> >
>>> > This e-mail and the documents attached are confidential and intended
>>> > solely for the addressee; it may also be privileged. If you receive
>>> this
>>> > e-mail in error, please notify the sender immediately and destroy it.
>>> As
>>> > its integrity cannot be secured on the Internet, the Atos Origin group
>>> > liability cannot be triggered for the message content. Although the
>>> sender
>>> > endeavours to maintain a computer virus-free network, the sender does
>>> not
>>> > warrant that this transmission is virus-free and will not be liable
>>> for
>>> > any damages resulting from any virus transmitted.
>>> >
>>> >
>>>
>>> --
>>> View this message in context:
>>> http://www.nabble.com/RE%3A--jira--Created%3A-%28OEP-32%29-Eases-OpenEJB-installation-in-Tomcat-%28througout-WTP%29-tp23833435p23835574.html
>>> Sent from the OpenEJB Dev mailing list archive at Nabble.com.
>>>
>>>
>> 
>> 
> 
> 
http://www.nabble.com/file/p25328195/OpenEJBWTP.zip OpenEJBWTP.zip 
http://www.nabble.com/file/p25328195/OpenEJBWTP.zip OpenEJBWTP.zip 
-- 
View this message in context: http://www.nabble.com/RE%3A--jira--Created%3A-%28OEP-32%29-Eases-OpenEJB-installation-in-Tomcat-%28througout-WTP%29-tp23833435p25328195.html
Sent from the OpenEJB Dev mailing list archive at Nabble.com.


Re: [jira] Created: (OEP-32) Eases OpenEJB installation in Tomcat (througout WTP)

Posted by Jean-Sébastien Scrève <je...@atosorigin.com>.
Hi Jonathan,

It cannot be a contribution as it is for now, it's only a first draft. I
send it to you anyway as I don't know if I have a lot of time to spend on
this feature.

We embed OpenEJB into an eclipse plugin. It's stored into
D:\OpenEJBWTPTomcat\net.atos.xa.ejb3.openejb\OpenEJBWebApp.
We also embed SQL jars into net.atos.xa.ejb3.openejb/TomcatCommon.
We embed conf into  net.atos.xa.ejb3.openejb/conf.

A customized tomcat plugin will be then in charge of configuring that web
application. We did not want to modify the Tomcat installation so we create
a catalina.properties file that reference the openejb-tomcat-loader jar as
well as SQL jars.
We modify the server.xml to add the listener and declare a context for
OpenEJB.

The customized Tomcat plugin only slighlty differs from the "original"
Tomcat plugin. Modifications are mostly in
net.atos.xa.jst.server.openejb.tomcat.core.internal.Tomcat55Configuration.

As you can see this is quick solution to have a ready-to-run environment
with a preconfigured DataSource.

I would say that the following things still need to be done :

- download openejb from a repository.
- retrieve openejb.xml from OpenEJB itself.
- you don't need SQL jars.
- migrate to WTP 3.X.
- integrate it into the OpenEJB eclipse plugin.


I'm happy to share it with the community and look forward for your feedback
!

Best regards,

Jean-Sébastien Scrève.

-  http://www.nabble.com/file/p23865712/OpenEJBWTPTomcat.zip
OpenEJBWTPTomcat.zip 


Jonathan Gallimore-2 wrote:
> 
> Hi guys,
> 
> Thanks for logging this, I had meant to add an entry for this myself. We
> currently use WTP 3.0.3 and Eclipse 3.4. If you look at
> openejb-eclipse-plugin/eclipse/build.xml you can see the various Eclipse
> artifacts the build downloads and compiles against.
> 
> I'm all for using the latest stuff, but I'd like to keep an element of
> backwards compatibility too, the Eclipse plugins did work last time I
> deployed them on an Eclipse 3.3 installation (which IIRC wasn't that long
> ago).
> 
> If you have some code you've already worked on and would like / are able
> to
> share, please do, I'll happily try it out and give my feedback.
> 
> Regards
> 
> Jon
> 
> 
> 
> On Tue, Jun 2, 2009 at 4:58 PM, Jean-Louis MONTEIRO <
> jean-louis.monteiro@atosorigin.com> wrote:
> 
>>
>> The more relevant would be to use the latests.
>> * eclipse 3.4, or better 3.5 (coming soon)
>> * WTP 2.x and 3.x at least
>>
>> May be we can start with our internal development and see how we should
>> give
>> it to the community.
>>
>> Thanks.
>> Jean-Louis
>>
>>
>> Jean-Sébastien Scrève wrote:
>> >
>> > Jean-Louis,
>> >
>> > I developped something similar for WTP 1.5.
>> > What WTP version is used or could be used in OpenEJB eclipse plugin ?
>> >
>> > Regards,
>> >
>> > Jean-Sébastien.
>> >
>> > -----Message d'origine-----
>> > De : Jean-Louis MONTEIRO (JIRA) [mailto:jira@apache.org]
>> > Envoyé : mardi 2 juin 2009 13:54
>> > À : commits@openejb.apache.org
>> > Objet : [jira] Created: (OEP-32) Eases OpenEJB installation in Tomcat
>> > (througout WTP)
>> >
>> > Eases OpenEJB installation in Tomcat (througout WTP)
>> > ----------------------------------------------------
>> >
>> >                  Key: OEP-32
>> >                  URL: https://issues.apache.org/jira/browse/OEP-32
>> >              Project: OpenEJB Eclipse Plugin
>> >           Issue Type: Improvement
>> >          Environment: All
>> >             Reporter: Jean-Louis MONTEIRO
>> >
>> >
>> > Nowadays, OpenEJB Eclipse plugin only supports OpenEJB in a standalone
>> > mode. It would be nice to propose a wizard to install OpenEJB in a
>> Tomcat
>> > server (WTP) already set up.
>> > For example, the plugin should propose available OpenEJB version, then
>> > Tomcat version (already configured in WTP) and finally, install all
>> needed
>> > stuff (webapp, loader, ...) in the target Tomcat server.
>> >
>> > --
>> > This message is automatically generated by JIRA.
>> > -
>> > You can reply to this email to add a comment to the issue online.
>> >
>> >
>> >
>> >
>> > Ce message et les pièces jointes sont confidentiels et réservés à
>> l'usage
>> > exclusif de ses destinataires. Il peut également être protégé par le
>> > secret professionnel. Si vous recevez ce message par erreur, merci d'en
>> > avertir immédiatement l'expéditeur et de le détruire. L'intégrité du
>> > message ne pouvant être assurée sur Internet, la responsabilité du
>> groupe
>> > Atos Origin ne pourra être recherchée quant au contenu de ce message.
>> Bien
>> > que les meilleurs efforts soient faits pour maintenir cette
>> transmission
>> > exempte de tout virus, l'expéditeur ne donne aucune garantie à cet
>> égard
>> > et sa responsabilité ne saurait être recherchée pour tout dommage
>> > résultant d'un virus transmis.
>> >
>> > This e-mail and the documents attached are confidential and intended
>> > solely for the addressee; it may also be privileged. If you receive
>> this
>> > e-mail in error, please notify the sender immediately and destroy it.
>> As
>> > its integrity cannot be secured on the Internet, the Atos Origin group
>> > liability cannot be triggered for the message content. Although the
>> sender
>> > endeavours to maintain a computer virus-free network, the sender does
>> not
>> > warrant that this transmission is virus-free and will not be liable for
>> > any damages resulting from any virus transmitted.
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/RE%3A--jira--Created%3A-%28OEP-32%29-Eases-OpenEJB-installation-in-Tomcat-%28througout-WTP%29-tp23833435p23835574.html
>> Sent from the OpenEJB Dev mailing list archive at Nabble.com.
>>
>>
> 
> 

-- 
View this message in context: http://www.nabble.com/RE%3A--jira--Created%3A-%28OEP-32%29-Eases-OpenEJB-installation-in-Tomcat-%28througout-WTP%29-tp23833435p23865712.html
Sent from the OpenEJB Dev mailing list archive at Nabble.com.


Re: [jira] Created: (OEP-32) Eases OpenEJB installation in Tomcat (througout WTP)

Posted by Jonathan Gallimore <jo...@gmail.com>.
Hi guys,

Thanks for logging this, I had meant to add an entry for this myself. We
currently use WTP 3.0.3 and Eclipse 3.4. If you look at
openejb-eclipse-plugin/eclipse/build.xml you can see the various Eclipse
artifacts the build downloads and compiles against.

I'm all for using the latest stuff, but I'd like to keep an element of
backwards compatibility too, the Eclipse plugins did work last time I
deployed them on an Eclipse 3.3 installation (which IIRC wasn't that long
ago).

If you have some code you've already worked on and would like / are able to
share, please do, I'll happily try it out and give my feedback.

Regards

Jon



On Tue, Jun 2, 2009 at 4:58 PM, Jean-Louis MONTEIRO <
jean-louis.monteiro@atosorigin.com> wrote:

>
> The more relevant would be to use the latests.
> * eclipse 3.4, or better 3.5 (coming soon)
> * WTP 2.x and 3.x at least
>
> May be we can start with our internal development and see how we should
> give
> it to the community.
>
> Thanks.
> Jean-Louis
>
>
> Jean-Sébastien Scrève wrote:
> >
> > Jean-Louis,
> >
> > I developped something similar for WTP 1.5.
> > What WTP version is used or could be used in OpenEJB eclipse plugin ?
> >
> > Regards,
> >
> > Jean-Sébastien.
> >
> > -----Message d'origine-----
> > De : Jean-Louis MONTEIRO (JIRA) [mailto:jira@apache.org]
> > Envoyé : mardi 2 juin 2009 13:54
> > À : commits@openejb.apache.org
> > Objet : [jira] Created: (OEP-32) Eases OpenEJB installation in Tomcat
> > (througout WTP)
> >
> > Eases OpenEJB installation in Tomcat (througout WTP)
> > ----------------------------------------------------
> >
> >                  Key: OEP-32
> >                  URL: https://issues.apache.org/jira/browse/OEP-32
> >              Project: OpenEJB Eclipse Plugin
> >           Issue Type: Improvement
> >          Environment: All
> >             Reporter: Jean-Louis MONTEIRO
> >
> >
> > Nowadays, OpenEJB Eclipse plugin only supports OpenEJB in a standalone
> > mode. It would be nice to propose a wizard to install OpenEJB in a Tomcat
> > server (WTP) already set up.
> > For example, the plugin should propose available OpenEJB version, then
> > Tomcat version (already configured in WTP) and finally, install all
> needed
> > stuff (webapp, loader, ...) in the target Tomcat server.
> >
> > --
> > This message is automatically generated by JIRA.
> > -
> > You can reply to this email to add a comment to the issue online.
> >
> >
> >
> >
> > Ce message et les pièces jointes sont confidentiels et réservés à l'usage
> > exclusif de ses destinataires. Il peut également être protégé par le
> > secret professionnel. Si vous recevez ce message par erreur, merci d'en
> > avertir immédiatement l'expéditeur et de le détruire. L'intégrité du
> > message ne pouvant être assurée sur Internet, la responsabilité du groupe
> > Atos Origin ne pourra être recherchée quant au contenu de ce message.
> Bien
> > que les meilleurs efforts soient faits pour maintenir cette transmission
> > exempte de tout virus, l'expéditeur ne donne aucune garantie à cet égard
> > et sa responsabilité ne saurait être recherchée pour tout dommage
> > résultant d'un virus transmis.
> >
> > This e-mail and the documents attached are confidential and intended
> > solely for the addressee; it may also be privileged. If you receive this
> > e-mail in error, please notify the sender immediately and destroy it. As
> > its integrity cannot be secured on the Internet, the Atos Origin group
> > liability cannot be triggered for the message content. Although the
> sender
> > endeavours to maintain a computer virus-free network, the sender does not
> > warrant that this transmission is virus-free and will not be liable for
> > any damages resulting from any virus transmitted.
> >
> >
>
> --
> View this message in context:
> http://www.nabble.com/RE%3A--jira--Created%3A-%28OEP-32%29-Eases-OpenEJB-installation-in-Tomcat-%28througout-WTP%29-tp23833435p23835574.html
> Sent from the OpenEJB Dev mailing list archive at Nabble.com.
>
>

RE: [jira] Created: (OEP-32) Eases OpenEJB installation in Tomcat (througout WTP)

Posted by Jean-Louis MONTEIRO <je...@atosorigin.com>.
The more relevant would be to use the latests.
* eclipse 3.4, or better 3.5 (coming soon)
* WTP 2.x and 3.x at least

May be we can start with our internal development and see how we should give
it to the community.

Thanks.
Jean-Louis 


Jean-Sébastien Scrève wrote:
> 
> Jean-Louis,
> 
> I developped something similar for WTP 1.5.
> What WTP version is used or could be used in OpenEJB eclipse plugin ?
> 
> Regards,
> 
> Jean-Sébastien.
> 
> -----Message d'origine-----
> De : Jean-Louis MONTEIRO (JIRA) [mailto:jira@apache.org]
> Envoyé : mardi 2 juin 2009 13:54
> À : commits@openejb.apache.org
> Objet : [jira] Created: (OEP-32) Eases OpenEJB installation in Tomcat
> (througout WTP)
> 
> Eases OpenEJB installation in Tomcat (througout WTP)
> ----------------------------------------------------
> 
>                  Key: OEP-32
>                  URL: https://issues.apache.org/jira/browse/OEP-32
>              Project: OpenEJB Eclipse Plugin
>           Issue Type: Improvement
>          Environment: All
>             Reporter: Jean-Louis MONTEIRO
> 
> 
> Nowadays, OpenEJB Eclipse plugin only supports OpenEJB in a standalone
> mode. It would be nice to propose a wizard to install OpenEJB in a Tomcat
> server (WTP) already set up.
> For example, the plugin should propose available OpenEJB version, then
> Tomcat version (already configured in WTP) and finally, install all needed
> stuff (webapp, loader, ...) in the target Tomcat server.
> 
> --
> This message is automatically generated by JIRA.
> -
> You can reply to this email to add a comment to the issue online.
> 
> 
> 
> 
> Ce message et les pièces jointes sont confidentiels et réservés à l'usage
> exclusif de ses destinataires. Il peut également être protégé par le
> secret professionnel. Si vous recevez ce message par erreur, merci d'en
> avertir immédiatement l'expéditeur et de le détruire. L'intégrité du
> message ne pouvant être assurée sur Internet, la responsabilité du groupe
> Atos Origin ne pourra être recherchée quant au contenu de ce message. Bien
> que les meilleurs efforts soient faits pour maintenir cette transmission
> exempte de tout virus, l'expéditeur ne donne aucune garantie à cet égard
> et sa responsabilité ne saurait être recherchée pour tout dommage
> résultant d'un virus transmis.
> 
> This e-mail and the documents attached are confidential and intended
> solely for the addressee; it may also be privileged. If you receive this
> e-mail in error, please notify the sender immediately and destroy it. As
> its integrity cannot be secured on the Internet, the Atos Origin group
> liability cannot be triggered for the message content. Although the sender
> endeavours to maintain a computer virus-free network, the sender does not
> warrant that this transmission is virus-free and will not be liable for
> any damages resulting from any virus transmitted.
> 
> 

-- 
View this message in context: http://www.nabble.com/RE%3A--jira--Created%3A-%28OEP-32%29-Eases-OpenEJB-installation-in-Tomcat-%28througout-WTP%29-tp23833435p23835574.html
Sent from the OpenEJB Dev mailing list archive at Nabble.com.