You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomee.apache.org by Bjorn Danielsson <bj...@lists.cuspycode.com> on 2013/03/18 20:31:35 UTC

1.6-SNAPSHOT unavailable (was: Using a different javax.mail provider)

I'm waiting for the snapshots too.

And building from svn + maven doesn't seem to work at the moment,
at least not for me. First I got some complaints about a missing
tomee-maven-plugin-1.1.0-SNAPSHOT, but I managed to get rid of
that by disabling the examples module in the dependencies.

Then Maven got stuck on sxc-jaxb-core-0.8-20130125.012630-3-sources.jar
which seems to be trashed due to some bogus redirect which is never
detected during the download, it's only detected much later.

But Maven and I never got along. Maybe someone else is more lucky?

-- 
Bjorn Danielsson
Cuspy Code AB


"Howard W. Smith, Jr." <sm...@gmail.com> wrote:
> I just checked snapshot repo folder[1], but it still is not updated with
> zip files, etc. I guess i can confirm this fix when 1.6 is released.
>
> [1]
> https://repository.apache.org/content/groups/snapshots/org/apache/openejb/apache-tomee/1.6.0-SNAPSHOT/
>  On Mar 17, 2013 2:09 PM, "Bjorn Danielsson" <
> bjorn-apache@lists.cuspycode.com> wrote:
>
>> Do you ever sleep Romain? ;-)
>>
>> I'll try bundling mail.jar with the webapp and report back
>> as soon as the builds start working again.
>>
>> Thanks a lot!
>>
>> --
>> Bjorn Danielsson
>> Cuspy Code AB
>>
>>
>> Romain Manni-Bucau <rm...@gmail.com> wrote:
>> > wonder if https://issues.apache.org/jira/browse/TOMEE-834 fixes it for
>> you
>> >
>> > *Romain Manni-Bucau*
>> > *Twitter: @rmannibucau <https://twitter.com/rmannibucau>*
>> > *Blog: **http://rmannibucau.wordpress.com/*<
>> http://rmannibucau.wordpress.com/>
>> > *LinkedIn: **http://fr.linkedin.com/in/rmannibucau*
>> > *Github: https://github.com/rmannibucau*
>> >
>> >
>> >
>> > 2013/3/16 Howard W. Smith, Jr. <sm...@gmail.com>
>> >
>> >> Bjorn,
>> >>
>> >> Please click URL below as I discussed this month's ago. I always remove
>> >> geronimo mail jar from tomee/lib and replace with oracle or sun javamail
>> >> jar.
>> >>
>> >>
>> >>
>> http://openejb.979440.n4.nabble.com/TomEE-JavaMail-Unexpected-command-IMAP-command-error-td4659299.html
>> >> On Mar 16, 2013 5:18 PM, "Bjorn Danielsson" <
>> >> bjorn-apache@lists.cuspycode.com> wrote:
>> >>
>> >> > I found the system property for hardwiring a different provider
>> >> > for the IMAP protocol. Unfortunately that broke other things
>> >> > because other javax.mail functions are still loaded from
>> >> > geronimo-javamail, and there are incompatibilities (or bugs).
>> >> >
>> >> > I have managed to reproduce the problems in a standalone
>> >> > program that can be run from the command-line and only depends
>> >> > on Javamail. So maybe the OpenEJB list is the wrong forum for
>> >> > this? But I'll share the link to the code here anyway:
>> >> >
>> >> > http://github.com/cuspycode/apache-stuff/tree/master/imaptest
>> >> >
>> >> > Anyway, for my TomEE webapp I put the Sun jar in tomee/endorsed.
>> >> > This seems to make everything work without any bad side effects.
>> >> >
>> >> > --
>> >> > Bjorn Danielsson
>> >> > Cuspy Code AB
>> >> >
>> >> >
>> >> > Romain Manni-Bucau <rm...@gmail.com> wrote:
>> >> > > IIRC there is a system property to do so in the spec.
>> >> > >
>> >> > > If not just share a small sample wuth a servlet or so to qhiw it
>> doesnt
>> >> > > work and well make it work
>> >> > > Le 15 mars 2013 17:42, "Bjorn Danielsson" <
>> >> > bjorn-apache@lists.cuspycode.com>
>> >> > > a écrit :
>> >> > >
>> >> > >> I have a webapp that works with Sun's (Oracle's) Javamail
>> >> > >> implementation but not with the Geronimo Javamail that is
>> >> > >> bundled with TomEE. Is there some way I can bundle the Sun
>> >> > >> version in my webapp?
>> >> > >>
>> >> > >> I can make it work by fiddling with tomee/lib or tomee/endorsed,
>> >> > >> but if it's at all possible I would prefer to just keep this
>> >> > >> temporary workaround within the webapp itself.
>> >> > >>
>> >> > >> --
>> >> > >> Bjorn Danielsson
>> >> > >> Cuspy Code AB
>> >> > >>
>> >> >
>> >>
>>

