[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-08-26 Thread Han Hong Fang (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12902769#action_12902769
 ] 

Han Hong Fang commented on GERONIMO-5553:
-

Related JIRA: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-671

> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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



[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-08-26 Thread Donald Woods (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12902980#action_12902980
 ] 

Donald Woods commented on GERONIMO-5553:


I decompiled your org.apache.sample.entities.Book.class and did not see that it 
had been enhanced.

In OpenJPA 2.0, we have turned RuntimeUnenhancedClasses off/unsupported by 
default (it was enabled in 1.0 and 1.2) -

http://openjpa.apache.org/builds/2.0.0/apache-openjpa-2.0.0/docs/manual/manual.html#openjpa.RuntimeUnenhancedClasses

To enable runtime enhancement (which we strongly discourage for production 
applications), you need to update your persistence.xml to set the following 
property -


. . .


The better solution, is to use build time enhancement, which can be done via 
ANT, Maven plugin or Eclipse plugin -
http://openjpa.apache.org/entity-enhancement.html



> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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



[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-08-26 Thread Kevan Miller (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12902990#action_12902990
 ] 

Kevan Miller commented on GERONIMO-5553:


Pre-compilation or special persistence.xml properties should not be required in 
this case. This sounds like a Geronimo problem which needs to be fixed. If 
Book.class is not being dynamically enhanced, then seems like something needs 
to be changed within Geronimo so that enhancement occurs.

> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
>Assignee: Donald Woods
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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



[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-08-26 Thread Donald Woods (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12903001#action_12903001
 ] 

Donald Woods commented on GERONIMO-5553:


Agree, the Javaagent code should work no matter what RuntimeUnenhancedClasses 
is set to.

After more digging, in 2.1.5 we used -
JAVA_AGENT_JAR="$GERONIMO_HOME/bin/jpa.jar"
but in 3.0, we are using -
JAVA_AGENT_JAR="$GERONIMO_HOME/lib/agent/transformer.jar"
and there is no jpa.jar anywhere to be found.

So, the real question is, where did jpa.jar go and how do we register OpenJPA 
with
framework/modules/geronimo-transformer/src/main/java/org/apache/geronimo/transformer/TransformerAgent.java
 ?


> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
>Assignee: Donald Woods
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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



[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-08-26 Thread Kevan Miller (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12903006#action_12903006
 ] 

Kevan Miller commented on GERONIMO-5553:


jpa.jar didn't contain any classes. Instead, MANIFEST.MF pointed to 
lib/geronimo-transformer-2.1.6.jar

So, I believe same basic structure is used in 2.x and 3.0. The OpenJPA 
javaagent still needs to get registered with the TransformerAgent. That may not 
be working properly in 3.0. Or there's some more fundamental issue... 

> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
>Assignee: Rick McGuire
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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



[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-08-26 Thread Jarek Gawor (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12903008#action_12903008
 ] 

Jarek Gawor commented on GERONIMO-5553:
---

OpenJPA agent gets registered with TransformerAgent via 
PersistenceUnitGBean$PersistenceUnitInfoImpl.addTransformer(). That method 
should be called by OpenJPA and it was the last time I looked at the code...




> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
>Assignee: Rick McGuire
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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



[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-08-26 Thread Jarek Gawor (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12903050#action_12903050
 ] 

Jarek Gawor commented on GERONIMO-5553:
---

Aries JPA code only kicks in if a war file is deployed as a wab, i.e. deployed 
as part of eba or installed via osgi:install webbundle:// command. 
I assume in this case the war file is deployed as a regular java ee 
application. So no need to worry about Aries JPA code.
 

> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
>Assignee: Rick McGuire
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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



[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-08-27 Thread Rick McGuire (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12903386#action_12903386
 ] 

Rick McGuire commented on GERONIMO-5553:


Could the solution to this be as simple as adding 
openjpa.RuntimeUnenhancedClasses supported to the property bundle we use when 
calling createContainerEntityManagerFactory()?  A cursory look at the openjpa 
code seems to suggest this is supported both in property and xml form. 

> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
>Assignee: Rick McGuire
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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



[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-08-27 Thread Donald Woods (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12903393#action_12903393
 ] 

Donald Woods commented on GERONIMO-5553:


I checked with Jeremy on the OpenJPA team yesterday and he agreed that the 
openjpa.RuntimeUnenhancedClasses property is ignored for the javaagent code and 
only used for dynamic runtime enhancement (subclassing), so setting that value 
in the EMF Map should not be required and is discouraged, as we tell OpenJPA 
users all the time NOT to use dynamic runtime enhancement.

For the javaagent, classLoadEnhancement=true is the default, which controls 
whether OpenJPA load-time class enhancement should be available in this JVM 
execution.

Starting in OpenJPA 2.0 - If a javaagent is not provided via the command line 
and OpenJPA is running on the Sun 1.6 SDK or IBM 1.6 JDK (SR8+), OpenJPA will 
attempt to dynamically load the runtime Enhancer. This support is provided as 
an ease of use feature and it is not recommended for use in a production 
system.  Setting the property openjpa.DynamicEnhancementAgent to false will 
disable this function.

When then dynamic enhancer is loaded, the following informational message is 
logged:
[java] jpa.enhancement  INFO   [main] openjpa.Runtime - OpenJPA dynamically 
loaded the class enhancer. Any classes that were not enhanced at build time 
will be enhanced when they are loaded by the JVM.

So, is another module (like a deployer, annotation scanner or Tomcat) possibly 
loading the classes before the OpenJPA GBean is being loaded and having a 
chance to register the TransformerAgent?


> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
>Assignee: Rick McGuire
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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



[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-08-27 Thread Donald Woods (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12903400#action_12903400
 ] 

Donald Woods commented on GERONIMO-5553:


In geronimo-transformer, the TransformerWrapper class is commented out and no 
longer used, but geronimo-persistence-jpa20 and geronimo-aries-jpa contains its 
own implementation of TransformerWrapper, which only calls the transformer if 
the provided classloader is an instance of BundleReference?  Is that the right 
behavior for geronimo-persistence-jpa20 for a WAR case, where it is not a 
Bundle? Seems okay for the Aries case...

public byte[] transform(ClassLoader loader, String className, Class 
classBeingRedefined, ProtectionDomain protectionDomain, byte[] classfileBuffer) 
throws IllegalClassFormatException {
if (loader instanceof BundleReference && ((BundleReference) 
loader).getBundle() == bundle) {
try {
return classTransformer.transform(loader, className, 
classBeingRedefined, protectionDomain, classfileBuffer);
} catch (IllegalClassFormatException e) {
throw e;
} catch (RuntimeException e) {
return null;
}
}
return null;
}


> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
>Assignee: Rick McGuire
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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



[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-08-27 Thread Jarek Gawor (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12903427#action_12903427
 ] 

Jarek Gawor commented on GERONIMO-5553:
---

First, let me correct something. Aries JPA kicks in when a bundle with 
Meta-Persistence header is deployed. So it's not really about application being 
deployed as a wab. Either way, however, Aries JPA will not be used when 
deploying a regular Java EE web application.

Second, everything is turned into a bundle during deployment so even a war 
module should have a classloader that implements the BundleReference interface. 
But this is probably good place to put a break point to see if transform() is 
being called.

Third, I know that JPA runtime enhancement is working fine in Geronimo for 
Aries applications at least because the testsuites/aries-testsuites/jpa tests 
are passing.


> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
>Assignee: Rick McGuire
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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



[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-08-27 Thread Donald Woods (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12903442#action_12903442
 ] 

Donald Woods commented on GERONIMO-5553:


OK, so this dual personality is really confusing...  Looking back at ARIES-320, 
you added and them removed code to enable the javaagent support and instead in 
geronimo-aries-jpa created "GeronimoManagedPersistenceUnitInfoFactory extends 
ManagedPersistenceUnitInfoFactoryImpl".  How did this enable the javaagent for 
Aries apps???

Guess I'm wondering, if the app is being loaded as a bundle, is OpenJPA being 
loaded as a bundle?  We have tons of places in OpenJPA where we're looking up 
classloaders, but only one place (broker factory creation) that we try to use 
the bundle context if available (which was OPENJPA-1491 for Aries.)  So, if the 
OpenJPA transformer uses the bundle context, what is the runtime using and are 
we seeing two copies of the class, one enhanced and one not?


> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
>Assignee: Rick McGuire
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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



[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-08-27 Thread Jarek Gawor (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12903453#action_12903453
 ] 

Jarek Gawor commented on GERONIMO-5553:
---

Once again, the Aries JPA is not used in this case. So no need to worry about 
it. But if you are interested, this works in exactly the same way as it works 
for regular Java EE apps. OpenJPA calls PersistenceUntInfo.addTransfomer() 
which then registers the transformer with the agent which later on causes the 
enhancement to be done. 

Everything is a bundle in Geronimo 3.0. I'm pretty sure the PU provides the 
classloader it wants to use via PersistenceUnitInfo.getClassLoader().


> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
>Assignee: Rick McGuire
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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



[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-08-27 Thread Lin Sun (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12903529#action_12903529
 ] 

Lin Sun commented on GERONIMO-5553:
---

Hi

After some initial investigate, it turned out to be a user error in 
persistence.xml.   The class should be:

 org.apache.sample.entities.Book

while the one in the attached war has it configured as 
org.apache.geronimo.sample.entities.Book

This is causing the entity enhancement error as it was tried to enhance the 
wrong class.

After I made the above change, I am not seeing the entity didn't enhance error. 
 

P.S. This user case (a PU in war file) has to be a war file.  If it is a WAB, 
it won't work, as the aries JPA doesn't support PU in WAB.

Please advise if this answer is satisfactory.  If so, you may close the bug.

Thanks

Lin

> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
>Assignee: Rick McGuire
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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



[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-08-27 Thread Donald Woods (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12903635#action_12903635
 ] 

Donald Woods commented on GERONIMO-5553:


Thanks Lin.  I missed that.
But, this was unexpected behavior for OpenJPA due to Geronimo using the 
javaagent, which only enhances the classes listed in the persistence.xml 
whereas the dynamic enhancer will find other classes to enhance unless 
 is specified.  If no classes are specified, then all 
of the classes will get enhanced whether the dynamic or javaagent methods are 
used.  So, we have a difference in enhancement behavior here


> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
>Assignee: Rick McGuire
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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



[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-08-30 Thread Rick McGuire (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12904118#action_12904118
 ] 

Rick McGuire commented on GERONIMO-5553:


What criteria would be used by the dynamic enhancer to discover and enhance 
this class?  If it's not being done by the javaagent, when would that discovery 
be performed?

> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
>Assignee: Rick McGuire
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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



[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-08-30 Thread Rick McGuire (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12904141#action_12904141
 ] 

Rick McGuire commented on GERONIMO-5553:


I did a little experimentation on this, and I believe this is probably working 
the way it was intended.  Debugging the geronimo transformer wrapper, I'm 
seeing the transformer getting called on the Book class and all other classes 
of this application, so it looks like the javaagent hook is working correctly. 

I deployed this application on 2.2 to see what would happen, and it gave a 
similar (but different) error, which leads me to believe this really can be 
closed: 

 org.apache.openjpa.persistence.A
rgumentException: No metadata was found for type "class org.apache.sample.entiti
es.Book". The class does not appear in the list of persistent types: [org.apache
.geronimo.sample.entities.Book].
at org.apache.openjpa.meta.MetaDataRepository.getMetaData(MetaDataReposi
tory.java:303)
at org.apache.openjpa.kernel.BrokerImpl.persist(BrokerImpl.java:2426)
at org.apache.openjpa.kernel.BrokerImpl.persist(BrokerImpl.java:2280)
at org.apache.openjpa.kernel.DelegatingBroker.persist(DelegatingBroker.j
ava:1021)
at org.apache.openjpa.persistence.EntityManagerImpl.persist(EntityManage
rImpl.java:645)
at org.apache.sample.bean.Facade.createBook(Facade.java:21)
at org.apache.sample.action.AddBook.doPost(AddBook.java:48)
at org.apache.sample.action.AddBook.doGet(AddBook.java:33)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:693)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:806)



> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
>Assignee: Rick McGuire
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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



[jira] Commented: (GERONIMO-5553) Fail to enchance entities on Geronimo

2010-09-02 Thread Donald Woods (JIRA)

[ 
https://issues.apache.org/jira/browse/GERONIMO-5553?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12905625#action_12905625
 ] 

Donald Woods commented on GERONIMO-5553:


Reply to the 8/30 questions about enhancer, which dup my 8/27 comments  
When a list of classes is handed to the javaagent, then it will only enhance 
those classes, but when no class list is given it will discover all classes to 
enhance.  When the 1.6 JVM's Attach API is used (new in OpenJPA 2.0) to 
dynamically load the OpenJPA enhancer agent, then the class list is used AND 
any other classes to enhance are discovered unless  
is specified in the PU.

So, I'll opened OPENJPA-1780 to request that the javaagent behave the same as 
the dynamic loader


> Fail to enchance entities on Geronimo
> -
>
> Key: GERONIMO-5553
> URL: https://issues.apache.org/jira/browse/GERONIMO-5553
> Project: Geronimo
>  Issue Type: Bug
>  Security Level: public(Regular issues) 
>  Components: persistence
>Affects Versions: 3.0
> Environment: OS:win xp
> Geronimo :3.0 20100824 build
>Reporter: Lu Jiang
>Assignee: Rick McGuire
> Fix For: 3.0
>
> Attachments: booknew.war
>
>
> I tried to deploy a simple jpa sample on geronimo.But when persist data into 
> database.
> Following exception will occur.
>  
> org.apache.openjpa.persistence.ArgumentException: Attempt to cast instance 
> "org.apache.sample.entities.b...@97781f" to PersistenceCapable failed.  
> Ensure that it has been enhanced.
> FailedObject: org.apache.sample.entities.b...@97781f

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