Re: how to disable toplink?

2006-11-27 Thread Craig L Russell

Hi Roger,

Sorry for the late reply; I'm traveling.

On Nov 22, 2006, at 9:41 PM, roger.keays wrote:




Craig L Russell wrote:


The issue with this is in Persistence. The results of finding the
services the very first time is cached in a static variable. The only
way I can see to make this work is to use your own version of
Persistence that is also deployed in your WAR file. If you use the
Persistence.class that is shared in the server, you can never see the
provider in your WAR file. So you would have to use the non-
delegating WAR file loader along with your own copy of the
persistence.jar that contains Persistence.class.

That was my original plan, but it seems that you can't actually do  
this

since, according to SRV2.4 #9.7.2:
servlet containers that are part of a J2EE product should not  
allow the

application to
override J2SE or J2EE platform classes, such as those in java.* and  
javax.*

namespaces, that either J2SE or J2EE do not allow to be modified.

So the container is right to load it's own Persistence.class  
instead of

yours,


As far as I've understood, the Servlet container is specifically  
exempted from the general requirement, so applications can load  
earlier versions (or specific versions) of platform classes. That's  
so an application can actually depend on the behavior of a version of  
e.g. JAXB that is no longer current.



and the only correct way is to install the persistence provider into
the container itself. Unless of course you just...

PersistenceProvider provider = new
org.apache.openjpa.persistence.PersistenceProviderImpl();
EntityManagerFactory emf = provider.createEntityManagerFactory 
(default);


:)