Re: 1.6-SNAPSHOT unavailable (was: Using a different javax.mail provider)

Posted by Felipe Jaekel <fk...@gmail.com>.
I had a lot of strange issues with JavaMail in TomEE when I was migrating
from a regular Tomcat 7.

The solution was to delete geronimo-javamail_1.4_mail-1.8.3.jar,
add geronimo-osgi-locator-1.1.jar, and finally add mail.jar to
<tomee_home>/lib (when I added it to WEB-INF/lib some email routines of my
application were working and others not).


2014-09-03 7:58 GMT-03:00 herau <le...@gmail.com>:

> i would like to use the com.sun.mail:javax.mail:1.5.1 implementation.
>
> i put the jar in the lib directory of tomEE but it's seems that the
> selected
> implementation isn't com.sun.mail.
>
> does i have to had declaration in the conf/system.properties file ?
>
>
>
> --
> View this message in context:
> http://tomee-openejb.979440.n4.nabble.com/Using-a-different-javax-mail-provider-tp4661546p4671553.html
> Sent from the TomEE Users mailing list archive at Nabble.com.
>

Re: 1.6-SNAPSHOT unavailable (was: Using a different javax.mail provider)

Posted by herau <le...@gmail.com>.
i would like to use the com.sun.mail:javax.mail:1.5.1 implementation. 

i put the jar in the lib directory of tomEE but it's seems that the selected
implementation isn't com.sun.mail.

does i have to had declaration in the conf/system.properties file ?



--
View this message in context: http://tomee-openejb.979440.n4.nabble.com/Using-a-different-javax-mail-provider-tp4661546p4671553.html
Sent from the TomEE Users mailing list archive at Nabble.com.

Re: 1.6-SNAPSHOT unavailable (was: Using a different javax.mail provider)

Posted by "Howard W. Smith, Jr." <sm...@gmail.com>.
That's great. Glad to hear. Thanks!
On Mar 18, 2013 4:11 PM, "Bjorn Danielsson" <
bjorn-apache@lists.cuspycode.com> wrote:

