Jay
Thanks, Here is my components.xml  file.

<?xml version="1.0" encoding="UTF-8"?>
<components xmlns="http://jboss.com/products/seam/components";
   xmlns:core="http://jboss.com/products/seam/core";
   xmlns:persistence="http://jboss.com/products/seam/persistence";
   xmlns:transaction="http://jboss.com/products/seam/transaction";
   xmlns:security="http://jboss.com/products/seam/security";
   xmlns:web="http://jboss.com/products/seam/web";
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
   xsi:schemaLocation="http://jboss.com/products/seam/core 
http://jboss.com/products/seam/core-2.0.xsd 
                 http://jboss.com/products/seam/persistence 
http://jboss.com/products/seam/persistence-2.0.xsd 
                 http://jboss.com/products/seam/security 
http://jboss.com/products/seam/security-2.0.xsd
                 http://jboss.com/products/seam/transaction 
http://jboss.com/products/seam/transaction-2.0.xsd
                 http://jboss.com/products/seam/web 
http://jboss.com/products/seam/web-2.0.xsd
                 http://jboss.com/products/seam/components 
http://jboss.com/products/seam/components-2.0.xsd";>
   
   <core:manager conversation-timeout="120000"
               concurrent-request-timeout="500"
               conversation-id-parameter="cid"/>
   
   <transaction:entity-transaction entity-manager="#{em}"/>
   
   <persistence:entity-manager-factory name="bookingDatabase"/>
   
   <persistence:managed-persistence-context name="em" auto-create="true"
                           entity-manager-factory="#{bookingDatabase}"/>
   
   <security:identity authenticate-method="#{authenticator.authenticate}"/>
   



I  don't have openJPA properties, all I doing in building the war and deploying 
it to websphere, if its mentioning about openJPA where do I check for that ?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4128119#4128119

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4128119
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to