(note, I'm not using dependency injection here)


This should work, but inappropriately binds your application to  
OpenJPA, which I thought you were trying to avoid. And this approach  
does not work at all if you want to use the container to inject  
resources.


So, IMHO we either have to have a new Persistence.class loaded by the  
servlet container; OR we have a bug in the Persistence implementation.


It might be a good idea at this time to raise this issue on the  
[EMAIL PROTECTED] alias and see if the  
implementation team has any comments. You can also send comments to  
[EMAIL PROTECTED] for expert group responses in case the  
current spec is inadequate to resolve this issue.


Craig





If you use the server's JNDI lookup, or put the OpenJPA jar file into
the server's shared library, you should be able to avoid this issue.

Craig

On Nov 22, 2006, at 10:58 AM, Patrick Linskey wrote:


My read of the spec is that while this deployment isn't explicitly
called out, it certainly is strongly implied, and at the very  
least an
appserver should provide clear instructions for how to deploy  
OpenJPA

for use in such an environment.

-Patrick

--
Patrick Linskey
BEA Systems, Inc.

 
__

_
Notice:  This email message, together with any attachments, may
contain
information  of  BEA Systems,  Inc.,  its subsidiaries  and
affiliated
entities,  that may be confidential,  proprietary,  copyrighted
and/or
legally privileged, and is intended solely for the use of the
individual
or entity named in this message. If you are not the intended
recipient,
and have received this message in error, please immediately return
this
by email and then delete it.


-Original Message-
From: Marc Prud'hommeaux [mailto:[EMAIL PROTECTED] On
Behalf Of Marc Prud'hommeaux
Sent: Tuesday, November 21, 2006 11:25 PM
To: open-jpa-dev@incubator.apache.org
Subject: Re: how to disable toplink?

Roger-

What happens if you put the OpenJPA jars and dependencies in the
system classpath of the container? Does it work then?

If so, then that might be the only solution, currently. IIRC, the
spec doesn't say anything about allowing JPA implementations
themselves to be bundled into WARs or EARs, so there might no be  
any

generic way to do so (which isn't to say that it's impossible; it
might just require some container-specific glue to make it work).


On Nov 21, 2006, at 11:59 PM, roger.keays wrote:



Is anybody aware of an effective way to ensure that the openjpa  
jars

distributed in a WAR are used for the persistence

implementation? I

have
tried


providerorg.apache.openjpa.persistence.PersistenceProviderImpl/
provider

in persistence.xml, and




javax.persistence.spi.PersistenceProvider=org.apache.openjpa.p
ersisten

ce.PersistenceProviderImpl

in the emf properties map but neither appear to work. This problem
occurs
when deploying to Glassfish, oc4j and (to a lesser extent) Resin
(resin
provides a buggy ejb30.jar). It seems to be a classloading

problem,

because
these containers load the Persistence.class from their own lib
instead of
the webapp's. Since that class can't find openjpa, it just falls
back to
toplink. I had expected the webapp's classes to be loaded in
preference to
the containers though.

Any

Re: how to disable toplink?

2006-11-22 Thread Marc Prud'hommeaux

Roger-

I think the first step would be to get it working in glassfish when  
deployed globally, and then move from there to seeing if it is  
possible to deploy it within a WAR.


What is the error you get (if any) if you deploy globally? The  
following persistence.xml worked the last time I tried it:


persistence xmlns=http://java.sun.com/xml/ns/persistence;  
version=1.0

persistence-unit name=pu1
 
providerorg.apache.openjpa.persistence.PersistenceProviderImpl/ 
provider

jta-data-sourcejdbc/__default/jta-data-source
properties
property name=openjpa.Log value=DefaultLevel=TRACE/
property name=openjpa.jdbc.SynchronizeMappings  
value=buildSchema/

/properties
/persistence-unit
/persistence




On Nov 22, 2006, at 2:57 AM, roger.keays wrote:



Hi Marc,

Marc Prud wrote:


What happens if you put the OpenJPA jars and dependencies in the
system classpath of the container? Does it work then?


I did try this unsuccessfully on glassfish, although some people have
reported that they can get this to work. I'm really looking for a  
solution

that doesn't require the user to hack their container though.

Roger




If so, then that might be the only solution, currently. IIRC, the
spec doesn't say anything about allowing JPA implementations
themselves to be bundled into WARs or EARs, so there might no be any
generic way to do so (which isn't to say that it's impossible; it
might just require some container-specific glue to make it work).


On Nov 21, 2006, at 11:59 PM, roger.keays wrote:



Is anybody aware of an effective way to ensure that the openjpa jars
distributed in a WAR are used for the persistence implementation? I
have
tried


providerorg.apache.openjpa.persistence.PersistenceProviderImpl/
provider

in persistence.xml, and


javax.persistence.spi.PersistenceProvider=org.apache.openjpa.persist 
en

ce.PersistenceProviderImpl

in the emf properties map but neither appear to work. This problem
occurs
when deploying to Glassfish, oc4j and (to a lesser extent) Resin
(resin
provides a buggy ejb30.jar). It seems to be a classloading problem,
because
these containers load the Persistence.class from their own lib
instead of
the webapp's. Since that class can't find openjpa, it just falls
back to
toplink. I had expected the webapp's classes to be loaded in
preference to
the containers though.

Any suggestions?

Roger


--
View this message in context: http://www.nabble.com/how-to-disable-
toplink--tf2683540.html#a7485258
Sent from the open-jpa-dev mailing list archive at Nabble.com.







--
View this message in context: http://www.nabble.com/how-to-disable- 
toplink--tf2683540.html#a7486568

Sent from the open-jpa-dev mailing list archive at Nabble.com.





Re: how to disable toplink?

2006-11-22 Thread Don Brady
Just to note that we have both Toplink and OpenJPA deployed entirely 
inside a single EAR file under WebSphere 6.1.(which is Java 5 but J2EE 4).


We can switch it back and forth between Toplink and OpenJPA modes of 
operation, without regenerating the EAR, as follows.


- change the provider name in persistence.xml.
- leave both  toplink-essentials.jar and the openjpa jars in the root 
of the ear at all times
- to run in openjpa mode, just update the provider name persistence.xml 
and in remove the dependency (manifest classpath entry) for 
toplink-essentials
- it is not necessary to remove the dependencies on the openjpa jars 
when running under toplink.

- it is not necessary to ever change any build paths or rebuild

The reason that it is necessary to remove the dependency (classpath 
entry) for toplink when operating in openjpa mode is that otherwise 
toplink briefly gets control when openjpa enumerates the providers, and 
at that point toplink gets fatal exceptions because it is not the 
provider in persistence.xml.


When running in toplink mode, toplink enumerates the openjpa provider 
but openjpa returns control nicely and does nothing when it sees that it 
has nothing to do!


Incidentally, this is somewhat past tense for us because we have now 
switched to standard operation on OpenJPA and find it superior. So we 
may soon remove the toplink-essentials jar altogether.


Don









Marc Prud'hommeaux wrote:

Roger-

I think the first step would be to get it working in glassfish when 
deployed globally, and then move from there to seeing if it is 
possible to deploy it within a WAR.


What is the error you get (if any) if you deploy globally? The 
following persistence.xml worked the last time I tried it:


persistence xmlns=http://java.sun.com/xml/ns/persistence; 
version=1.0

persistence-unit name=pu1

providerorg.apache.openjpa.persistence.PersistenceProviderImpl/provider 


jta-data-sourcejdbc/__default/jta-data-source
properties
property name=openjpa.Log value=DefaultLevel=TRACE/
property name=openjpa.jdbc.SynchronizeMappings 
value=buildSchema/

/properties
/persistence-unit
/persistence




On Nov 22, 2006, at 2:57 AM, roger.keays wrote:



Hi Marc,

Marc Prud wrote:


What happens if you put the OpenJPA jars and dependencies in the
system classpath of the container? Does it work then?


I did try this unsuccessfully on glassfish, although some people have
reported that they can get this to work. I'm really looking for a 
solution

that doesn't require the user to hack their container though.

Roger




If so, then that might be the only solution, currently. IIRC, the
spec doesn't say anything about allowing JPA implementations
themselves to be bundled into WARs or EARs, so there might no be any
generic way to do so (which isn't to say that it's impossible; it
might just require some container-specific glue to make it work).


On Nov 21, 2006, at 11:59 PM, roger.keays wrote:



Is anybody aware of an effective way to ensure that the openjpa jars
distributed in a WAR are used for the persistence implementation? I
have
tried


providerorg.apache.openjpa.persistence.PersistenceProviderImpl/
provider

in persistence.xml, and


javax.persistence.spi.PersistenceProvider=org.apache.openjpa.persisten
ce.PersistenceProviderImpl

in the emf properties map but neither appear to work. This problem
occurs
when deploying to Glassfish, oc4j and (to a lesser extent) Resin
(resin
provides a buggy ejb30.jar). It seems to be a classloading problem,
because
these containers load the Persistence.class from their own lib
instead of
the webapp's. Since that class can't find openjpa, it just falls
back to
toplink. I had expected the webapp's classes to be loaded in
preference to
the containers though.

Any suggestions?

Roger


--View this message in context: http://www.nabble.com/how-to-disable-
toplink--tf2683540.html#a7485258
Sent from the open-jpa-dev mailing list archive at Nabble.com.







--View this message in context: 
http://www.nabble.com/how-to-disable-toplink--tf2683540.html#a7486568

Sent from the open-jpa-dev mailing list archive at Nabble.com.







Re: how to disable toplink?

2006-11-22 Thread Craig L Russell
I looked at the code in  
javax.persistence.Persistence.createEntityManagerFactory and it  
iterates the META-INF/services/ 
javax.persistence.spi.PersistenceProvider using the context class  
loader.


So, first assumption: you are using the  
Persistence.createEntityManagerFactory method in your servlet init  
method to locate the EMF.


The issue with this is in Persistence. The results of finding the  
services the very first time is cached in a static variable. The only  
way I can see to make this work is to use your own version of  
Persistence that is also deployed in your WAR file. If you use the  
Persistence.class that is shared in the server, you can never see the  
provider in your WAR file. So you would have to use the non- 
delegating WAR file loader along with your own copy of the  
persistence.jar that contains Persistence.class.


If you use the server's JNDI lookup, or put the OpenJPA jar file into  
the server's shared library, you should be able to avoid this issue.


Craig

On Nov 22, 2006, at 10:58 AM, Patrick Linskey wrote:


My read of the spec is that while this deployment isn't explicitly
called out, it certainly is strongly implied, and at the very least an
appserver should provide clear instructions for how to deploy OpenJPA
for use in such an environment.

-Patrick

--
Patrick Linskey
BEA Systems, Inc.

__ 
_
Notice:  This email message, together with any attachments, may  
contain
information  of  BEA Systems,  Inc.,  its subsidiaries  and   
affiliated
entities,  that may be confidential,  proprietary,  copyrighted   
and/or
legally privileged, and is intended solely for the use of the  
individual
or entity named in this message. If you are not the intended  
recipient,
and have received this message in error, please immediately return  
this

by email and then delete it.


-Original Message-
From: Marc Prud'hommeaux [mailto:[EMAIL PROTECTED] On
Behalf Of Marc Prud'hommeaux
Sent: Tuesday, November 21, 2006 11:25 PM
To: open-jpa-dev@incubator.apache.org
Subject: Re: how to disable toplink?

Roger-

What happens if you put the OpenJPA jars and dependencies in the
system classpath of the container? Does it work then?

If so, then that might be the only solution, currently. IIRC, the
spec doesn't say anything about allowing JPA implementations
themselves to be bundled into WARs or EARs, so there might no be any
generic way to do so (which isn't to say that it's impossible; it
might just require some container-specific glue to make it work).


On Nov 21, 2006, at 11:59 PM, roger.keays wrote:



Is anybody aware of an effective way to ensure that the openjpa jars
distributed in a WAR are used for the persistence

implementation? I

have
tried


providerorg.apache.openjpa.persistence.PersistenceProviderImpl/
provider

in persistence.xml, and




javax.persistence.spi.PersistenceProvider=org.apache.openjpa.p
ersisten

ce.PersistenceProviderImpl

in the emf properties map but neither appear to work. This problem
occurs
when deploying to Glassfish, oc4j and (to a lesser extent) Resin
(resin
provides a buggy ejb30.jar). It seems to be a classloading

problem,

because
these containers load the Persistence.class from their own lib
instead of
the webapp's. Since that class can't find openjpa, it just falls
back to
toplink. I had expected the webapp's classes to be loaded in
preference to
the containers though.

Any suggestions?

Roger


--
View this message in context: http://www.nabble.com/how-to-disable-
toplink--tf2683540.html#a7485258
Sent from the open-jpa-dev mailing list archive at Nabble.com.






Craig Russell
Architect, Sun Java Enterprise System http://java.sun.com/products/jdo
408 276-5638 mailto:[EMAIL PROTECTED]
P.S. A good JDO? O, Gasp!



smime.p7s
Description: S/MIME cryptographic signature


Re: how to disable toplink?

2006-11-22 Thread roger.keays


Craig L Russell wrote:
 
 The issue with this is in Persistence. The results of finding the  
 services the very first time is cached in a static variable. The only  
 way I can see to make this work is to use your own version of  
 Persistence that is also deployed in your WAR file. If you use the  
 Persistence.class that is shared in the server, you can never see the  
 provider in your WAR file. So you would have to use the non- 
 delegating WAR file loader along with your own copy of the  
 persistence.jar that contains Persistence.class.
 
That was my original plan, but it seems that you can't actually do this
since, according to SRV2.4 #9.7.2:
servlet containers that are part of a J2EE product should not allow the
application to
override J2SE or J2EE platform classes, such as those in java.* and javax.*
namespaces, that either J2SE or J2EE do not allow to be modified.

So the container is right to load it's own Persistence.class instead of
yours, and the only correct way is to install the persistence provider into
the container itself. Unless of course you just...

PersistenceProvider provider = new
org.apache.openjpa.persistence.PersistenceProviderImpl();
EntityManagerFactory emf = provider.createEntityManagerFactory(default);

:)