> That worked!
>
> I could never have guessed that mvn command by myself, but it did
> the trick and I got my apache-tomee-plus-1.6.0-SNAPSHOT to compile.
>
> And I can confirm that the classloader fix works. I put the Sun
> mail.jar in my WEB-INF/lib and everything worked now, without any
> need to touch anything else.
>
> --
> Bjorn Danielsson
> Cuspy Code AB
>
>
> Romain Manni-Bucau <rm...@gmail.com> wrote:
> > hmm,
> >
> > about tomee maven plugin skip example, just build using
> >
> > mvn clean install -pl tomee/apache-tomee -am -Dmaven.test.skip=true
> >
> > *Romain Manni-Bucau*
> > *Twitter: @rmannibucau <https://twitter.com/rmannibucau>*
> > *Blog: **http://rmannibucau.wordpress.com/*<
> http://rmannibucau.wordpress.com/>
> > *LinkedIn: **http://fr.linkedin.com/in/rmannibucau*
> > *Github: https://github.com/rmannibucau*
> >
> >
> >
> > 2013/3/18 Bjorn Danielsson <bj...@lists.cuspycode.com>
> >
> >> I'm waiting for the snapshots too.
> >>
> >> And building from svn + maven doesn't seem to work at the moment,
> >> at least not for me. First I got some complaints about a missing
> >> tomee-maven-plugin-1.1.0-SNAPSHOT, but I managed to get rid of
> >> that by disabling the examples module in the dependencies.
> >>
> >> Then Maven got stuck on sxc-jaxb-core-0.8-20130125.012630-3-sources.jar
> >> which seems to be trashed due to some bogus redirect which is never
> >> detected during the download, it's only detected much later.
> >>
> >> But Maven and I never got along. Maybe someone else is more lucky?
> >>
> >> --
> >> Bjorn Danielsson
> >> Cuspy Code AB
> >>
> >>
> >> "Howard W. Smith, Jr." <sm...@gmail.com> wrote:
> >> > I just checked snapshot repo folder[1], but it still is not updated
> with
> >> > zip files, etc. I guess i can confirm this fix when 1.6 is released.
> >> >
> >> > [1]
> >> >
> >>
> https://repository.apache.org/content/groups/snapshots/org/apache/openejb/apache-tomee/1.6.0-SNAPSHOT/
> >> >  On Mar 17, 2013 2:09 PM, "Bjorn Danielsson" <
> >> > bjorn-apache@lists.cuspycode.com> wrote:
> >> >
> >> >> Do you ever sleep Romain? ;-)
> >> >>
> >> >> I'll try bundling mail.jar with the webapp and report back
> >> >> as soon as the builds start working again.
> >> >>
> >> >> Thanks a lot!
> >> >>
> >> >> --
> >> >> Bjorn Danielsson
> >> >> Cuspy Code AB
> >> >>
> >> >>
> >> >> Romain Manni-Bucau <rm...@gmail.com> wrote:
> >> >> > wonder if https://issues.apache.org/jira/browse/TOMEE-834 fixes it
> >> for
> >> >> you
> >> >> >
> >> >> > *Romain Manni-Bucau*
> >> >> > *Twitter: @rmannibucau <https://twitter.com/rmannibucau>*
> >> >> > *Blog: **http://rmannibucau.wordpress.com/*<
> >> >> http://rmannibucau.wordpress.com/>
> >> >> > *LinkedIn: **http://fr.linkedin.com/in/rmannibucau*
> >> >> > *Github: https://github.com/rmannibucau*
> >> >> >
> >> >> >
> >> >> >
> >> >> > 2013/3/16 Howard W. Smith, Jr. <sm...@gmail.com>
> >> >> >
> >> >> >> Bjorn,
> >> >> >>
> >> >> >> Please click URL below as I discussed this month's ago. I always
> >> remove
> >> >> >> geronimo mail jar from tomee/lib and replace with oracle or sun
> >> javamail
> >> >> >> jar.
> >> >> >>
> >> >> >>
> >> >> >>
> >> >>
> >>
> http://openejb.979440.n4.nabble.com/TomEE-JavaMail-Unexpected-command-IMAP-command-error-td4659299.html
> >> >> >> On Mar 16, 2013 5:18 PM, "Bjorn Danielsson" <
> >> >> >> bjorn-apache@lists.cuspycode.com> wrote:
> >> >> >>
> >> >> >> > I found the system property for hardwiring a different provider
> >> >> >> > for the IMAP protocol. Unfortunately that broke other things
> >> >> >> > because other javax.mail functions are still loaded from
> >> >> >> > geronimo-javamail, and there are incompatibilities (or bugs).
> >> >> >> >
> >> >> >> > I have managed to reproduce the problems in a standalone
> >> >> >> > program that can be run from the command-line and only depends
> >> >> >> > on Javamail. So maybe the OpenEJB list is the wrong forum for
> >> >> >> > this? But I'll share the link to the code here anyway:
> >> >> >> >
> >> >> >> > http://github.com/cuspycode/apache-stuff/tree/master/imaptest
> >> >> >> >
> >> >> >> > Anyway, for my TomEE webapp I put the Sun jar in tomee/endorsed.
> >> >> >> > This seems to make everything work without any bad side effects.
> >> >> >> >
> >> >> >> > --
> >> >> >> > Bjorn Danielsson
> >> >> >> > Cuspy Code AB
> >> >> >> >
> >> >> >> >
> >> >> >> > Romain Manni-Bucau <rm...@gmail.com> wrote:
> >> >> >> > > IIRC there is a system property to do so in the spec.
> >> >> >> > >
> >> >> >> > > If not just share a small sample wuth a servlet or so to qhiw
> it
> >> >> doesnt
> >> >> >> > > work and well make it work
> >> >> >> > > Le 15 mars 2013 17:42, "Bjorn Danielsson" <
> >> >> >> > bjorn-apache@lists.cuspycode.com>
> >> >> >> > > a écrit :
> >> >> >> > >
> >> >> >> > >> I have a webapp that works with Sun's (Oracle's) Javamail
> >> >> >> > >> implementation but not with the Geronimo Javamail that is
> >> >> >> > >> bundled with TomEE. Is there some way I can bundle the Sun
> >> >> >> > >> version in my webapp?
> >> >> >> > >>
> >> >> >> > >> I can make it work by fiddling with tomee/lib or
> tomee/endorsed,
> >> >> >> > >> but if it's at all possible I would prefer to just keep this
> >> >> >> > >> temporary workaround within the webapp itself.
> >> >> >> > >>
> >> >> >> > >> --
> >> >> >> > >> Bjorn Danielsson
> >> >> >> > >> Cuspy Code AB
> >> >> >> > >>
> >> >> >> >
> >> >> >>
> >> >>
> >>
>