(note, I'm not using dependency injection here)



 If you use the server's JNDI lookup, or put the OpenJPA jar file into  
 the server's shared library, you should be able to avoid this issue.
 
 Craig
 
 On Nov 22, 2006, at 10:58 AM, Patrick Linskey wrote:
 
 My read of the spec is that while this deployment isn't explicitly
 called out, it certainly is strongly implied, and at the very least an
 appserver should provide clear instructions for how to deploy OpenJPA
 for use in such an environment.

 -Patrick

 -- 
 Patrick Linskey
 BEA Systems, Inc.

 __ 
 _
 Notice:  This email message, together with any attachments, may  
 contain
 information  of  BEA Systems,  Inc.,  its subsidiaries  and   
 affiliated
 entities,  that may be confidential,  proprietary,  copyrighted   
 and/or
 legally privileged, and is intended solely for the use of the  
 individual
 or entity named in this message. If you are not the intended  
 recipient,
 and have received this message in error, please immediately return  
 this
 by email and then delete it.

 -Original Message-
 From: Marc Prud'hommeaux [mailto:[EMAIL PROTECTED] On
 Behalf Of Marc Prud'hommeaux
 Sent: Tuesday, November 21, 2006 11:25 PM
 To: open-jpa-dev@incubator.apache.org
 Subject: Re: how to disable toplink?

 Roger-

 What happens if you put the OpenJPA jars and dependencies in the
 system classpath of the container? Does it work then?

 If so, then that might be the only solution, currently. IIRC, the
 spec doesn't say anything about allowing JPA implementations
 themselves to be bundled into WARs or EARs, so there might no be any
 generic way to do so (which isn't to say that it's impossible; it
 might just require some container-specific glue to make it work).


 On Nov 21, 2006, at 11:59 PM, roger.keays wrote:


 Is anybody aware of an effective way to ensure that the openjpa jars
 distributed in a WAR are used for the persistence
 implementation? I
 have
 tried


 providerorg.apache.openjpa.persistence.PersistenceProviderImpl/
 provider

 in persistence.xml, and



 javax.persistence.spi.PersistenceProvider=org.apache.openjpa.p
 ersisten
 ce.PersistenceProviderImpl

 in the emf properties map but neither appear to work. This problem
 occurs
 when deploying to Glassfish, oc4j and (to a lesser extent) Resin
 (resin
 provides a buggy ejb30.jar). It seems to be a classloading
 problem,
 because
 these containers load the Persistence.class from their own lib
 instead of
 the webapp's. Since that class can't find openjpa, it just falls
 back to
 toplink. I had expected the webapp's classes to be loaded in
 preference to
 the containers though.

 Any suggestions?

 Roger


 -- 
 View this message in context: http://www.nabble.com/how-to-disable-
 toplink--tf2683540.html#a7485258
 Sent from the open-jpa-dev mailing list archive at Nabble.com.



 
 Craig Russell
 Architect, Sun Java Enterprise System http://java.sun.com/products/jdo
 408 276-5638 mailto:[EMAIL PROTECTED]
 P.S. A good JDO? O, Gasp!
 
 
  
 

-- 
View this message in context: 
http://www.nabble.com/how-to-disable-toplink--tf2683540.html#a7500820
Sent from the open-jpa-dev mailing list archive at Nabble.com.



how to disable toplink?

2006-11-21 Thread roger.keays

Is anybody aware of an effective way to ensure that the openjpa jars
distributed in a WAR are used for the persistence implementation? I have
tried 

 
providerorg.apache.openjpa.persistence.PersistenceProviderImpl/provider

in persistence.xml, and

 
javax.persistence.spi.PersistenceProvider=org.apache.openjpa.persistence.PersistenceProviderImpl

in the emf properties map but neither appear to work. This problem occurs
when deploying to Glassfish, oc4j and (to a lesser extent) Resin (resin
provides a buggy ejb30.jar). It seems to be a classloading problem, because
these containers load the Persistence.class from their own lib instead of
the webapp's. Since that class can't find openjpa, it just falls back to
toplink. I had expected the webapp's classes to be loaded in preference to
the containers though.

Any suggestions?

Roger


-- 
View this message in context: 
http://www.nabble.com/how-to-disable-toplink--tf2683540.html#a7485258
Sent from the open-jpa-dev mailing list archive at Nabble.com.



Re: how to disable toplink?

2006-11-21 Thread Marc Prud'hommeaux

Roger-

What happens if you put the OpenJPA jars and dependencies in the  
system classpath of the container? Does it work then?


If so, then that might be the only solution, currently. IIRC, the  
spec doesn't say anything about allowing JPA implementations  
themselves to be bundled into WARs or EARs, so there might no be any  
generic way to do so (which isn't to say that it's impossible; it  
might just require some container-specific glue to make it work).



On Nov 21, 2006, at 11:59 PM, roger.keays wrote:



Is anybody aware of an effective way to ensure that the openjpa jars
distributed in a WAR are used for the persistence implementation? I  
have

tried


providerorg.apache.openjpa.persistence.PersistenceProviderImpl/ 
provider


in persistence.xml, and


javax.persistence.spi.PersistenceProvider=org.apache.openjpa.persisten 
ce.PersistenceProviderImpl


in the emf properties map but neither appear to work. This problem  
occurs
when deploying to Glassfish, oc4j and (to a lesser extent) Resin  
(resin
provides a buggy ejb30.jar). It seems to be a classloading problem,  
because
these containers load the Persistence.class from their own lib  
instead of
the webapp's. Since that class can't find openjpa, it just falls  
back to
toplink. I had expected the webapp's classes to be loaded in  
preference to

the containers though.

Any suggestions?

Roger


--
View this message in context: http://www.nabble.com/how-to-disable- 
toplink--tf2683540.html#a7485258

Sent from the open-jpa-dev mailing list archive at Nabble.com.





Re: how to disable toplink?

2006-11-21 Thread roger.keays

Hi Marc,

Marc Prud wrote:
 
 What happens if you put the OpenJPA jars and dependencies in the  
 system classpath of the container? Does it work then?
 
I did try this unsuccessfully on glassfish, although some people have
reported that they can get this to work. I'm really looking for a solution
that doesn't require the user to hack their container though.

Roger



 If so, then that might be the only solution, currently. IIRC, the  
 spec doesn't say anything about allowing JPA implementations  
 themselves to be bundled into WARs or EARs, so there might no be any  
 generic way to do so (which isn't to say that it's impossible; it  
 might just require some container-specific glue to make it work).
 
 
 On Nov 21, 2006, at 11:59 PM, roger.keays wrote:
 

 Is anybody aware of an effective way to ensure that the openjpa jars
 distributed in a WAR are used for the persistence implementation? I  
 have
 tried


 providerorg.apache.openjpa.persistence.PersistenceProviderImpl/ 
 provider

 in persistence.xml, and


 javax.persistence.spi.PersistenceProvider=org.apache.openjpa.persisten 
 ce.PersistenceProviderImpl

 in the emf properties map but neither appear to work. This problem  
 occurs
 when deploying to Glassfish, oc4j and (to a lesser extent) Resin  
 (resin
 provides a buggy ejb30.jar). It seems to be a classloading problem,  
 because
 these containers load the Persistence.class from their own lib  
 instead of
 the webapp's. Since that class can't find openjpa, it just falls  
 back to
 toplink. I had expected the webapp's classes to be loaded in  
 preference to
 the containers though.

 Any suggestions?

 Roger


 -- 
 View this message in context: http://www.nabble.com/how-to-disable- 
 toplink--tf2683540.html#a7485258
 Sent from the open-jpa-dev mailing list archive at Nabble.com.

 
 
 

-- 
View this message in context: 
http://www.nabble.com/how-to-disable-toplink--tf2683540.html#a7486568
Sent from the open-jpa-dev mailing list archive at Nabble.com.