Re: 1.6-SNAPSHOT unavailable (was: Using a different javax.mail provider)

Posted by Bjorn Danielsson <bj...@lists.cuspycode.com>.
That worked!

I could never have guessed that mvn command by myself, but it did
the trick and I got my apache-tomee-plus-1.6.0-SNAPSHOT to compile.

And I can confirm that the classloader fix works. I put the Sun
mail.jar in my WEB-INF/lib and everything worked now, without any
need to touch anything else.

-- 
Bjorn Danielsson
Cuspy Code AB


Romain Manni-Bucau <rm...@gmail.com> wrote:
> hmm,
>
> about tomee maven plugin skip example, just build using
>
> mvn clean install -pl tomee/apache-tomee -am -Dmaven.test.skip=true
>
> *Romain Manni-Bucau*
> *Twitter: @rmannibucau <https://twitter.com/rmannibucau>*
> *Blog: **http://rmannibucau.wordpress.com/*<http://rmannibucau.wordpress.com/>
> *LinkedIn: **http://fr.linkedin.com/in/rmannibucau*
> *Github: https://github.com/rmannibucau*
>
>
>
> 2013/3/18 Bjorn Danielsson <bj...@lists.cuspycode.com>
>
>> I'm waiting for the snapshots too.
>>
>> And building from svn + maven doesn't seem to work at the moment,
>> at least not for me. First I got some complaints about a missing
>> tomee-maven-plugin-1.1.0-SNAPSHOT, but I managed to get rid of
>> that by disabling the examples module in the dependencies.
>>
>> Then Maven got stuck on sxc-jaxb-core-0.8-20130125.012630-3-sources.jar
>> which seems to be trashed due to some bogus redirect which is never
>> detected during the download, it's only detected much later.
>>
>> But Maven and I never got along. Maybe someone else is more lucky?
>>
>> --
>> Bjorn Danielsson
>> Cuspy Code AB
>>
>>
>> "Howard W. Smith, Jr." <sm...@gmail.com> wrote:
>> > I just checked snapshot repo folder[1], but it still is not updated with
>> > zip files, etc. I guess i can confirm this fix when 1.6 is released.
>> >
>> > [1]
>> >
>> https://repository.apache.org/content/groups/snapshots/org/apache/openejb/apache-tomee/1.6.0-SNAPSHOT/
>> >  On Mar 17, 2013 2:09 PM, "Bjorn Danielsson" <
>> > bjorn-apache@lists.cuspycode.com> wrote:
>> >
>> >> Do you ever sleep Romain? ;-)
>> >>
>> >> I'll try bundling mail.jar with the webapp and report back
>> >> as soon as the builds start working again.
>> >>
>> >> Thanks a lot!
>> >>
>> >> --
>> >> Bjorn Danielsson
>> >> Cuspy Code AB
>> >>
>> >>
>> >> Romain Manni-Bucau <rm...@gmail.com> wrote:
>> >> > wonder if https://issues.apache.org/jira/browse/TOMEE-834 fixes it
>> for
>> >> you
>> >> >
>> >> > *Romain Manni-Bucau*
>> >> > *Twitter: @rmannibucau <https://twitter.com/rmannibucau>*
>> >> > *Blog: **http://rmannibucau.wordpress.com/*<
>> >> http://rmannibucau.wordpress.com/>
>> >> > *LinkedIn: **http://fr.linkedin.com/in/rmannibucau*
>> >> > *Github: https://github.com/rmannibucau*
>> >> >
>> >> >
>> >> >
>> >> > 2013/3/16 Howard W. Smith, Jr. <sm...@gmail.com>
>> >> >
>> >> >> Bjorn,
>> >> >>
>> >> >> Please click URL below as I discussed this month's ago. I always
>> remove
>> >> >> geronimo mail jar from tomee/lib and replace with oracle or sun
>> javamail
>> >> >> jar.
>> >> >>
>> >> >>
>> >> >>
>> >>
>> http://openejb.979440.n4.nabble.com/TomEE-JavaMail-Unexpected-command-IMAP-command-error-td4659299.html
>> >> >> On Mar 16, 2013 5:18 PM, "Bjorn Danielsson" <
>> >> >> bjorn-apache@lists.cuspycode.com> wrote:
>> >> >>
>> >> >> > I found the system property for hardwiring a different provider
>> >> >> > for the IMAP protocol. Unfortunately that broke other things
>> >> >> > because other javax.mail functions are still loaded from
>> >> >> > geronimo-javamail, and there are incompatibilities (or bugs).
>> >> >> >
>> >> >> > I have managed to reproduce the problems in a standalone
>> >> >> > program that can be run from the command-line and only depends
>> >> >> > on Javamail. So maybe the OpenEJB list is the wrong forum for
>> >> >> > this? But I'll share the link to the code here anyway:
>> >> >> >
>> >> >> > http://github.com/cuspycode/apache-stuff/tree/master/imaptest
>> >> >> >
>> >> >> > Anyway, for my TomEE webapp I put the Sun jar in tomee/endorsed.
>> >> >> > This seems to make everything work without any bad side effects.
>> >> >> >
>> >> >> > --
>> >> >> > Bjorn Danielsson
>> >> >> > Cuspy Code AB
>> >> >> >
>> >> >> >
>> >> >> > Romain Manni-Bucau <rm...@gmail.com> wrote:
>> >> >> > > IIRC there is a system property to do so in the spec.
>> >> >> > >
>> >> >> > > If not just share a small sample wuth a servlet or so to qhiw it
>> >> doesnt
>> >> >> > > work and well make it work
>> >> >> > > Le 15 mars 2013 17:42, "Bjorn Danielsson" <
>> >> >> > bjorn-apache@lists.cuspycode.com>
>> >> >> > > a écrit :
>> >> >> > >
>> >> >> > >> I have a webapp that works with Sun's (Oracle's) Javamail
>> >> >> > >> implementation but not with the Geronimo Javamail that is
>> >> >> > >> bundled with TomEE. Is there some way I can bundle the Sun
>> >> >> > >> version in my webapp?
>> >> >> > >>
>> >> >> > >> I can make it work by fiddling with tomee/lib or tomee/endorsed,
>> >> >> > >> but if it's at all possible I would prefer to just keep this
>> >> >> > >> temporary workaround within the webapp itself.
>> >> >> > >>
>> >> >> > >> --
>> >> >> > >> Bjorn Danielsson
>> >> >> > >> Cuspy Code AB
>> >> >> > >>
>> >> >> >
>> >> >>
>> >>
>>

Re: 1.6-SNAPSHOT unavailable (was: Using a different javax.mail provider)

Posted by Romain Manni-Bucau <rm...@gmail.com>.
hmm,

about tomee maven plugin skip example, just build using

mvn clean install -pl tomee/apache-tomee -am -Dmaven.test.skip=true

*Romain Manni-Bucau*
*Twitter: @rmannibucau <https://twitter.com/rmannibucau>*
*Blog: **http://rmannibucau.wordpress.com/*<http://rmannibucau.wordpress.com/>
*LinkedIn: **http://fr.linkedin.com/in/rmannibucau*
*Github: https://github.com/rmannibucau*



2013/3/18 Bjorn Danielsson <bj...@lists.cuspycode.com>

> I'm waiting for the snapshots too.
>
> And building from svn + maven doesn't seem to work at the moment,
> at least not for me. First I got some complaints about a missing
> tomee-maven-plugin-1.1.0-SNAPSHOT, but I managed to get rid of
> that by disabling the examples module in the dependencies.
>
> Then Maven got stuck on sxc-jaxb-core-0.8-20130125.012630-3-sources.jar
> which seems to be trashed due to some bogus redirect which is never
> detected during the download, it's only detected much later.
>
> But Maven and I never got along. Maybe someone else is more lucky?
>
> --
> Bjorn Danielsson
> Cuspy Code AB
>
>
> "Howard W. Smith, Jr." <sm...@gmail.com> wrote:
> > I just checked snapshot repo folder[1], but it still is not updated with
> > zip files, etc. I guess i can confirm this fix when 1.6 is released.
> >
> > [1]
> >
> https://repository.apache.org/content/groups/snapshots/org/apache/openejb/apache-tomee/1.6.0-SNAPSHOT/
> >  On Mar 17, 2013 2:09 PM, "Bjorn Danielsson" <
> > bjorn-apache@lists.cuspycode.com> wrote:
> >
> >> Do you ever sleep Romain? ;-)
> >>
> >> I'll try bundling mail.jar with the webapp and report back
> >> as soon as the builds start working again.
> >>
> >> Thanks a lot!
> >>
> >> --
> >> Bjorn Danielsson
> >> Cuspy Code AB
> >>
> >>
> >> Romain Manni-Bucau <rm...@gmail.com> wrote:
> >> > wonder if https://issues.apache.org/jira/browse/TOMEE-834 fixes it
> for
> >> you
> >> >
> >> > *Romain Manni-Bucau*
> >> > *Twitter: @rmannibucau <https://twitter.com/rmannibucau>*
> >> > *Blog: **http://rmannibucau.wordpress.com/*<
> >> http://rmannibucau.wordpress.com/>
> >> > *LinkedIn: **http://fr.linkedin.com/in/rmannibucau*
> >> > *Github: https://github.com/rmannibucau*
> >> >
> >> >
> >> >
> >> > 2013/3/16 Howard W. Smith, Jr. <sm...@gmail.com>
> >> >
> >> >> Bjorn,
> >> >>
> >> >> Please click URL below as I discussed this month's ago. I always
> remove
> >> >> geronimo mail jar from tomee/lib and replace with oracle or sun
> javamail
> >> >> jar.
> >> >>
> >> >>
> >> >>
> >>
> http://openejb.979440.n4.nabble.com/TomEE-JavaMail-Unexpected-command-IMAP-command-error-td4659299.html
> >> >> On Mar 16, 2013 5:18 PM, "Bjorn Danielsson" <
> >> >> bjorn-apache@lists.cuspycode.com> wrote:
> >> >>
> >> >> > I found the system property for hardwiring a different provider
> >> >> > for the IMAP protocol. Unfortunately that broke other things
> >> >> > because other javax.mail functions are still loaded from
> >> >> > geronimo-javamail, and there are incompatibilities (or bugs).
> >> >> >
> >> >> > I have managed to reproduce the problems in a standalone
> >> >> > program that can be run from the command-line and only depends
> >> >> > on Javamail. So maybe the OpenEJB list is the wrong forum for
> >> >> > this? But I'll share the link to the code here anyway:
> >> >> >
> >> >> > http://github.com/cuspycode/apache-stuff/tree/master/imaptest
> >> >> >
> >> >> > Anyway, for my TomEE webapp I put the Sun jar in tomee/endorsed.
> >> >> > This seems to make everything work without any bad side effects.
> >> >> >
> >> >> > --
> >> >> > Bjorn Danielsson
> >> >> > Cuspy Code AB
> >> >> >
> >> >> >
> >> >> > Romain Manni-Bucau <rm...@gmail.com> wrote:
> >> >> > > IIRC there is a system property to do so in the spec.
> >> >> > >
> >> >> > > If not just share a small sample wuth a servlet or so to qhiw it
> >> doesnt
> >> >> > > work and well make it work
> >> >> > > Le 15 mars 2013 17:42, "Bjorn Danielsson" <
> >> >> > bjorn-apache@lists.cuspycode.com>
> >> >> > > a écrit :
> >> >> > >
> >> >> > >> I have a webapp that works with Sun's (Oracle's) Javamail
> >> >> > >> implementation but not with the Geronimo Javamail that is
> >> >> > >> bundled with TomEE. Is there some way I can bundle the Sun
> >> >> > >> version in my webapp?
> >> >> > >>
> >> >> > >> I can make it work by fiddling with tomee/lib or tomee/endorsed,
> >> >> > >> but if it's at all possible I would prefer to just keep this
> >> >> > >> temporary workaround within the webapp itself.
> >> >> > >>
> >> >> > >> --
> >> >> > >> Bjorn Danielsson
> >> >> > >> Cuspy Code AB
> >> >> > >>
> >> >> >
> >> >>
> >>
>