You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@openjpa.apache.org by bongosdude <bo...@gmail.com> on 2009/02/10 18:36:57 UTC

Problem with multi persistence units

I defined two persistence units in my persistence.xml to connect to two
different databases (one is MySQL and other to MS SQL) like below

<persistence xmlns="http://java.sun.com/xml/ns/persistence"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
version="1.0"
             xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
    <persistence-unit name="CallingCardUsersUnit">
        <description>Entity Beans to db1</description>
       
<provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
        <non-jta-data-source>db_users_notx</non-jta-data-source>
		<class>com.xyz.services.app.model.entity.users.User</class>
		<class>com.xyz.services.app.model.entity.users.UserRole</class>
		<class>com.xyz.services.app.model.entity.users.UserAccount</class>
		<properties>
			<property name="/tmp/openjpa.log" value="SQL=TRACE" />
		</properties>
    </persistence-unit>
    
    <persistence-unit name="DigittalkUnit">
        <description>Entity Beans for db2</description>
       
<provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
        <non-jta-data-source>billing_notx</non-jta-data-source>
        <class>com.xyz.services.app.model.entity.billing.BUser</class>
        <class>com.xyz.services.app.model.entity.billing.BAccount</class>
		<properties>
			<property name="/tmp/openjpa.log" value="SQL=TRACE" />
		</properties>
    </persistence-unit>
    
    
</persistence>


When my app first starts up and runs, I need to access entity
com.xyz.services.app.model.entity.users.User, JPA tries to load entiry
com.xyz.services.app.model.entity.users.User and then it tries to create
table BUser and BAccount in the first persistence unit. BUser and BAccount
are listed in second persistence unit. Also, BUser and BAccount are mapped
to existing tables in second persistence unit.

Can someone help me since I do not understand why it happens. Also, How can
I turn of the auto create table. 

Thanks
-B
-- 
View this message in context: http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2303818.html
Sent from the OpenJPA Users mailing list archive at Nabble.com.


Re: Problem with multi persistence units

Posted by David Jencks <da...@yahoo.com>.
On Feb 12, 2009, at 8:29 AM, Kevin Sutter wrote:

> On Thu, Feb 12, 2009 at 9:48 AM, Kevan Miller  
> <ke...@gmail.com> wrote:
>
> On Feb 12, 2009, at 9:08 AM, Kevin Sutter wrote:
>
> No idea where the MetaDataFactory setting is coming from. Don't see  
> it being set by either Geronimo or OpenEJB. You sure this is not  
> being set by OpenJPA?
>
> Based on the content of the property value, I doubt that OpenJPA  
> would know the structure of the Geronimo artifacts...  Somebody is  
> passing that value into OpenJPA.  Unless there's a new undocumented  
> feature that I am not aware of...  :-)
>
> openjpa.MetaDataFactory:
> jpa(Files=/usr/local/geronimo-tomcat6-javaee5-2.1.3/
> repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/ 
> callingcard-ejb.jar)

I would say that that's the implicit content of the jar-files field in  
PersistenceUnit which an ee container is required to fill in with the  
actual locations of the jars to be searched if exclude-unlisted- 
classes is off.  I'd guess that openjpa internally uses a jdo friendly  
name rather than a jpa friendly name due to its history.

thanks
david jencks

>
>
>
>
> --kevan
>


Re: Problem with multi persistence units

Posted by David Jencks <da...@yahoo.com>.
On Feb 12, 2009, at 8:29 AM, Kevin Sutter wrote:

> On Thu, Feb 12, 2009 at 9:48 AM, Kevan Miller  
> <ke...@gmail.com> wrote:
>
> On Feb 12, 2009, at 9:08 AM, Kevin Sutter wrote:
>
> No idea where the MetaDataFactory setting is coming from. Don't see  
> it being set by either Geronimo or OpenEJB. You sure this is not  
> being set by OpenJPA?
>
> Based on the content of the property value, I doubt that OpenJPA  
> would know the structure of the Geronimo artifacts...  Somebody is  
> passing that value into OpenJPA.  Unless there's a new undocumented  
> feature that I am not aware of...  :-)
>
> openjpa.MetaDataFactory:
> jpa(Files=/usr/local/geronimo-tomcat6-javaee5-2.1.3/
> repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/ 
> callingcard-ejb.jar)

I would say that that's the implicit content of the jar-files field in  
PersistenceUnit which an ee container is required to fill in with the  
actual locations of the jars to be searched if exclude-unlisted- 
classes is off.  I'd guess that openjpa internally uses a jdo friendly  
name rather than a jpa friendly name due to its history.

thanks
david jencks

>
>
>
>
> --kevan
>


Re: Problem with multi persistence units

Posted by Kevin Sutter <kw...@gmail.com>.
On Thu, Feb 12, 2009 at 9:48 AM, Kevan Miller <ke...@gmail.com>wrote:

>
> On Feb 12, 2009, at 9:08 AM, Kevin Sutter wrote:
>
> No idea where the MetaDataFactory setting is coming from. Don't see it
> being set by either Geronimo or OpenEJB. You sure this is not being set by
> OpenJPA?


Based on the content of the property value, I doubt that OpenJPA would know
the structure of the Geronimo artifacts...  Somebody is passing that value
into OpenJPA.  Unless there's a new undocumented feature that I am not aware
of...  :-)

openjpa.MetaDataFactory:
jpa(Files=/usr/local/geronimo-tomcat6-javaee5-2.1.3/
repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar)


>
>
> --kevan
>

Re: Problem with multi persistence units

Posted by Kevin Sutter <kw...@gmail.com>.
On Thu, Feb 12, 2009 at 9:48 AM, Kevan Miller <ke...@gmail.com>wrote:

>
> On Feb 12, 2009, at 9:08 AM, Kevin Sutter wrote:
>
> No idea where the MetaDataFactory setting is coming from. Don't see it
> being set by either Geronimo or OpenEJB. You sure this is not being set by
> OpenJPA?


Based on the content of the property value, I doubt that OpenJPA would know
the structure of the Geronimo artifacts...  Somebody is passing that value
into OpenJPA.  Unless there's a new undocumented feature that I am not aware
of...  :-)

openjpa.MetaDataFactory:
jpa(Files=/usr/local/geronimo-tomcat6-javaee5-2.1.3/
repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar)


>
>
> --kevan
>

Re: Problem with multi persistence units

Posted by Kevan Miller <ke...@gmail.com>.
On Feb 12, 2009, at 9:08 AM, Kevin Sutter wrote:

> I'm not a Geronimo expert.  If they are passing in these arguments,  
> then it
> must be for some reason.  And, turning them off manually (override)  
> probably
> would just surface problems from another area.  I'll cross post this
> question to the Geronimo users forum to see if you get any bites over
> there...

Bongosdude had already posted on our user list.

SynchronizeMappings is a defaulted by Geronimo. That behavior is  
customizable and simple to turn off in your persistence.xml:

         <properties>
             <property name="openjpa.jdbc.SynchronizeMappings"  
value="false"/>
         </properties>


No idea where the MetaDataFactory setting is coming from. Don't see it  
being set by either Geronimo or OpenEJB. You sure this is not being  
set by OpenJPA?

--kevan

Re: Problem with multi persistence units

Posted by Kevan Miller <ke...@gmail.com>.
On Feb 12, 2009, at 9:08 AM, Kevin Sutter wrote:

> I'm not a Geronimo expert.  If they are passing in these arguments,  
> then it
> must be for some reason.  And, turning them off manually (override)  
> probably
> would just surface problems from another area.  I'll cross post this
> question to the Geronimo users forum to see if you get any bites over
> there...

Bongosdude had already posted on our user list.

SynchronizeMappings is a defaulted by Geronimo. That behavior is  
customizable and simple to turn off in your persistence.xml:

         <properties>
             <property name="openjpa.jdbc.SynchronizeMappings"  
value="false"/>
         </properties>


No idea where the MetaDataFactory setting is coming from. Don't see it  
being set by either Geronimo or OpenEJB. You sure this is not being  
set by OpenJPA?

--kevan

Re: Problem with multi persistence units

Posted by Kevin Sutter <kw...@gmail.com>.
I'm not a Geronimo expert.  If they are passing in these arguments, then it
must be for some reason.  And, turning them off manually (override) probably
would just surface problems from another area.  I'll cross post this
question to the Geronimo users forum to see if you get any bites over
there...

Good luck,
Kevin

On Wed, Feb 11, 2009 at 10:08 PM, bongosdude <bo...@gmail.com> wrote:

>
> Kevin,
> So what value of openjpa.MetaDataFactory should be for geronimo? If I can
> specify as system properties, How can I turn off "openjpa.MetaDataFactory"
> and penjpa.jdbc.SynchronizeMappings: buildSchema(ForeignKeys=true)?
>
> -B
>
>
> Kevin Sutter wrote:
> >
> > Hi,
> > It looks like Geronimo might be passing in some extra properties to
> > OpenJPA???  In the trace, there are two openjpa properties that are
> > suspect.  You don't have them in your persistence.xml.  And, if you are
> > not
> > passing them in as system properties, then my next guess is Geronimo.
>  The
> > two properties that seem to be causing your situation are these:
> >
> > openjpa.MetaDataFactory:
> > jpa(Files=/usr/local/geronimo-
> >
> tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar)
> >
> > openjpa.jdbc.SynchronizeMappings: buildSchema(ForeignKeys=true)
> >
> > The first one (MetaDataFactory) specifies which persistence types to
> > process.  Since a jar file is specified, we will search the jar file for
> > any
> > persistence types (regardless of whether they are listed in a
> > persistence.xml file or not).  Our documentation explains this a bit more
> > [1].
> >
> > The next property (SynchronizeMappings) is what I was referring to in
> > earlier e-mails.  This is the property that tells OpenJPA to please
> create
> > the tables if they do not exist.
> >
> > You can see in the trace that DigitalkUser and DigitalkAccount are being
> > processed since they exist in the jar file specified in the
> > MetaDataFactory
> > property:
> >
> > 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> > "/usr/local/geronimo-tomcat6-
> >
> javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> > found persistent types
> > [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount].
> >
> > Bottom line, you need to determine how those properties are being passed
> > into OpenJPA.  We're just doing what's being requested...  :-)
> >
> > Good luck,
> > Kevin
> >
> > [1]
> >
> http://openjpa.apache.org/builds/latest/docs/manual/manual.html#ref_guide_meta_factory
> >
> > On Tue, Feb 10, 2009 at 1:50 PM, bongosdude <bo...@gmail.com>
> wrote:
> >
> >>
> >>
> >> Kevin,
> >>
> >> I copy the trace here for you to review.
> >>
> >> 1. There are no other persistence.xml with create table settings
> >> 2. DigitalkUser and DigitalkAccount are two entity of separate database
> >> (2nd
> >> persistence unit.)
> >> 3. OpenJPA created tables accounts (DigitalkAccount) in my first
> >> persistence
> >> unit. I deleted it and it created again. The log is misleading.
> >>
> >> My environment
> >>
> >> OpenJPA 1.2.0
> >> Apache Jeronimo 2.1.3
> >> JDK 1.5
> >> Mac OS x
> >>
> >>
> >> Thanks for helping
> >>
> >> -B
> >>
> >>
> >> <persistence xmlns="http://java.sun.com/xml/ns/persistence"
> >>             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> >> version="1.0"
> >>             xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
> >> http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
> >>    <persistence-unit name="CallingCardUsersUnit"
> >> transaction-type="RESOURCE_LOCAL" >
> >>        <description>Entity Beans for mysql</description>
> >>
> >>
> <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
> >>
> <non-jta-data-source>callingcard_users_notx</non-jta-data-source>
> >>
> >>  <class>com.nuvoip.services.ipcalls.model.entity.users.User</class>
> >>
> >>  <class>com.nuvoip.services.ipcalls.model.entity.users.UserRole</class>
> >>
> >>
> >>
> <class>com.nuvoip.services.ipcalls.model.entity.users.UserAccount</class>
> >>                <properties>
> >>                         <property name="openjpa.Log"
> >> value="DefaultLevel=TRACE" />
> >>                 </properties>
> >>    </persistence-unit>
> >>
> >>    <persistence-unit name="DigittalkUnit"
> >> transaction-type="RESOURCE_LOCAL">
> >>        <description>Entity Beans for ms sql</description>
> >>
> >>
> <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
> >>         <non-jta-data-source>mynuvoip</non-jta-data-source>
> >>
> >>
> >>
> <class>com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser</class>
> >>
> >>
> >>
> <class>com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount</class>
> >>                <properties>
> >>                         <property name="openjpa.Log"
> >> value="DefaultLevel=TRACE" />
> >>                 </properties>
> >>    </persistence-unit>
> >>
> >>
> >> </persistence>
> >>
> >>
> >>
> >> 14:38:25,745 INFO  [TimingFilter] Request time: 153 ms
> >> 14:38:25,745 ERROR [PagePool] Page Page[accounts/Start en] is dirty, and
> >> will be discarded (rather than returned to the page pool).
> >> 14:38:26,940 INFO  [TimingFilter] Request time: 1188 ms
> >> 14:38:34,238 INFO  [BusinessServicesLocator] InitialContext environment
> =
> >> {java.naming.provider.url=ejbd://localhost:4201/,
> >>
> >>
> java.naming.factory.initial=org.apache.openejb.client.RemoteInitialContextFactory,
> >> java.naming.factory.url.pkgs=org.apache.xbean.naming,
> >> openejb.remotable.businessLocals=true}
> >> 14:38:34,278 INFO  [OpenEJB] invoking method create on
> >> callingcard-ejb.jar/CallingCardUser
> >> 14:38:34,289 INFO  [OpenEJB] finished invoking method create
> >> 14:38:34,394 INFO  [Transaction] TX Required: Started transaction
> >> org.apache.geronimo.transaction.manager.TransactionImpl@903331
> >> 124027  CallingCardUsersUnit  INFO   [ejbd 1] openjpa.Runtime - Starting
> >> OpenJPA 1.0.3
> >> 124027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Runtime -
> >> Properties:
> >> openjpa.EntityManagerFactory: default
> >> openjpa.DataCache: false
> >> openjpa.MetaDataFactory:
> >>
> >>
> jpa(Files=/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar)
> >> openjpa.InverseManager: false
> >> openjpa.ReadLockLevel: read
> >> openjpa.DataCacheManager: default
> >> openjpa.jdbc.SubclassFetchMode: join
> >> openjpa.jdbc.UpdateManager: operation-order
> >> openjpa.jdbc.SynchronizeMappings: buildSchema(ForeignKeys=true)
> >> openjpa.NontransactionalRead: true
> >> openjpa.QueryCompilationCache: true
> >> openjpa.MaxFetchDepth: -1
> >> openjpa.RetainState: true
> >> openjpa.DynamicDataStructs: false
> >> openjpa.BrokerFactory: jdbc
> >> openjpa.WriteLockLevel: write
> >> openjpa.ManagedRuntime: auto
> >> openjpa.jdbc.EagerFetchMode: parallel
> >> openjpa.RestoreState: immutable
> >> openjpa.jdbc.SchemaFactory: dynamic
> >> openjpa.LockManager: version
> >> openjpa.BrokerImpl: non-finalizing
> >> openjpa.NontransactionalWrite: true
> >> openjpa.MetaDataRepository: default
> >> openjpa.Log: true(DefaultLevel=TRACE)
> >> openjpa.jdbc.ResultSetType: forward-only
> >> openjpa.AutoDetach:
> >> openjpa.ConnectionRetainMode: on-demand
> >> openjpa.RuntimeUnenhancedClasses: supported
> >> openjpa.SavepointManager: in-mem
> >> openjpa.Optimistic: true
> >> openjpa.ConnectionFactoryMode: local
> >> openjpa.Sequence: table(Table=OPENJPASEQ, Increment=100)
> >> openjpa.FetchGroups: default
> >> openjpa.jdbc.Schemas:
> >> openjpa.Id: CallingCardUsersUnit
> >> openjpa.OrphanedKeyAction: log
> >> openjpa.FlushBeforeQueries: true
> >> openjpa.AutoClear: datastore
> >> openjpa.Compatibility: default
> >> openjpa.jdbc.LRSSize: query
> >> openjpa.DetachState: loaded
> >> openjpa.Multithreaded: false
> >> openjpa.FetchBatchSize: -1
> >> openjpa.jdbc.SQLFactory: default
> >> openjpa.IgnoreChanges: false
> >> openjpa.jdbc.MappingDefaults: jpa
> >> openjpa.TransactionMode: local
> >> openjpa.RetryClassRegistration: false
> >> openjpa.jdbc.FetchDirection: forward
> >> openjpa.ClassResolver:
> >> org.apache.openjpa.persistence.PersistenceUnitInfoImpl$ClassResolverImpl
> >> openjpa.LockTimeout: -1
> >> openjpa.DataCacheTimeout: -1
> >> openjpa.QueryCache: true
> >> openjpa.jdbc.DriverDataSource: simple
> >> openjpa.jdbc.TransactionIsolation: default
> >> openjpa.ProxyManager: default
> >> 124067  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
> >> metadata factory
> >> "org.apache.openjpa.persistence.jdbc.PersistenceMappingFactory@a11a18".
> >> 124071  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC -
> OpenJPA
> >> will now connect to the database to attempt to determine what type of
> >> database dictionary to use. You may prevent this connection in the
> future
> >> by
> >> setting your openjpa.jdbc.DBDictionary configuration property to the
> >> appropriate value for your database (see the documentation for available
> >> values).
> >> 124823  CallingCardUsersUnit  INFO   [ejbd 1] openjpa.jdbc.JDBC - Using
> >> dictionary class "org.apache.openjpa.jdbc.sql.MySQLDictionary" (MySQL
> >> 5.1.30
> >> ,MySQL-AB JDBC Driver mysql-connector-java-5.1.7 ( Revision:
> >> ${svn.Revision}
> >> )).
> >> 124826  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC -
> >> catalogSeparator: .
> >> catalogTerm: database
> >> databaseProductName: MySQL
> >> databaseProductVersion: 5.1.30
> >> driverName: MySQL-AB JDBC Driver
> >> driverVersion: mysql-connector-java-5.1.7 ( Revision: ${svn.Revision} )
> >> extraNameCharacters: #@
> >> identifierQuoteString: `
> >> numericFunctions:
> >>
> >>
> ABS,ACOS,ASIN,ATAN,ATAN2,BIT_COUNT,CEILING,COS,COT,DEGREES,EXP,FLOOR,LOG,LOG10,MAX,MIN,MOD,PI,POW,POWER,RADIANS,RAND,ROUND,SIN,SQRT,TAN,TRUNCATE
> >> procedureTerm: PROCEDURE
> >> schemaTerm:
> >> searchStringEscape: \
> >> sqlKeywords:
> >>
> >>
> ACCESSIBLE,ANALYZE,ASENSITIVE,BEFORE,BIGINT,BINARY,BLOB,CALL,CHANGE,CONDITION,DATABASE,DATABASES,DAY_HOUR,DAY_MICROSECOND,DAY_MINUTE,DAY_SECOND,DELAYED,DETERMINISTIC,DISTINCTROW,DIV,DUAL,EACH,ELSEIF,ENCLOSED,ESCAPED,EXIT,EXPLAIN,FLOAT4,FLOAT8,FORCE,FULLTEXT,HIGH_PRIORITY,HOUR_MICROSECOND,HOUR_MINUTE,HOUR_SECOND,IF,IGNORE,INFILE,INOUT,INT1,INT2,INT3,INT4,INT8,ITERATE,KEYS,KILL,LEAVE,LIMIT,LINEAR,LINES,LOAD,LOCALTIME,LOCALTIMESTAMP,LOCK,LONG,LONGBLOB,LONGTEXT,LOOP,LOW_PRIORITY,MEDIUMBLOB,MEDIUMINT,MEDIUMTEXT,MIDDLEINT,MINUTE_MICROSECOND,MINUTE_SECOND,MOD,MODIFIES,NO_WRITE_TO_BINLOG,OPTIMIZE,OPTIONALLY,OUT,OUTFILE,PURGE,RANGE,READS,READ_ONLY,READ_WRITE,REGEXP,RELEASE,RENAME,REPEAT,REPLACE,REQUIRE,RETURN,RLIKE,SCHEMAS,SECOND_MICROSECOND,SENSITIVE,SEPARATOR,SHOW,SPATIAL,SPECIFIC,SQLEXCEPTION,SQL_BIG_RESULT,SQL_CALC_FOUND_ROWS,SQL_SMALL_RESULT,SSL,STARTING,STRAIGHT_JOIN,TERMINATED,TINYBLOB,TINYINT,TINYTEXT,TRIGGER,UNDO,UNLOCK,UNSIGNED,USE,UTC_DATE,UTC_TIME,UTC_TIMESTAMP,VARBINARY,VARCHARACTER,WHILE,X509,XOR,YEAR_MONTH,ZEROFILL
> >> stringFunctions:
> >>
> >>
> ASCII,BIN,BIT_LENGTH,CHAR,CHARACTER_LENGTH,CHAR_LENGTH,CONCAT,CONCAT_WS,CONV,ELT,EXPORT_SET,FIELD,FIND_IN_SET,HEX,INSERT,INSTR,LCASE,LEFT,LENGTH,LOAD_FILE,LOCATE,LOCATE,LOWER,LPAD,LTRIM,MAKE_SET,MATCH,MID,OCT,OCTET_LENGTH,ORD,POSITION,QUOTE,REPEAT,REPLACE,REVERSE,RIGHT,RPAD,RTRIM,SOUNDEX,SPACE,STRCMP,SUBSTRING,SUBSTRING,SUBSTRING,SUBSTRING,SUBSTRING_INDEX,TRIM,UCASE,UPPER
> >> systemFunctions:
> >>
> >>
> DATABASE,USER,SYSTEM_USER,SESSION_USER,PASSWORD,ENCRYPT,LAST_INSERT_ID,VERSION
> >> timeDateFunctions:
> >>
> >>
> DAYOFWEEK,WEEKDAY,DAYOFMONTH,DAYOFYEAR,MONTH,DAYNAME,MONTHNAME,QUARTER,WEEK,YEAR,HOUR,MINUTE,SECOND,PERIOD_ADD,PERIOD_DIFF,TO_DAYS,FROM_DAYS,DATE_FORMAT,TIME_FORMAT,CURDATE,CURRENT_DATE,CURTIME,CURRENT_TIME,NOW,SYSDATE,CURRENT_TIMESTAMP,UNIX_TIMESTAMP,FROM_UNIXTIME,SEC_TO_TIME,TIME_TO_SEC
> >> url: jdbc:mysql://localhost:3306/callingcard_users
> >> userName: josso@localhost
> >> defaultTransactionIsolation: 2
> >> driverMajorVersion: 5
> >> driverMinorVersion: 1
> >> maxBinaryLiteralLength: 16777208
> >> maxCatalogNameLength: 32
> >> maxCharLiteralLength: 16777208
> >> maxColumnNameLength: 64
> >> maxColumnsInGroupBy: 64
> >> maxColumnsInIndex: 16
> >> maxColumnsInOrderBy: 64
> >> maxColumnsInSelect: 256
> >> maxColumnsInTable: 512
> >> maxConnections: 0
> >> maxCursorNameLength: 64
> >> maxIndexLength: 256
> >> maxProcedureNameLength: 0
> >> maxRowSize: 2147483639
> >> maxSchemaNameLength: 0
> >> maxStatementLength: 65531
> >> maxStatements: 0
> >> maxTableNameLength: 64
> >> maxTablesInSelect: 256
> >> maxUserNameLength: 16
> >> isCatalogAtStart: true
> >> isReadOnly: false
> >> nullPlusNonNullIsNull: true
> >> nullsAreSortedAtEnd: false
> >> nullsAreSortedAtStart: false
> >> nullsAreSortedHigh: false
> >> nullsAreSortedLow: true
> >> storesLowerCaseIdentifiers: false
> >> storesLowerCaseQuotedIdentifiers: false
> >> storesMixedCaseIdentifiers: true
> >> storesMixedCaseQuotedIdentifiers: true
> >> storesUpperCaseIdentifiers: false
> >> storesUpperCaseQuotedIdentifiers: true
> >> supportsAlterTableWithAddColumn: true
> >> supportsAlterTableWithDropColumn: true
> >> supportsANSI92EntryLevelSQL: true
> >> supportsANSI92FullSQL: false
> >> supportsANSI92IntermediateSQL: false
> >> supportsCatalogsInDataManipulation: true
> >> supportsCatalogsInIndexDefinitions: true
> >> supportsCatalogsInPrivilegeDefinitions: true
> >> supportsCatalogsInProcedureCalls: true
> >> supportsCatalogsInTableDefinitions: true
> >> supportsColumnAliasing: true
> >> supportsConvert: false
> >> supportsCoreSQLGrammar: true
> >> supportsCorrelatedSubqueries: true
> >> supportsDataDefinitionAndDataManipulationTransactions: false
> >> supportsDataManipulationTransactionsOnly: false
> >> supportsDifferentTableCorrelationNames: true
> >> supportsExpressionsInOrderBy: true
> >> supportsExtendedSQLGrammar: false
> >> supportsFullOuterJoins: false
> >> supportsGroupBy: true
> >> supportsGroupByBeyondSelect: true
> >> supportsGroupByUnrelated: true
> >> supportsIntegrityEnhancementFacility: false
> >> supportsLikeEscapeClause: true
> >> supportsLimitedOuterJoins: true
> >> supportsMinimumSQLGrammar: true
> >> supportsMixedCaseIdentifiers: false
> >> supportsMixedCaseQuotedIdentifiers: false
> >> supportsMultipleResultSets: false
> >> supportsMultipleTransactions: true
> >> supportsNonNullableColumns: true
> >> supportsOpenCursorsAcrossCommit: false
> >> supportsOpenCursorsAcrossRollback: false
> >> supportsOpenStatementsAcrossCommit: false
> >> supportsOpenStatementsAcrossRollback: false
> >> supportsOrderByUnrelated: false
> >> supportsOuterJoins: true
> >> supportsPositionedDelete: false
> >> supportsPositionedUpdate: false
> >> supportsSchemasInDataManipulation: false
> >> supportsSchemasInIndexDefinitions: false
> >> supportsSchemasInPrivilegeDefinitions: false
> >> supportsSchemasInProcedureCalls: false
> >> supportsSchemasInTableDefinitions: false
> >> supportsSelectForUpdate: true
> >> supportsStoredProcedures: true
> >> supportsSubqueriesInComparisons: true
> >> supportsSubqueriesInExists: true
> >> supportsSubqueriesInIns: true
> >> supportsSubqueriesInQuantifieds: true
> >> supportsTableCorrelationNames: true
> >> supportsTransactions: true
> >> supportsUnion: true
> >> supportsUnionAll: true
> >> usesLocalFilePerTable: false
> >> usesLocalFiles: false
> >> allProceduresAreCallable: false
> >> allTablesAreSelectable: false
> >> dataDefinitionCausesTransactionCommit: true
> >> dataDefinitionIgnoredInTransactions: false
> >> doesMaxRowSizeIncludeBlobs: true
> >> supportsBatchUpdates: true
> >> 124830  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 11435458> [0 ms] close
> >> 124863  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 5935820> [0 ms] close
> >> 124906  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Scanning
> >> jar
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> for persistent types.
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >>
> >>
> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount.class"
> >> since it is a class, and will not need to be re-parsed later.
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount].
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >> "com/nuvoip/services/ipcalls/model/entity/users/UserRole.class" since it
> >> is
> >> a class, and will not need to be re-parsed later.
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.users.UserRole].
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >>
> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser.class"
> >> since it is a class, and will not need to be re-parsed later.
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser].
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >> "com/nuvoip/services/ipcalls/model/entity/users/User.class" since it is
> a
> >> class, and will not need to be re-parsed later.
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.users.User].
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >> "com/nuvoip/services/ipcalls/model/entity/users/UserAccount.class" since
> >> it
> >> is a class, and will not need to be re-parsed later.
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.users.UserAccount].
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Scanning
> >> resource "META-INF/orm.xml" for persistent types.
> >> 124911  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> parsePersistentTypeNames() found
> >> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser,
> >> com.nuvoip.services.ipcalls.model.entity.users.UserAccount,
> >> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount,
> >> com.nuvoip.services.ipcalls.model.entity.users.User,
> >> com.nuvoip.services.ipcalls.model.entity.users.UserRole].
> >> 124911  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Found 5
> >> classes with metadata in 5 milliseconds.
> >> 125076  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> >> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser"
> >> requires
> >> runtime enhancement: true
> >> 125100  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> >> metadata for "class
> >> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" under
> >> mode "[META][QUERY]".
> >> 125100  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> class
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> >> 125100  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> package
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> >> 125106  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Generating
> >> default metadata for type
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> >> 125106  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
> >> reflection for metadata generation.
> >> 125137  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "DigitalkUser.findByAccountNo".
> >> 125165  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "DigitalkUser.findByCliAndUsername".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> >> persistence-capable superclass of
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" to
> >> "null".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> metadata for
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805
> >> ".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.accountId
> >> ".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.callback
> >> ".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.cli
> >> ".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.cliPin
> >> ".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.createDate
> >> ".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.lastNumberDial
> >> ".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.pin
> >> ".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.userName
> >> ".
> >> 125199  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> Enhancing
> >> type "class
> >> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> >> 125018  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
> >> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser"
> >> requires
> >> runtime enhancement: false
> >> 125233  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> >> "com/nuvoip/services/ipcalls/model/entity/users/UserAccount" requires
> >> runtime enhancement: true
> >> 125236  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> Enhancing
> >> type "class com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
> >> 125058  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
> >> "com/nuvoip/services/ipcalls/model/entity/users/UserAccount" requires
> >> runtime enhancement: false
> >> 125272  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> >> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount"
> >> requires runtime enhancement: true
> >> 125318  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> >> metadata for "class
> >> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount"
> >> under
> >> mode "[META][QUERY]".
> >> 125318  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> class
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> >> 125324  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Generating
> >> default metadata for type
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> >> 125324  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
> >> reflection for metadata generation.
> >> 125364  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "DigitalkAccount.findByAccountNo".
> >> 125397  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "DigitalkAccount.findByEmail".
> >> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> >> persistence-capable superclass of
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount"
> to
> >> "null".
> >> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> metadata for
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550
> >> ".
> >> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.accountId
> >> ".
> >> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address1
> >> ".
> >> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address2
> >> ".
> >> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address3
> >> ".
> >> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address4
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address5
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.autoRechargeAmount
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.autoRechargeThreshold
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.autoRechrgEnabled
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.businessCategory
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.country
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.createDate
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.credit
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.creditLimit
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.creditMsgEnabled
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.creditType
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.currency
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.email
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.firstAccessDate
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.firstname
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.hotDial
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lastAccessDate
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lastModified
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lastname
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lead_source
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.manualRecharge
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.manualRechargeAmt
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "
> >>
> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.name
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.password
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.speedDial
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.speedDialKey
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.state
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.users
> >> ".
> >> 125453  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> Enhancing
> >> type "class
> >> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> >> 125314  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
> >> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount"
> >> requires runtime enhancement: false
> >> 125532  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> >> "com/nuvoip/services/ipcalls/model/entity/users/UserRole" requires
> >> runtime
> >> enhancement: true
> >> 125542  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> Enhancing
> >> type "class com.nuvoip.services.ipcalls.model.entity.users.UserRole".
> >> 125351  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
> >> "com/nuvoip/services/ipcalls/model/entity/users/UserRole" requires
> >> runtime
> >> enhancement: false
> >> 125412  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
> >> metadata factory
> >> "org.apache.openjpa.persistence.jdbc.PersistenceMappingFactory@9168ba".
> >> 125413  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> >> metadata for "class
> >> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" under
> >> mode "[META][QUERY]".
> >> 125413  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Scanning
> >> jar
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> for persistent types.
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >>
> >>
> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount.class"
> >> since it is a class, and will not need to be re-parsed later.
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount].
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >> "com/nuvoip/services/ipcalls/model/entity/users/UserRole.class" since it
> >> is
> >> a class, and will not need to be re-parsed later.
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.users.UserRole].
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >>
> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser.class"
> >> since it is a class, and will not need to be re-parsed later.
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser].
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >> "com/nuvoip/services/ipcalls/model/entity/users/User.class" since it is
> a
> >> class, and will not need to be re-parsed later.
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.users.User].
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >> "com/nuvoip/services/ipcalls/model/entity/users/UserAccount.class" since
> >> it
> >> is a class, and will not need to be re-parsed later.
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.users.UserAccount].
> >> 125420  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Scanning
> >> resource "META-INF/orm.xml" for persistent types.
> >> 125421  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> parsePersistentTypeNames() found
> >> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser,
> >> com.nuvoip.services.ipcalls.model.entity.users.UserAccount,
> >> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount,
> >> com.nuvoip.services.ipcalls.model.entity.users.User,
> >> com.nuvoip.services.ipcalls.model.entity.users.UserRole].
> >> 125421  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Found 5
> >> classes with metadata in 8 milliseconds.
> >> 125456  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> class
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> >> 125456  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> package
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> >> 125482  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Generating
> >> default metadata for type
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> >> 125518  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "DigitalkUser.findByAccountNo".
> >> 125548  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "DigitalkUser.findByCliAndUsername".
> >> 125585  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> >> persistence-capable superclass of
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" to
> >> "null".
> >> 125585  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> metadata for
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430
> >> ".
> >> 125585  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.accountId
> >> ".
> >> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.callback
> >> ".
> >> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cli
> >> ".
> >> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cliPin
> >> ".
> >> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.createDate
> >> ".
> >> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.lastNumberDial
> >> ".
> >> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.pin
> >> ".
> >> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.userName
> >> ".
> >> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Preparing
> >> mapping for
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> >> 125595  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.accountId
> >> ".
> >> 125606  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "accountId" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.callback
> >> ".
> >> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "callback"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cli
> >> ".
> >> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "cli" has
> >> mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cliPin
> >> ".
> >> 125609  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "cliPin"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125609  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.createDate
> >> ".
> >> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "createDate" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> >> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.lastNumberDial
> >> ".
> >> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "lastNumberDial" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.pin
> >> ".
> >> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "pin" has
> >> mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.userName
> >> ".
> >> 125618  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "userName"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125620  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser<discriminator>"
> >> has mapping strategy "none".
> >> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser<version>"
> >> has mapping strategy "none".
> >> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> mapping for
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430
> >> ".
> >> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" has
> >> mapping strategy "full".
> >> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> >> metadata for "class
> >> com.nuvoip.services.ipcalls.model.entity.users.UserAccount" under mode
> >> "[META][QUERY]".
> >> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> class "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
> >> 125630  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> package "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
> >> 125631  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Generating
> >> default metadata for type
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
> >> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> >> persistence-capable superclass of
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount" to "null".
> >> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> metadata for
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295".
> >> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.accountNo
> >> ".
> >> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.contextName
> >> ".
> >> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.userId
> >> ".
> >> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Preparing
> >> mapping for
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
> >> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.userId
> >> ".
> >> 125663  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "userId"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125663  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.accountNo
> >> ".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "accountNo" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.contextName
> >> ".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "contextName" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount<discriminator>"
> >> has mapping strategy "none".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount<version>"
> has
> >> mapping strategy "none".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> mapping for
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount" has mapping
> >> strategy "full".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> >> metadata for "class
> >> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount"
> >> under
> >> mode "[META][QUERY]".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> class
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> >> 125667  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Generating
> >> default metadata for type
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> >> 125696  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "DigitalkAccount.findByAccountNo".
> >> 125728  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "DigitalkAccount.findByEmail".
> >> 125768  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> table generator "newaccountnum".
> >> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> >> persistence-capable superclass of
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount"
> to
> >> "null".
> >> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> metadata for
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798
> >> ".
> >> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.accountId
> >> ".
> >> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address1
> >> ".
> >> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address2
> >> ".
> >> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address3
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address4
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address5
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeAmount
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeThreshold
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechrgEnabled
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.businessCategory
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.country
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.createDate
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.credit
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditLimit
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditMsgEnabled
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditType
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.currency
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.email
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstAccessDate
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstname
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.hotDial
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastAccessDate
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastModified
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastname
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lead_source
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRecharge
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRechargeAmt
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "
> >>
> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.name
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.password
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDial
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDialKey
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.state
> >> ".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.users
> >> ".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Preparing
> >> mapping for
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.accountId
> >> ".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "accountId" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address1
> >> ".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "address1"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address2
> >> ".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "address2"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address3
> >> ".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "address3"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address4
> >> ".
> >> 125807  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "address4"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125807  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address5
> >> ".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "address5"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeAmount
> >> ".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "autoRechargeAmount" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeThreshold
> >> ".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "autoRechargeThreshold" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechrgEnabled
> >> ".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "autoRechrgEnabled" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.businessCategory
> >> ".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "businessCategory" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.country
> >> ".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "country"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.createDate
> >> ".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "createDate" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.credit
> >> ".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "credit"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditLimit
> >> ".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "creditLimit" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditMsgEnabled
> >> ".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "creditMsgEnabled" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditType
> >> ".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "creditType" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.currency
> >> ".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "currency"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.email
> >> ".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "email"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstAccessDate
> >> ".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "firstAccessDate" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstname
> >> ".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "firstname" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.hotDial
> >> ".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "hotDial"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastAccessDate
> >> ".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "lastAccessDate" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastModified
> >> ".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "lastModified" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastname
> >> ".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "lastname"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lead_source
> >> ".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "lead_source" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRecharge
> >> ".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "manualRecharge" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRechargeAmt
> >> ".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "manualRechargeAmt" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "
> >>
> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.name
> >> ".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "name" has
> >> mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.password
> >> ".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "password"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDial
> >> ".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "speedDial" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDialKey
> >> ".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "speedDialKey" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.state
> >> ".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "state"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount<discriminator>"
> >> has mapping strategy "none".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount<version>"
> >> has mapping strategy "none".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> mapping for
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798
> >> ".
> >> 125812  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount"
> >> has
> >> mapping strategy "full".
> >> 125812  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.users
> >> ".
> >> 125824  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "users"
> >> has mapping strategy
> >>
> >>
> "org.apache.openjpa.jdbc.meta.strats.RelationCollectionInverseKeyFieldStrategy".
> >> 125824  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> >> metadata for "class com.nuvoip.services.ipcalls.model.entity.users.User"
> >> under mode "[META][QUERY]".
> >> 125824  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> class "com.nuvoip.services.ipcalls.model.entity.users.User".
> >> 125825  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Generating
> >> default metadata for type
> >> "com.nuvoip.services.ipcalls.model.entity.users.User".
> >> 125850  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "User.findByUserName".
> >> 125875  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "User.doesUserExist".
> >> 125903  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> >> persistence-capable superclass of
> >> "com.nuvoip.services.ipcalls.model.entity.users.User" to "null".
> >> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> metadata for
> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277
> >> ".
> >> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.enabled
> >> ".
> >> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.grantedAuthorities
> >> ".
> >> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> >> metadata for "class
> >> com.nuvoip.services.ipcalls.model.entity.users.UserRole"
> >> under mode "[META][QUERY]".
> >> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> class "com.nuvoip.services.ipcalls.model.entity.users.UserRole".
> >> 125905  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Generating
> >> default metadata for type
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole".
> >> 125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> >> persistence-capable superclass of
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole" to "null".
> >> 125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.password".
> >> 125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.username".
> >> 125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrAccount
> ".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrId".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.version
> >> ".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> metadata for
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.authority
> >> ".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field "
> com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.id
> >> ".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.username
> >> ".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.version
> ".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Preparing
> >> mapping for "com.nuvoip.services.ipcalls.model.entity.users.User".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrId".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "usrId"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.enabled
> >> ".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "enabled"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.password".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "password"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.username".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "username"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.version
> >> ".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "version"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.users.User<discriminator>" has
> >> mapping strategy "none".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.users.User<version>" has
> >> mapping
> >> strategy "none".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Preparing
> >> mapping for "com.nuvoip.services.ipcalls.model.entity.users.UserRole".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field "
> com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.id
> >> ".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "id" has
> >> mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.authority
> >> ".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "authority" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.username
> >> ".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "username"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.version
> ".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "version"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole<discriminator>"
> >> has
> >> mapping strategy "none".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole<version>" has
> >> mapping strategy "none".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> mapping for
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.users.User" has mapping
> >> strategy
> >> "full".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.grantedAuthorities
> >> ".
> >> 125937  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "grantedAuthorities" has mapping strategy
> >>
> >>
> "org.apache.openjpa.jdbc.meta.strats.RelationCollectionInverseKeyFieldStrategy".
> >> 125937  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrAccount
> ".
> >> 125944  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "usrAccount" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.RelationFieldStrategy".
> >> 125944  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> mapping for
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170".
> >> 125944  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole" has mapping
> >> strategy "full".
> >> 125958  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> table information for schema name "null", table name "authorities".
> >> 125958  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 10469122> getColumns: callingcard_users, null,
> >> authorities,
> >> null
> >> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> column information for table "authorities".
> >> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "id" on table "authorities".
> >> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "username" on table "authorities".
> >> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "authority" on table "authorities".
> >> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "version" on table "authorities".
> >> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> table information for schema name "null", table name "OPENJPASEQ".
> >> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 10469122> getColumns: callingcard_users, null,
> OPENJPASEQ,
> >> null
> >> 126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> column information for table "OPENJPASEQ".
> >> 126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "ID" on table "OPENJPASEQ".
> >> 126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "SEQUENCE_VALUE" on table "OPENJPASEQ".
> >> 126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> table information for schema name "null", table name "subscribers".
> >> 126009  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 10469122> getColumns: callingcard_users, null,
> >> subscribers,
> >> null
> >> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> column information for table "subscribers".
> >> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "user_id" on table "subscribers".
> >> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "context_nm" on table "subscribers".
> >> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "account_nm" on table "subscribers".
> >> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> sequence information for schema "null", sequence name "null".
> >> 126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 10469122> [1 ms] commit
> >> 126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 10469122> [0 ms] close
> >> 126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> table information for schema name "dbo", table name "accounts".
> >> 126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 3459509> getColumns: callingcard_users, dbo, accounts,
> >> null
> >> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> column information for table "accounts".
> >> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "account" on table "accounts".
> >> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "addr1" on table "accounts".
> >> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "addr2" on table "accounts".
> >> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "addr3" on table "accounts".
> >> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "addr4" on table "accounts".
> >> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "addr5" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "auto_recharge_amount" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "auto_recharge_threshold" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "auto_recharge" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "category" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "country" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "cre_date" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "credit" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "credit_limit" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "credit_msg" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "type" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "currency" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "email" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "first_date" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "fname" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "hot_dial" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "last_date" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "last_modified" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "lname" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "lead_source" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "man_recharge" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "man_recharge_amount" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "name" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "password" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "spd_dial" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "spd_key" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "state" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> table information for schema name "dbo", table name "OPENJPASEQ".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 3459509> getColumns: callingcard_users, dbo, OPENJPASEQ,
> >> null
> >> 126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "ID" on table "OPENJPASEQ".
> >> 126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "SEQUENCE_VALUE" on table "OPENJPASEQ".
> >> 126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> table information for schema name "dbo", table name "users".
> >> 126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 3459509> getColumns: callingcard_users, dbo, users, null
> >> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> column information for table "users".
> >> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "id" on table "users".
> >> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "username" on table "users".
> >> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "password" on table "users".
> >> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "enabled" on table "users".
> >> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "version" on table "users".
> >> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> sequence information for schema "dbo", sequence name "null".
> >> 126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 3459509> [2 ms] commit
> >> 126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 3459509> [0 ms] close
> >> 126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> foreign keys for schema name "null", table name "authorities".
> >> 126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 15855117> getImportedKeys: callingcard_users, null,
> >> authorities
> >> 126059  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing foreign key "fk_authorities_users" on table "authorities
> >> (username)" linking to table "users (username)".  Sequence: "1".
> >> 126059  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> foreign keys for schema name "null", table name "OPENJPASEQ".
> >> 126060  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 15855117> getImportedKeys: callingcard_users, null,
> >> OPENJPASEQ
> >> 126061  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> foreign keys for schema name "null", table name "subscribers".
> >> 126061  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 15855117> getImportedKeys: callingcard_users, null,
> >> subscribers
> >> 126062  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing foreign key "subscribers_users_fk" on table "subscribers
> >> (user_id)"
> >> linking to table "users (id)".  Sequence: "1".
> >> 126062  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 15855117> [0 ms] commit
> >> 126062  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 15855117> [0 ms] close
> >> 126063  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> foreign keys for schema name "dbo", table name "accounts".
> >> 126063  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 899387> getImportedKeys: callingcard_users, dbo, accounts
> >> 126065  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> foreign keys for schema name "dbo", table name "OPENJPASEQ".
> >> 126065  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 899387> getImportedKeys: callingcard_users, dbo,
> >> OPENJPASEQ
> >> 126066  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> foreign keys for schema name "dbo", table name "users".
> >> 126066  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 899387> getImportedKeys: callingcard_users, dbo, users
> >> 126067  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 899387> [0 ms] commit
> >> 126067  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 899387> [0 ms] close
> >> 126067  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema -
> >> Existing
> >> column "authority" on table "authorities" is incompatible with the same
> >> column in the given schema definition. Existing column:
> >> Full Name: authorities.authority
> >> Type: varchar
> >> Size: 50
> >> Default: null
> >> Not Null: true
> >> Given column:
> >> Full Name: authorities.authority
> >> Type: varchar
> >> Size: 255
> >> Default: null
> >> Not Null: false
> >>
> >> 126067  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema -
> >> Existing
> >> column "username" on table "authorities" is incompatible with the same
> >> column in the given schema definition. Existing column:
> >> Full Name: authorities.username
> >> Type: varchar
> >> Size: 50
> >> Default: null
> >> Not Null: true
> >> Given column:
> >> Full Name: authorities.username
> >> Type: varchar
> >> Size: 255
> >> Default: null
> >> Not Null: false
> >>
> >> 126067  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema -
> >> Existing
> >> column "account_nm" on table "subscribers" is incompatible with the same
> >> column in the given schema definition. Existing column:
> >> Full Name: subscribers.account_nm
> >> Type: varchar
> >> Size: 20
> >> Default: null
> >> Not Null: true
> >> Given column:
> >> Full Name: subscribers.account_nm
> >> Type: varchar
> >> Size: 255
> >> Default: null
> >> Not Null: false
> >>
> >> 126068  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema -
> >> Existing
> >> column "context_nm" on table "subscribers" is incompatible with the same
> >> column in the given schema definition. Existing column:
> >> Full Name: subscribers.context_nm
> >> Type: varchar
> >> Size: 50
> >> Default: null
> >> Not Null: false
> >> Given column:
> >> Full Name: subscribers.context_nm
> >> Type: varchar
> >> Size: 255
> >> Default: null
> >> Not Null: false
> >>
> >> 126068  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 7437197> [0 ms] rollback
> >> 126074  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.SQL - <t
> >> 16566280, conn 7437197> executing stmnt 8295201 CREATE TABLE
> dbo.accounts
> >> (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2 VARCHAR(255),
> >> addr3 VARCHAR(255), addr4 VARCHAR(255), addr5 VARCHAR(255),
> >> auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge
> >> BIT,
> >> category BIT, country VARCHAR(255), cre_date DATE, credit REAL,
> >> credit_limit
> >> REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email
> >> VARCHAR(255),
> >> first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
> >> last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
> >> man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255),
> >> password
> >> VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state
> VARCHAR(255),
> >> PRIMARY KEY (account)) TYPE = innodb
> >> 126089  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.SQL - <t
> >> 16566280, conn 7437197> [15 ms] spent
> >> 126089  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 7437197> [0 ms] close
> >> 14:38:36,465 INFO  [Transaction] TX Required: setRollbackOnly() on
> >> transaction
> >> org.apache.geronimo.transaction.manager.TransactionImpl@903331
> >> 14:38:36,465 INFO  [Transaction] TX Required: Rolling back transaction
> >> org.apache.geronimo.transaction.manager.TransactionImpl@903331
> >> 14:38:36,487 ERROR [[default]] Servlet.service() for servlet default
> >> threw
> >> exception
> >> javax.ejb.EJBException: The bean encountered a non-application
> >> exception.;
> >> nested exception is:
> >>        <openjpa-1.0.3-r420667:677674 nonfatal general error>
> >> org.apache.openjpa.persistence.PersistenceException: CREATE command
> >> denied
> >> to user 'josso'@'localhost' for table 'accounts' {stmnt 8295201 CREATE
> >> TABLE
> >> dbo.accounts (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2
> >> VARCHAR(255), addr3 VARCHAR(255), addr4 VARCHAR(255), addr5
> VARCHAR(255),
> >> auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge
> >> BIT,
> >> category BIT, country VARCHAR(255), cre_date DATE, credit REAL,
> >> credit_limit
> >> REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email
> >> VARCHAR(255),
> >> first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
> >> last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
> >> man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255),
> >> password
> >> VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state
> VARCHAR(255),
> >> PRIMARY KEY (account)) TYPE = innodb} [code=1142, state=42000]
> >>        at
> >>
> >>
> org.apache.openejb.client.EJBInvocationHandler.convertException(EJBInvocationHandler.java:219)
> >>        at
> >>
> >>
> org.apache.openejb.client.EJBObjectHandler._invoke(EJBObjectHandler.java:157)
> >>        at
> >>
> >>
> org.apache.openejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:117)
> >>        at
> >>
> >>
> org.apache.openejb.client.proxy.Jdk13InvocationHandler.invoke(Jdk13InvocationHandler.java:52)
> >>        at $Proxy103.findByUsername(Unknown Source)
> >>        at
> >>
> >>
> com.nuvoip.services.ipcalls.services.internal.UserDetailsServiceImpl.loadUserByUsername(UserDetailsServiceImpl.java:23)
> >>        at
> >>
> >>
> $UserDetailsService_11f61b0e2d0.loadUserByUsername($UserDetailsService_11f61b0e2d0.java)
> >>        at
> >>
> >>
> org.springframework.security.providers.dao.DaoAuthenticationProvider.retrieveUser(DaoAuthenticationProvider.java:83)
> >>        at
> >>
> >>
> org.springframework.security.providers.dao.AbstractUserDetailsAuthenticationProvider.authenticate(AbstractUserDetailsAuthenticationProvider.java:121)
> >>        at
> >>
> >>
> $AuthenticationProvider_11f61b0e3aa.authenticate($AuthenticationProvider_11f61b0e3aa.java)
> >>        at
> >>
> >>
> org.springframework.security.providers.ProviderManager.doAuthentication(ProviderManager.java:188)
> >>        at
> >>
> >>
> org.springframework.security.AbstractAuthenticationManager.authenticate(AbstractAuthenticationManager.java:46)
> >>        at
> >>
> >>
> $AuthenticationManager_11f61b0e2a7.authenticate($AuthenticationManager_11f61b0e2a7.java)
> >>        at
> >>
> >>
> org.springframework.security.ui.webapp.AuthenticationProcessingFilter.attemptAuthentication(AuthenticationProcessingFilter.java:82)
> >>        at
> >>
> >>
> org.springframework.security.ui.AbstractProcessingFilter.doFilterHttp(AbstractProcessingFilter.java:258)
> >>        at
> >>
> >>
> org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
> >>        at
> >>
> >>
> nu.localhost.tapestry5.springsecurity.services.internal.HttpServletRequestFilterWrapper.service(HttpServletRequestFilterWrapper.java:52)
> >>        at
> >>
> >>
> $HttpServletRequestFilter_11f61b0e2c8.service($HttpServletRequestFilter_11f61b0e2c8.java)
> >>        at
> >>
> >>
> $HttpServletRequestHandler_11f61b0e2cf.service($HttpServletRequestHandler_11f61b0e2cf.java)
> >>        at
> >>
> >>
> nu.localhost.tapestry5.springsecurity.services.internal.HttpServletRequestFilterWrapper$1.doFilter(HttpServletRequestFilterWrapper.java:56)
> >>        at
> >>
> >>
> org.springframework.security.context.HttpSessionContextIntegrationFilter.doFilterHttp(HttpSessionContextIntegrationFilter.java:235)
> >>        at
> >>
> >>
> org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
> >>        at
> >>
> >>
> nu.localhost.tapestry5.springsecurity.services.internal.HttpServletRequestFilterWrapper.service(HttpServletRequestFilterWrapper.java:52)
> >>        at
> >>
> >>
> $HttpServletRequestFilter_11f61b0e2c7.service($HttpServletRequestFilter_11f61b0e2c7.java)
> >>        at
> >>
> >>
> $HttpServletRequestHandler_11f61b0e2cf.service($HttpServletRequestHandler_11f61b0e2cf.java)
> >>        at
> >>
> >>
> org.apache.tapestry5.internal.services.IgnoredPathsFilter.service(IgnoredPathsFilter.java:62)
> >>        at
> >>
> >>
> $HttpServletRequestFilter_11f61b0e2c6.service($HttpServletRequestFilter_11f61b0e2c6.java)
> >>        at
> >>
> >>
> $HttpServletRequestHandler_11f61b0e2cf.service($HttpServletRequestHandler_11f61b0e2cf.java)
> >>        at
> >>
> >>
> $HttpServletRequestHandler_11f61b0e2c5.service($HttpServletRequestHandler_11f61b0e2c5.java)
> >>        at
> >> org.apache.tapestry5.TapestryFilter.doFilter(TapestryFilter.java:179)
> >>        at
> >>
> >>
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
> >>        at
> >>
> >>
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> >>        at
> >>
> >>
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
> >>        at
> >>
> >>
> org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
> >>        at
> >>
> >>
> org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56)
> >>        at
> >>
> >>
> org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406)
> >>        at
> >>
> >>
> org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
> >>        at
> >>
> >>
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
> >>        at
> >>
> >>
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
> >>        at
> >>
> >>
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
> >>        at
> >>
> org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568)
> >>        at
> >>
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
> >>        at
> >>
> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
> >>        at
> >>
> >>
> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
> >>        at
> >> org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
> >>        at java.lang.Thread.run(Thread.java:613)
> >> Caused by: <openjpa-1.0.3-r420667:677674 nonfatal general error>
> >> org.apache.openjpa.persistence.PersistenceException: CREATE command
> >> denied
> >> to user 'josso'@'localhost' for table 'accounts' {stmnt 8295201 CREATE
> >> TABLE
> >> dbo.accounts (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2
> >> VARCHAR(255), addr3 VARCHAR(255), addr4 VARCHAR(255), addr5
> VARCHAR(255),
> >> auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge
> >> BIT,
> >> category BIT, country VARCHAR(255), cre_date DATE, credit REAL,
> >> credit_limit
> >> REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email
> >> VARCHAR(255),
> >> first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
> >> last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
> >> man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255),
> >> password
> >> VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state
> VARCHAR(255),
> >> PRIMARY KEY (account)) TYPE = innodb} [code=1142, state=42000]
> >>        at
> >> org.apache.openjpa.jdbc.meta.MappingTool.record(MappingTool.java:549)
> >>        at
> >> org.apache.openjpa.jdbc.meta.MappingTool.record(MappingTool.java:449)
> >>        at
> >>
> >>
> org.apache.openjpa.jdbc.kernel.JDBCBrokerFactory.synchronizeMappings(JDBCBrokerFactory.java:170)
> >>        at
> >>
> >>
> org.apache.openjpa.jdbc.kernel.JDBCBrokerFactory.newBrokerImpl(JDBCBrokerFactory.java:130)
> >>        at
> >>
> >>
> org.apache.openjpa.kernel.AbstractBrokerFactory.newBroker(AbstractBrokerFactory.java:188)
> >>        at
> >>
> >>
> org.apache.openjpa.kernel.DelegatingBrokerFactory.newBroker(DelegatingBrokerFactory.java:142)
> >>        at
> >>
> >>
> org.apache.openjpa.persistence.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:192)
> >>        at
> >>
> >>
> org.apache.openjpa.persistence.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:56)
> >>        at
> >>
> >>
> org.apache.geronimo.persistence.CMPEntityManagerTxScoped.createEntityManager(CMPEntityManagerTxScoped.java:74)
> >>        at
> >>
> >>
> org.apache.geronimo.persistence.CMPEntityManagerTxScoped.getEntityManager(CMPEntityManagerTxScoped.java:55)
> >>        at
> >>
> >>
> org.apache.geronimo.persistence.CMPEntityManagerTxScoped.createNamedQuery(CMPEntityManagerTxScoped.java:259)
> >>        at
> >>
> >>
> com.nuvoip.services.ipcalls.business.users.CallingCardUser.findByUsername(CallingCardUser.java:76)
> >>        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> >>        at
> >>
> >>
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
> >>        at
> >>
> >>
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> >>        at java.lang.reflect.Method.invoke(Method.java:585)
> >>        at
> >>
> >>
> org.apache.openejb.core.interceptor.ReflectionInvocationContext$Invocation.invoke(ReflectionInvocationContext.java:158)
> >>        at
> >>
> >>
> org.apache.openejb.core.interceptor.ReflectionInvocationContext.proceed(ReflectionInvocationContext.java:141)
> >>        at
> >>
> >>
> org.apache.openejb.core.interceptor.InterceptorStack.invoke(InterceptorStack.java:67)
> >>        at
> >>
> >>
> org.apache.openejb.core.stateless.StatelessContainer._invoke(StatelessContainer.java:210)
> >>        at
> >>
> >>
> org.apache.openejb.core.stateless.StatelessContainer._invoke(StatelessContainer.java:188)
> >>        at
> >>
> >>
> org.apache.openejb.core.stateless.StatelessContainer.invoke(StatelessContainer.java:165)
> >>        at
> >>
> >>
> org.apache.openejb.server.ejbd.EjbRequestHandler.doEjbObject_BUSINESS_METHOD(EjbRequestHandler.java:238)
> >>        at
> >>
> >>
> org.apache.openejb.server.ejbd.EjbRequestHandler.processRequest(EjbRequestHandler.java:129)
> >>        at
> >>
> >>
> org.apache.openejb.server.ejbd.EjbDaemon.processEjbRequest(EjbDaemon.java:164)
> >>        at
> >> org.apache.openejb.server.ejbd.EjbDaemon.service(EjbDaemon.java:122)
> >>        at
> >> org.apache.openejb.server.ejbd.EjbDaemon.service(EjbDaemon.java:84)
> >>        at
> >> org.apache.openejb.server.ejbd.EjbServer.service(EjbServer.java:60)
> >>        at
> >> org.apache.openejb.server.ServicePool$2.run(ServicePool.java:78)
> >>        at
> >> org.apache.openejb.server.ServicePool$3.run(ServicePool.java:101)
> >>        at
> >>
> >>
> java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
> >>        at
> >>
> >>
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
> >>        ... 1 more
> >> Caused by: java.lang.Exception:
> >> org.apache.openjpa.lib.jdbc.ReportingSQLException: CREATE command denied
> >> to
> >> user 'josso'@'localhost' for table 'accounts' {stmnt 8295201 CREATE
> TABLE
> >> dbo.accounts (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2
> >> VARCHAR(255), addr3 VARCHAR(255), addr4 VARCHAR(255), addr5
> VARCHAR(255),
> >> auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge
> >> BIT,
> >> category BIT, country VARCHAR(255), cre_date DATE, credit REAL,
> >> credit_limit
> >> REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email
> >> VARCHAR(255),
> >> first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
> >> last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
> >> man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255),
> >> password
> >> VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state
> VARCHAR(255),
> >> PRIMARY KEY (account)) TYPE = innodb} [code=1142, state=42000]
> >>        at
> >>
> >>
> org.apache.openjpa.util.Exceptions.replaceNestedThrowables(Exceptions.java:242)
> >>        at
> >>
> >>
> org.apache.openjpa.persistence.PersistenceException.writeObject(PersistenceException.java:100)
> >>        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> >>        at
> >>
> >>
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
> >>        at
> >>
> >>
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> >>        at java.lang.reflect.Method.invoke(Method.java:585)
> >>        at
> >> java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:917)
> >>        at
> >> ja
> ...
>
> [Message clipped]

Re: Problem with multi persistence units

Posted by Kevin Sutter <kw...@gmail.com>.
I'm not a Geronimo expert.  If they are passing in these arguments, then it
must be for some reason.  And, turning them off manually (override) probably
would just surface problems from another area.  I'll cross post this
question to the Geronimo users forum to see if you get any bites over
there...

Good luck,
Kevin

On Wed, Feb 11, 2009 at 10:08 PM, bongosdude <bo...@gmail.com> wrote:

>
> Kevin,
> So what value of openjpa.MetaDataFactory should be for geronimo? If I can
> specify as system properties, How can I turn off "openjpa.MetaDataFactory"
> and penjpa.jdbc.SynchronizeMappings: buildSchema(ForeignKeys=true)?
>
> -B
>
>
> Kevin Sutter wrote:
> >
> > Hi,
> > It looks like Geronimo might be passing in some extra properties to
> > OpenJPA???  In the trace, there are two openjpa properties that are
> > suspect.  You don't have them in your persistence.xml.  And, if you are
> > not
> > passing them in as system properties, then my next guess is Geronimo.
>  The
> > two properties that seem to be causing your situation are these:
> >
> > openjpa.MetaDataFactory:
> > jpa(Files=/usr/local/geronimo-
> >
> tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar)
> >
> > openjpa.jdbc.SynchronizeMappings: buildSchema(ForeignKeys=true)
> >
> > The first one (MetaDataFactory) specifies which persistence types to
> > process.  Since a jar file is specified, we will search the jar file for
> > any
> > persistence types (regardless of whether they are listed in a
> > persistence.xml file or not).  Our documentation explains this a bit more
> > [1].
> >
> > The next property (SynchronizeMappings) is what I was referring to in
> > earlier e-mails.  This is the property that tells OpenJPA to please
> create
> > the tables if they do not exist.
> >
> > You can see in the trace that DigitalkUser and DigitalkAccount are being
> > processed since they exist in the jar file specified in the
> > MetaDataFactory
> > property:
> >
> > 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> > "/usr/local/geronimo-tomcat6-
> >
> javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> > found persistent types
> > [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount].
> >
> > Bottom line, you need to determine how those properties are being passed
> > into OpenJPA.  We're just doing what's being requested...  :-)
> >
> > Good luck,
> > Kevin
> >
> > [1]
> >
> http://openjpa.apache.org/builds/latest/docs/manual/manual.html#ref_guide_meta_factory
> >
> > On Tue, Feb 10, 2009 at 1:50 PM, bongosdude <bo...@gmail.com>
> wrote:
> >
> >>
> >>
> >> Kevin,
> >>
> >> I copy the trace here for you to review.
> >>
> >> 1. There are no other persistence.xml with create table settings
> >> 2. DigitalkUser and DigitalkAccount are two entity of separate database
> >> (2nd
> >> persistence unit.)
> >> 3. OpenJPA created tables accounts (DigitalkAccount) in my first
> >> persistence
> >> unit. I deleted it and it created again. The log is misleading.
> >>
> >> My environment
> >>
> >> OpenJPA 1.2.0
> >> Apache Jeronimo 2.1.3
> >> JDK 1.5
> >> Mac OS x
> >>
> >>
> >> Thanks for helping
> >>
> >> -B
> >>
> >>
> >> <persistence xmlns="http://java.sun.com/xml/ns/persistence"
> >>             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> >> version="1.0"
> >>             xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
> >> http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
> >>    <persistence-unit name="CallingCardUsersUnit"
> >> transaction-type="RESOURCE_LOCAL" >
> >>        <description>Entity Beans for mysql</description>
> >>
> >>
> <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
> >>
> <non-jta-data-source>callingcard_users_notx</non-jta-data-source>
> >>
> >>  <class>com.nuvoip.services.ipcalls.model.entity.users.User</class>
> >>
> >>  <class>com.nuvoip.services.ipcalls.model.entity.users.UserRole</class>
> >>
> >>
> >>
> <class>com.nuvoip.services.ipcalls.model.entity.users.UserAccount</class>
> >>                <properties>
> >>                         <property name="openjpa.Log"
> >> value="DefaultLevel=TRACE" />
> >>                 </properties>
> >>    </persistence-unit>
> >>
> >>    <persistence-unit name="DigittalkUnit"
> >> transaction-type="RESOURCE_LOCAL">
> >>        <description>Entity Beans for ms sql</description>
> >>
> >>
> <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
> >>         <non-jta-data-source>mynuvoip</non-jta-data-source>
> >>
> >>
> >>
> <class>com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser</class>
> >>
> >>
> >>
> <class>com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount</class>
> >>                <properties>
> >>                         <property name="openjpa.Log"
> >> value="DefaultLevel=TRACE" />
> >>                 </properties>
> >>    </persistence-unit>
> >>
> >>
> >> </persistence>
> >>
> >>
> >>
> >> 14:38:25,745 INFO  [TimingFilter] Request time: 153 ms
> >> 14:38:25,745 ERROR [PagePool] Page Page[accounts/Start en] is dirty, and
> >> will be discarded (rather than returned to the page pool).
> >> 14:38:26,940 INFO  [TimingFilter] Request time: 1188 ms
> >> 14:38:34,238 INFO  [BusinessServicesLocator] InitialContext environment
> =
> >> {java.naming.provider.url=ejbd://localhost:4201/,
> >>
> >>
> java.naming.factory.initial=org.apache.openejb.client.RemoteInitialContextFactory,
> >> java.naming.factory.url.pkgs=org.apache.xbean.naming,
> >> openejb.remotable.businessLocals=true}
> >> 14:38:34,278 INFO  [OpenEJB] invoking method create on
> >> callingcard-ejb.jar/CallingCardUser
> >> 14:38:34,289 INFO  [OpenEJB] finished invoking method create
> >> 14:38:34,394 INFO  [Transaction] TX Required: Started transaction
> >> org.apache.geronimo.transaction.manager.TransactionImpl@903331
> >> 124027  CallingCardUsersUnit  INFO   [ejbd 1] openjpa.Runtime - Starting
> >> OpenJPA 1.0.3
> >> 124027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Runtime -
> >> Properties:
> >> openjpa.EntityManagerFactory: default
> >> openjpa.DataCache: false
> >> openjpa.MetaDataFactory:
> >>
> >>
> jpa(Files=/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar)
> >> openjpa.InverseManager: false
> >> openjpa.ReadLockLevel: read
> >> openjpa.DataCacheManager: default
> >> openjpa.jdbc.SubclassFetchMode: join
> >> openjpa.jdbc.UpdateManager: operation-order
> >> openjpa.jdbc.SynchronizeMappings: buildSchema(ForeignKeys=true)
> >> openjpa.NontransactionalRead: true
> >> openjpa.QueryCompilationCache: true
> >> openjpa.MaxFetchDepth: -1
> >> openjpa.RetainState: true
> >> openjpa.DynamicDataStructs: false
> >> openjpa.BrokerFactory: jdbc
> >> openjpa.WriteLockLevel: write
> >> openjpa.ManagedRuntime: auto
> >> openjpa.jdbc.EagerFetchMode: parallel
> >> openjpa.RestoreState: immutable
> >> openjpa.jdbc.SchemaFactory: dynamic
> >> openjpa.LockManager: version
> >> openjpa.BrokerImpl: non-finalizing
> >> openjpa.NontransactionalWrite: true
> >> openjpa.MetaDataRepository: default
> >> openjpa.Log: true(DefaultLevel=TRACE)
> >> openjpa.jdbc.ResultSetType: forward-only
> >> openjpa.AutoDetach:
> >> openjpa.ConnectionRetainMode: on-demand
> >> openjpa.RuntimeUnenhancedClasses: supported
> >> openjpa.SavepointManager: in-mem
> >> openjpa.Optimistic: true
> >> openjpa.ConnectionFactoryMode: local
> >> openjpa.Sequence: table(Table=OPENJPASEQ, Increment=100)
> >> openjpa.FetchGroups: default
> >> openjpa.jdbc.Schemas:
> >> openjpa.Id: CallingCardUsersUnit
> >> openjpa.OrphanedKeyAction: log
> >> openjpa.FlushBeforeQueries: true
> >> openjpa.AutoClear: datastore
> >> openjpa.Compatibility: default
> >> openjpa.jdbc.LRSSize: query
> >> openjpa.DetachState: loaded
> >> openjpa.Multithreaded: false
> >> openjpa.FetchBatchSize: -1
> >> openjpa.jdbc.SQLFactory: default
> >> openjpa.IgnoreChanges: false
> >> openjpa.jdbc.MappingDefaults: jpa
> >> openjpa.TransactionMode: local
> >> openjpa.RetryClassRegistration: false
> >> openjpa.jdbc.FetchDirection: forward
> >> openjpa.ClassResolver:
> >> org.apache.openjpa.persistence.PersistenceUnitInfoImpl$ClassResolverImpl
> >> openjpa.LockTimeout: -1
> >> openjpa.DataCacheTimeout: -1
> >> openjpa.QueryCache: true
> >> openjpa.jdbc.DriverDataSource: simple
> >> openjpa.jdbc.TransactionIsolation: default
> >> openjpa.ProxyManager: default
> >> 124067  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
> >> metadata factory
> >> "org.apache.openjpa.persistence.jdbc.PersistenceMappingFactory@a11a18".
> >> 124071  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC -
> OpenJPA
> >> will now connect to the database to attempt to determine what type of
> >> database dictionary to use. You may prevent this connection in the
> future
> >> by
> >> setting your openjpa.jdbc.DBDictionary configuration property to the
> >> appropriate value for your database (see the documentation for available
> >> values).
> >> 124823  CallingCardUsersUnit  INFO   [ejbd 1] openjpa.jdbc.JDBC - Using
> >> dictionary class "org.apache.openjpa.jdbc.sql.MySQLDictionary" (MySQL
> >> 5.1.30
> >> ,MySQL-AB JDBC Driver mysql-connector-java-5.1.7 ( Revision:
> >> ${svn.Revision}
> >> )).
> >> 124826  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC -
> >> catalogSeparator: .
> >> catalogTerm: database
> >> databaseProductName: MySQL
> >> databaseProductVersion: 5.1.30
> >> driverName: MySQL-AB JDBC Driver
> >> driverVersion: mysql-connector-java-5.1.7 ( Revision: ${svn.Revision} )
> >> extraNameCharacters: #@
> >> identifierQuoteString: `
> >> numericFunctions:
> >>
> >>
> ABS,ACOS,ASIN,ATAN,ATAN2,BIT_COUNT,CEILING,COS,COT,DEGREES,EXP,FLOOR,LOG,LOG10,MAX,MIN,MOD,PI,POW,POWER,RADIANS,RAND,ROUND,SIN,SQRT,TAN,TRUNCATE
> >> procedureTerm: PROCEDURE
> >> schemaTerm:
> >> searchStringEscape: \
> >> sqlKeywords:
> >>
> >>
> ACCESSIBLE,ANALYZE,ASENSITIVE,BEFORE,BIGINT,BINARY,BLOB,CALL,CHANGE,CONDITION,DATABASE,DATABASES,DAY_HOUR,DAY_MICROSECOND,DAY_MINUTE,DAY_SECOND,DELAYED,DETERMINISTIC,DISTINCTROW,DIV,DUAL,EACH,ELSEIF,ENCLOSED,ESCAPED,EXIT,EXPLAIN,FLOAT4,FLOAT8,FORCE,FULLTEXT,HIGH_PRIORITY,HOUR_MICROSECOND,HOUR_MINUTE,HOUR_SECOND,IF,IGNORE,INFILE,INOUT,INT1,INT2,INT3,INT4,INT8,ITERATE,KEYS,KILL,LEAVE,LIMIT,LINEAR,LINES,LOAD,LOCALTIME,LOCALTIMESTAMP,LOCK,LONG,LONGBLOB,LONGTEXT,LOOP,LOW_PRIORITY,MEDIUMBLOB,MEDIUMINT,MEDIUMTEXT,MIDDLEINT,MINUTE_MICROSECOND,MINUTE_SECOND,MOD,MODIFIES,NO_WRITE_TO_BINLOG,OPTIMIZE,OPTIONALLY,OUT,OUTFILE,PURGE,RANGE,READS,READ_ONLY,READ_WRITE,REGEXP,RELEASE,RENAME,REPEAT,REPLACE,REQUIRE,RETURN,RLIKE,SCHEMAS,SECOND_MICROSECOND,SENSITIVE,SEPARATOR,SHOW,SPATIAL,SPECIFIC,SQLEXCEPTION,SQL_BIG_RESULT,SQL_CALC_FOUND_ROWS,SQL_SMALL_RESULT,SSL,STARTING,STRAIGHT_JOIN,TERMINATED,TINYBLOB,TINYINT,TINYTEXT,TRIGGER,UNDO,UNLOCK,UNSIGNED,USE,UTC_DATE,UTC_TIME,UTC_TIMESTAMP,VARBINARY,VARCHARACTER,WHILE,X509,XOR,YEAR_MONTH,ZEROFILL
> >> stringFunctions:
> >>
> >>
> ASCII,BIN,BIT_LENGTH,CHAR,CHARACTER_LENGTH,CHAR_LENGTH,CONCAT,CONCAT_WS,CONV,ELT,EXPORT_SET,FIELD,FIND_IN_SET,HEX,INSERT,INSTR,LCASE,LEFT,LENGTH,LOAD_FILE,LOCATE,LOCATE,LOWER,LPAD,LTRIM,MAKE_SET,MATCH,MID,OCT,OCTET_LENGTH,ORD,POSITION,QUOTE,REPEAT,REPLACE,REVERSE,RIGHT,RPAD,RTRIM,SOUNDEX,SPACE,STRCMP,SUBSTRING,SUBSTRING,SUBSTRING,SUBSTRING,SUBSTRING_INDEX,TRIM,UCASE,UPPER
> >> systemFunctions:
> >>
> >>
> DATABASE,USER,SYSTEM_USER,SESSION_USER,PASSWORD,ENCRYPT,LAST_INSERT_ID,VERSION
> >> timeDateFunctions:
> >>
> >>
> DAYOFWEEK,WEEKDAY,DAYOFMONTH,DAYOFYEAR,MONTH,DAYNAME,MONTHNAME,QUARTER,WEEK,YEAR,HOUR,MINUTE,SECOND,PERIOD_ADD,PERIOD_DIFF,TO_DAYS,FROM_DAYS,DATE_FORMAT,TIME_FORMAT,CURDATE,CURRENT_DATE,CURTIME,CURRENT_TIME,NOW,SYSDATE,CURRENT_TIMESTAMP,UNIX_TIMESTAMP,FROM_UNIXTIME,SEC_TO_TIME,TIME_TO_SEC
> >> url: jdbc:mysql://localhost:3306/callingcard_users
> >> userName: josso@localhost
> >> defaultTransactionIsolation: 2
> >> driverMajorVersion: 5
> >> driverMinorVersion: 1
> >> maxBinaryLiteralLength: 16777208
> >> maxCatalogNameLength: 32
> >> maxCharLiteralLength: 16777208
> >> maxColumnNameLength: 64
> >> maxColumnsInGroupBy: 64
> >> maxColumnsInIndex: 16
> >> maxColumnsInOrderBy: 64
> >> maxColumnsInSelect: 256
> >> maxColumnsInTable: 512
> >> maxConnections: 0
> >> maxCursorNameLength: 64
> >> maxIndexLength: 256
> >> maxProcedureNameLength: 0
> >> maxRowSize: 2147483639
> >> maxSchemaNameLength: 0
> >> maxStatementLength: 65531
> >> maxStatements: 0
> >> maxTableNameLength: 64
> >> maxTablesInSelect: 256
> >> maxUserNameLength: 16
> >> isCatalogAtStart: true
> >> isReadOnly: false
> >> nullPlusNonNullIsNull: true
> >> nullsAreSortedAtEnd: false
> >> nullsAreSortedAtStart: false
> >> nullsAreSortedHigh: false
> >> nullsAreSortedLow: true
> >> storesLowerCaseIdentifiers: false
> >> storesLowerCaseQuotedIdentifiers: false
> >> storesMixedCaseIdentifiers: true
> >> storesMixedCaseQuotedIdentifiers: true
> >> storesUpperCaseIdentifiers: false
> >> storesUpperCaseQuotedIdentifiers: true
> >> supportsAlterTableWithAddColumn: true
> >> supportsAlterTableWithDropColumn: true
> >> supportsANSI92EntryLevelSQL: true
> >> supportsANSI92FullSQL: false
> >> supportsANSI92IntermediateSQL: false
> >> supportsCatalogsInDataManipulation: true
> >> supportsCatalogsInIndexDefinitions: true
> >> supportsCatalogsInPrivilegeDefinitions: true
> >> supportsCatalogsInProcedureCalls: true
> >> supportsCatalogsInTableDefinitions: true
> >> supportsColumnAliasing: true
> >> supportsConvert: false
> >> supportsCoreSQLGrammar: true
> >> supportsCorrelatedSubqueries: true
> >> supportsDataDefinitionAndDataManipulationTransactions: false
> >> supportsDataManipulationTransactionsOnly: false
> >> supportsDifferentTableCorrelationNames: true
> >> supportsExpressionsInOrderBy: true
> >> supportsExtendedSQLGrammar: false
> >> supportsFullOuterJoins: false
> >> supportsGroupBy: true
> >> supportsGroupByBeyondSelect: true
> >> supportsGroupByUnrelated: true
> >> supportsIntegrityEnhancementFacility: false
> >> supportsLikeEscapeClause: true
> >> supportsLimitedOuterJoins: true
> >> supportsMinimumSQLGrammar: true
> >> supportsMixedCaseIdentifiers: false
> >> supportsMixedCaseQuotedIdentifiers: false
> >> supportsMultipleResultSets: false
> >> supportsMultipleTransactions: true
> >> supportsNonNullableColumns: true
> >> supportsOpenCursorsAcrossCommit: false
> >> supportsOpenCursorsAcrossRollback: false
> >> supportsOpenStatementsAcrossCommit: false
> >> supportsOpenStatementsAcrossRollback: false
> >> supportsOrderByUnrelated: false
> >> supportsOuterJoins: true
> >> supportsPositionedDelete: false
> >> supportsPositionedUpdate: false
> >> supportsSchemasInDataManipulation: false
> >> supportsSchemasInIndexDefinitions: false
> >> supportsSchemasInPrivilegeDefinitions: false
> >> supportsSchemasInProcedureCalls: false
> >> supportsSchemasInTableDefinitions: false
> >> supportsSelectForUpdate: true
> >> supportsStoredProcedures: true
> >> supportsSubqueriesInComparisons: true
> >> supportsSubqueriesInExists: true
> >> supportsSubqueriesInIns: true
> >> supportsSubqueriesInQuantifieds: true
> >> supportsTableCorrelationNames: true
> >> supportsTransactions: true
> >> supportsUnion: true
> >> supportsUnionAll: true
> >> usesLocalFilePerTable: false
> >> usesLocalFiles: false
> >> allProceduresAreCallable: false
> >> allTablesAreSelectable: false
> >> dataDefinitionCausesTransactionCommit: true
> >> dataDefinitionIgnoredInTransactions: false
> >> doesMaxRowSizeIncludeBlobs: true
> >> supportsBatchUpdates: true
> >> 124830  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 11435458> [0 ms] close
> >> 124863  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 5935820> [0 ms] close
> >> 124906  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Scanning
> >> jar
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> for persistent types.
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >>
> >>
> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount.class"
> >> since it is a class, and will not need to be re-parsed later.
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount].
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >> "com/nuvoip/services/ipcalls/model/entity/users/UserRole.class" since it
> >> is
> >> a class, and will not need to be re-parsed later.
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.users.UserRole].
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >>
> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser.class"
> >> since it is a class, and will not need to be re-parsed later.
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser].
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >> "com/nuvoip/services/ipcalls/model/entity/users/User.class" since it is
> a
> >> class, and will not need to be re-parsed later.
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.users.User].
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >> "com/nuvoip/services/ipcalls/model/entity/users/UserAccount.class" since
> >> it
> >> is a class, and will not need to be re-parsed later.
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.users.UserAccount].
> >> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Scanning
> >> resource "META-INF/orm.xml" for persistent types.
> >> 124911  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> parsePersistentTypeNames() found
> >> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser,
> >> com.nuvoip.services.ipcalls.model.entity.users.UserAccount,
> >> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount,
> >> com.nuvoip.services.ipcalls.model.entity.users.User,
> >> com.nuvoip.services.ipcalls.model.entity.users.UserRole].
> >> 124911  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Found 5
> >> classes with metadata in 5 milliseconds.
> >> 125076  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> >> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser"
> >> requires
> >> runtime enhancement: true
> >> 125100  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> >> metadata for "class
> >> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" under
> >> mode "[META][QUERY]".
> >> 125100  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> class
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> >> 125100  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> package
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> >> 125106  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Generating
> >> default metadata for type
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> >> 125106  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
> >> reflection for metadata generation.
> >> 125137  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "DigitalkUser.findByAccountNo".
> >> 125165  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "DigitalkUser.findByCliAndUsername".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> >> persistence-capable superclass of
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" to
> >> "null".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> metadata for
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805
> >> ".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.accountId
> >> ".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.callback
> >> ".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.cli
> >> ".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.cliPin
> >> ".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.createDate
> >> ".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.lastNumberDial
> >> ".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.pin
> >> ".
> >> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.userName
> >> ".
> >> 125199  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> Enhancing
> >> type "class
> >> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> >> 125018  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
> >> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser"
> >> requires
> >> runtime enhancement: false
> >> 125233  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> >> "com/nuvoip/services/ipcalls/model/entity/users/UserAccount" requires
> >> runtime enhancement: true
> >> 125236  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> Enhancing
> >> type "class com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
> >> 125058  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
> >> "com/nuvoip/services/ipcalls/model/entity/users/UserAccount" requires
> >> runtime enhancement: false
> >> 125272  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> >> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount"
> >> requires runtime enhancement: true
> >> 125318  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> >> metadata for "class
> >> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount"
> >> under
> >> mode "[META][QUERY]".
> >> 125318  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> class
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> >> 125324  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Generating
> >> default metadata for type
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> >> 125324  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
> >> reflection for metadata generation.
> >> 125364  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "DigitalkAccount.findByAccountNo".
> >> 125397  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "DigitalkAccount.findByEmail".
> >> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> >> persistence-capable superclass of
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount"
> to
> >> "null".
> >> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> metadata for
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550
> >> ".
> >> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.accountId
> >> ".
> >> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address1
> >> ".
> >> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address2
> >> ".
> >> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address3
> >> ".
> >> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address4
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address5
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.autoRechargeAmount
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.autoRechargeThreshold
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.autoRechrgEnabled
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.businessCategory
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.country
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.createDate
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.credit
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.creditLimit
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.creditMsgEnabled
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.creditType
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.currency
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.email
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.firstAccessDate
> >> ".
> >> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.firstname
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.hotDial
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lastAccessDate
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lastModified
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lastname
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lead_source
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.manualRecharge
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.manualRechargeAmt
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "
> >>
> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.name
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.password
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.speedDial
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.speedDialKey
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.state
> >> ".
> >> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.users
> >> ".
> >> 125453  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> Enhancing
> >> type "class
> >> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> >> 125314  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
> >> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount"
> >> requires runtime enhancement: false
> >> 125532  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> >> "com/nuvoip/services/ipcalls/model/entity/users/UserRole" requires
> >> runtime
> >> enhancement: true
> >> 125542  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> Enhancing
> >> type "class com.nuvoip.services.ipcalls.model.entity.users.UserRole".
> >> 125351  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
> >> "com/nuvoip/services/ipcalls/model/entity/users/UserRole" requires
> >> runtime
> >> enhancement: false
> >> 125412  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
> >> metadata factory
> >> "org.apache.openjpa.persistence.jdbc.PersistenceMappingFactory@9168ba".
> >> 125413  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> >> metadata for "class
> >> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" under
> >> mode "[META][QUERY]".
> >> 125413  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Scanning
> >> jar
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> for persistent types.
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >>
> >>
> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount.class"
> >> since it is a class, and will not need to be re-parsed later.
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount].
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >> "com/nuvoip/services/ipcalls/model/entity/users/UserRole.class" since it
> >> is
> >> a class, and will not need to be re-parsed later.
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.users.UserRole].
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >>
> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser.class"
> >> since it is a class, and will not need to be re-parsed later.
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser].
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >> "com/nuvoip/services/ipcalls/model/entity/users/User.class" since it is
> a
> >> class, and will not need to be re-parsed later.
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.users.User].
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Skipping
> >> persistent type location association for location
> >> "com/nuvoip/services/ipcalls/model/entity/users/UserAccount.class" since
> >> it
> >> is a class, and will not need to be re-parsed later.
> >> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> >>
> >>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> >> found persistent types
> >> [com.nuvoip.services.ipcalls.model.entity.users.UserAccount].
> >> 125420  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> Scanning
> >> resource "META-INF/orm.xml" for persistent types.
> >> 125421  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> parsePersistentTypeNames() found
> >> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser,
> >> com.nuvoip.services.ipcalls.model.entity.users.UserAccount,
> >> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount,
> >> com.nuvoip.services.ipcalls.model.entity.users.User,
> >> com.nuvoip.services.ipcalls.model.entity.users.UserRole].
> >> 125421  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Found 5
> >> classes with metadata in 8 milliseconds.
> >> 125456  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> class
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> >> 125456  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> package
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> >> 125482  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Generating
> >> default metadata for type
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> >> 125518  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "DigitalkUser.findByAccountNo".
> >> 125548  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "DigitalkUser.findByCliAndUsername".
> >> 125585  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> >> persistence-capable superclass of
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" to
> >> "null".
> >> 125585  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> metadata for
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430
> >> ".
> >> 125585  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.accountId
> >> ".
> >> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.callback
> >> ".
> >> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cli
> >> ".
> >> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cliPin
> >> ".
> >> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.createDate
> >> ".
> >> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.lastNumberDial
> >> ".
> >> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.pin
> >> ".
> >> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.userName
> >> ".
> >> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Preparing
> >> mapping for
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> >> 125595  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.accountId
> >> ".
> >> 125606  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "accountId" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.callback
> >> ".
> >> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "callback"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cli
> >> ".
> >> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "cli" has
> >> mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cliPin
> >> ".
> >> 125609  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "cliPin"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125609  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.createDate
> >> ".
> >> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "createDate" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> >> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.lastNumberDial
> >> ".
> >> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "lastNumberDial" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.pin
> >> ".
> >> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "pin" has
> >> mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.userName
> >> ".
> >> 125618  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "userName"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125620  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser<discriminator>"
> >> has mapping strategy "none".
> >> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser<version>"
> >> has mapping strategy "none".
> >> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> mapping for
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430
> >> ".
> >> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" has
> >> mapping strategy "full".
> >> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> >> metadata for "class
> >> com.nuvoip.services.ipcalls.model.entity.users.UserAccount" under mode
> >> "[META][QUERY]".
> >> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> class "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
> >> 125630  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> package "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
> >> 125631  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Generating
> >> default metadata for type
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
> >> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> >> persistence-capable superclass of
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount" to "null".
> >> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> metadata for
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295".
> >> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.accountNo
> >> ".
> >> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.contextName
> >> ".
> >> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.userId
> >> ".
> >> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Preparing
> >> mapping for
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
> >> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.userId
> >> ".
> >> 125663  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "userId"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125663  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.accountNo
> >> ".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "accountNo" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.contextName
> >> ".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "contextName" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount<discriminator>"
> >> has mapping strategy "none".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount<version>"
> has
> >> mapping strategy "none".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> mapping for
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount" has mapping
> >> strategy "full".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> >> metadata for "class
> >> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount"
> >> under
> >> mode "[META][QUERY]".
> >> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> class
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> >> 125667  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Generating
> >> default metadata for type
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> >> 125696  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "DigitalkAccount.findByAccountNo".
> >> 125728  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "DigitalkAccount.findByEmail".
> >> 125768  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> table generator "newaccountnum".
> >> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> >> persistence-capable superclass of
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount"
> to
> >> "null".
> >> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> metadata for
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798
> >> ".
> >> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.accountId
> >> ".
> >> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address1
> >> ".
> >> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address2
> >> ".
> >> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address3
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address4
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address5
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeAmount
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeThreshold
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechrgEnabled
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.businessCategory
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.country
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.createDate
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.credit
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditLimit
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditMsgEnabled
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditType
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.currency
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.email
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstAccessDate
> >> ".
> >> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstname
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.hotDial
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastAccessDate
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastModified
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastname
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lead_source
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRecharge
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRechargeAmt
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "
> >>
> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.name
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.password
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDial
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDialKey
> >> ".
> >> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.state
> >> ".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.users
> >> ".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Preparing
> >> mapping for
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.accountId
> >> ".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "accountId" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address1
> >> ".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "address1"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address2
> >> ".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "address2"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address3
> >> ".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "address3"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address4
> >> ".
> >> 125807  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "address4"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125807  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address5
> >> ".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "address5"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeAmount
> >> ".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "autoRechargeAmount" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeThreshold
> >> ".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "autoRechargeThreshold" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechrgEnabled
> >> ".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "autoRechrgEnabled" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.businessCategory
> >> ".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "businessCategory" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.country
> >> ".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "country"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.createDate
> >> ".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "createDate" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> >> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.credit
> >> ".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "credit"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditLimit
> >> ".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "creditLimit" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditMsgEnabled
> >> ".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "creditMsgEnabled" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditType
> >> ".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "creditType" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.currency
> >> ".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "currency"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.email
> >> ".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "email"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstAccessDate
> >> ".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "firstAccessDate" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> >> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstname
> >> ".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "firstname" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.hotDial
> >> ".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "hotDial"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastAccessDate
> >> ".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "lastAccessDate" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastModified
> >> ".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "lastModified" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastname
> >> ".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "lastname"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lead_source
> >> ".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "lead_source" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRecharge
> >> ".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "manualRecharge" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRechargeAmt
> >> ".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "manualRechargeAmt" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "
> >>
> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.name
> >> ".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "name" has
> >> mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.password
> >> ".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "password"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDial
> >> ".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "speedDial" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDialKey
> >> ".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "speedDialKey" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.state
> >> ".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "state"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount<discriminator>"
> >> has mapping strategy "none".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount<version>"
> >> has mapping strategy "none".
> >> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> mapping for
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798
> >> ".
> >> 125812  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount"
> >> has
> >> mapping strategy "full".
> >> 125812  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.users
> >> ".
> >> 125824  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "users"
> >> has mapping strategy
> >>
> >>
> "org.apache.openjpa.jdbc.meta.strats.RelationCollectionInverseKeyFieldStrategy".
> >> 125824  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> >> metadata for "class com.nuvoip.services.ipcalls.model.entity.users.User"
> >> under mode "[META][QUERY]".
> >> 125824  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> class "com.nuvoip.services.ipcalls.model.entity.users.User".
> >> 125825  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Generating
> >> default metadata for type
> >> "com.nuvoip.services.ipcalls.model.entity.users.User".
> >> 125850  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "User.findByUserName".
> >> 125875  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> query "User.doesUserExist".
> >> 125903  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> >> persistence-capable superclass of
> >> "com.nuvoip.services.ipcalls.model.entity.users.User" to "null".
> >> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> metadata for
> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277
> >> ".
> >> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.enabled
> >> ".
> >> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.grantedAuthorities
> >> ".
> >> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> >> metadata for "class
> >> com.nuvoip.services.ipcalls.model.entity.users.UserRole"
> >> under mode "[META][QUERY]".
> >> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> >> class "com.nuvoip.services.ipcalls.model.entity.users.UserRole".
> >> 125905  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Generating
> >> default metadata for type
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole".
> >> 125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> >> persistence-capable superclass of
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole" to "null".
> >> 125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.password".
> >> 125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.username".
> >> 125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrAccount
> ".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrId".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.version
> >> ".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> metadata for
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.authority
> >> ".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field "
> com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.id
> >> ".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.username
> >> ".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.version
> ".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Preparing
> >> mapping for "com.nuvoip.services.ipcalls.model.entity.users.User".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrId".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "usrId"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.enabled
> >> ".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "enabled"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.password".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "password"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.username".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "username"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.version
> >> ".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "version"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.users.User<discriminator>" has
> >> mapping strategy "none".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.users.User<version>" has
> >> mapping
> >> strategy "none".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Preparing
> >> mapping for "com.nuvoip.services.ipcalls.model.entity.users.UserRole".
> >> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field "
> com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.id
> >> ".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "id" has
> >> mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.authority
> >> ".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "authority" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.username
> >> ".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "username"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.version
> ".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  "version"
> >> has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole<discriminator>"
> >> has
> >> mapping strategy "none".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole<version>" has
> >> mapping strategy "none".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> mapping for
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.users.User" has mapping
> >> strategy
> >> "full".
> >> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >>
> >>
> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.grantedAuthorities
> >> ".
> >> 125937  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "grantedAuthorities" has mapping strategy
> >>
> >>
> "org.apache.openjpa.jdbc.meta.strats.RelationCollectionInverseKeyFieldStrategy".
> >> 125937  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >>  Resolving
> >> field
> >> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrAccount
> ".
> >> 125944  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "usrAccount" has mapping strategy
> >> "org.apache.openjpa.jdbc.meta.strats.RelationFieldStrategy".
> >> 125944  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> Resolving
> >> mapping for
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170".
> >> 125944  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> >> "com.nuvoip.services.ipcalls.model.entity.users.UserRole" has mapping
> >> strategy "full".
> >> 125958  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> table information for schema name "null", table name "authorities".
> >> 125958  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 10469122> getColumns: callingcard_users, null,
> >> authorities,
> >> null
> >> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> column information for table "authorities".
> >> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "id" on table "authorities".
> >> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "username" on table "authorities".
> >> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "authority" on table "authorities".
> >> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "version" on table "authorities".
> >> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> table information for schema name "null", table name "OPENJPASEQ".
> >> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 10469122> getColumns: callingcard_users, null,
> OPENJPASEQ,
> >> null
> >> 126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> column information for table "OPENJPASEQ".
> >> 126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "ID" on table "OPENJPASEQ".
> >> 126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "SEQUENCE_VALUE" on table "OPENJPASEQ".
> >> 126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> table information for schema name "null", table name "subscribers".
> >> 126009  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 10469122> getColumns: callingcard_users, null,
> >> subscribers,
> >> null
> >> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> column information for table "subscribers".
> >> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "user_id" on table "subscribers".
> >> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "context_nm" on table "subscribers".
> >> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "account_nm" on table "subscribers".
> >> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> sequence information for schema "null", sequence name "null".
> >> 126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 10469122> [1 ms] commit
> >> 126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 10469122> [0 ms] close
> >> 126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> table information for schema name "dbo", table name "accounts".
> >> 126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 3459509> getColumns: callingcard_users, dbo, accounts,
> >> null
> >> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> column information for table "accounts".
> >> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "account" on table "accounts".
> >> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "addr1" on table "accounts".
> >> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "addr2" on table "accounts".
> >> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "addr3" on table "accounts".
> >> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "addr4" on table "accounts".
> >> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "addr5" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "auto_recharge_amount" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "auto_recharge_threshold" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "auto_recharge" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "category" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "country" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "cre_date" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "credit" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "credit_limit" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "credit_msg" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "type" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "currency" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "email" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "first_date" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "fname" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "hot_dial" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "last_date" on table "accounts".
> >> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "last_modified" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "lname" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "lead_source" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "man_recharge" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "man_recharge_amount" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "name" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "password" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "spd_dial" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "spd_key" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "state" on table "accounts".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> table information for schema name "dbo", table name "OPENJPASEQ".
> >> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 3459509> getColumns: callingcard_users, dbo, OPENJPASEQ,
> >> null
> >> 126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "ID" on table "OPENJPASEQ".
> >> 126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "SEQUENCE_VALUE" on table "OPENJPASEQ".
> >> 126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> table information for schema name "dbo", table name "users".
> >> 126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 3459509> getColumns: callingcard_users, dbo, users, null
> >> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> column information for table "users".
> >> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "id" on table "users".
> >> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "username" on table "users".
> >> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "password" on table "users".
> >> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "enabled" on table "users".
> >> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing column "version" on table "users".
> >> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> sequence information for schema "dbo", sequence name "null".
> >> 126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 3459509> [2 ms] commit
> >> 126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 3459509> [0 ms] close
> >> 126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> foreign keys for schema name "null", table name "authorities".
> >> 126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 15855117> getImportedKeys: callingcard_users, null,
> >> authorities
> >> 126059  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing foreign key "fk_authorities_users" on table "authorities
> >> (username)" linking to table "users (username)".  Sequence: "1".
> >> 126059  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> foreign keys for schema name "null", table name "OPENJPASEQ".
> >> 126060  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 15855117> getImportedKeys: callingcard_users, null,
> >> OPENJPASEQ
> >> 126061  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> foreign keys for schema name "null", table name "subscribers".
> >> 126061  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 15855117> getImportedKeys: callingcard_users, null,
> >> subscribers
> >> 126062  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> Found
> >> existing foreign key "subscribers_users_fk" on table "subscribers
> >> (user_id)"
> >> linking to table "users (id)".  Sequence: "1".
> >> 126062  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 15855117> [0 ms] commit
> >> 126062  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 15855117> [0 ms] close
> >> 126063  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> foreign keys for schema name "dbo", table name "accounts".
> >> 126063  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 899387> getImportedKeys: callingcard_users, dbo, accounts
> >> 126065  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> foreign keys for schema name "dbo", table name "OPENJPASEQ".
> >> 126065  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 899387> getImportedKeys: callingcard_users, dbo,
> >> OPENJPASEQ
> >> 126066  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
> >> Reading
> >> foreign keys for schema name "dbo", table name "users".
> >> 126066  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 899387> getImportedKeys: callingcard_users, dbo, users
> >> 126067  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 899387> [0 ms] commit
> >> 126067  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 899387> [0 ms] close
> >> 126067  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema -
> >> Existing
> >> column "authority" on table "authorities" is incompatible with the same
> >> column in the given schema definition. Existing column:
> >> Full Name: authorities.authority
> >> Type: varchar
> >> Size: 50
> >> Default: null
> >> Not Null: true
> >> Given column:
> >> Full Name: authorities.authority
> >> Type: varchar
> >> Size: 255
> >> Default: null
> >> Not Null: false
> >>
> >> 126067  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema -
> >> Existing
> >> column "username" on table "authorities" is incompatible with the same
> >> column in the given schema definition. Existing column:
> >> Full Name: authorities.username
> >> Type: varchar
> >> Size: 50
> >> Default: null
> >> Not Null: true
> >> Given column:
> >> Full Name: authorities.username
> >> Type: varchar
> >> Size: 255
> >> Default: null
> >> Not Null: false
> >>
> >> 126067  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema -
> >> Existing
> >> column "account_nm" on table "subscribers" is incompatible with the same
> >> column in the given schema definition. Existing column:
> >> Full Name: subscribers.account_nm
> >> Type: varchar
> >> Size: 20
> >> Default: null
> >> Not Null: true
> >> Given column:
> >> Full Name: subscribers.account_nm
> >> Type: varchar
> >> Size: 255
> >> Default: null
> >> Not Null: false
> >>
> >> 126068  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema -
> >> Existing
> >> column "context_nm" on table "subscribers" is incompatible with the same
> >> column in the given schema definition. Existing column:
> >> Full Name: subscribers.context_nm
> >> Type: varchar
> >> Size: 50
> >> Default: null
> >> Not Null: false
> >> Given column:
> >> Full Name: subscribers.context_nm
> >> Type: varchar
> >> Size: 255
> >> Default: null
> >> Not Null: false
> >>
> >> 126068  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 7437197> [0 ms] rollback
> >> 126074  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.SQL - <t
> >> 16566280, conn 7437197> executing stmnt 8295201 CREATE TABLE
> dbo.accounts
> >> (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2 VARCHAR(255),
> >> addr3 VARCHAR(255), addr4 VARCHAR(255), addr5 VARCHAR(255),
> >> auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge
> >> BIT,
> >> category BIT, country VARCHAR(255), cre_date DATE, credit REAL,
> >> credit_limit
> >> REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email
> >> VARCHAR(255),
> >> first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
> >> last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
> >> man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255),
> >> password
> >> VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state
> VARCHAR(255),
> >> PRIMARY KEY (account)) TYPE = innodb
> >> 126089  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.SQL - <t
> >> 16566280, conn 7437197> [15 ms] spent
> >> 126089  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> >> 16566280, conn 7437197> [0 ms] close
> >> 14:38:36,465 INFO  [Transaction] TX Required: setRollbackOnly() on
> >> transaction
> >> org.apache.geronimo.transaction.manager.TransactionImpl@903331
> >> 14:38:36,465 INFO  [Transaction] TX Required: Rolling back transaction
> >> org.apache.geronimo.transaction.manager.TransactionImpl@903331
> >> 14:38:36,487 ERROR [[default]] Servlet.service() for servlet default
> >> threw
> >> exception
> >> javax.ejb.EJBException: The bean encountered a non-application
> >> exception.;
> >> nested exception is:
> >>        <openjpa-1.0.3-r420667:677674 nonfatal general error>
> >> org.apache.openjpa.persistence.PersistenceException: CREATE command
> >> denied
> >> to user 'josso'@'localhost' for table 'accounts' {stmnt 8295201 CREATE
> >> TABLE
> >> dbo.accounts (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2
> >> VARCHAR(255), addr3 VARCHAR(255), addr4 VARCHAR(255), addr5
> VARCHAR(255),
> >> auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge
> >> BIT,
> >> category BIT, country VARCHAR(255), cre_date DATE, credit REAL,
> >> credit_limit
> >> REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email
> >> VARCHAR(255),
> >> first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
> >> last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
> >> man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255),
> >> password
> >> VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state
> VARCHAR(255),
> >> PRIMARY KEY (account)) TYPE = innodb} [code=1142, state=42000]
> >>        at
> >>
> >>
> org.apache.openejb.client.EJBInvocationHandler.convertException(EJBInvocationHandler.java:219)
> >>        at
> >>
> >>
> org.apache.openejb.client.EJBObjectHandler._invoke(EJBObjectHandler.java:157)
> >>        at
> >>
> >>
> org.apache.openejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:117)
> >>        at
> >>
> >>
> org.apache.openejb.client.proxy.Jdk13InvocationHandler.invoke(Jdk13InvocationHandler.java:52)
> >>        at $Proxy103.findByUsername(Unknown Source)
> >>        at
> >>
> >>
> com.nuvoip.services.ipcalls.services.internal.UserDetailsServiceImpl.loadUserByUsername(UserDetailsServiceImpl.java:23)
> >>        at
> >>
> >>
> $UserDetailsService_11f61b0e2d0.loadUserByUsername($UserDetailsService_11f61b0e2d0.java)
> >>        at
> >>
> >>
> org.springframework.security.providers.dao.DaoAuthenticationProvider.retrieveUser(DaoAuthenticationProvider.java:83)
> >>        at
> >>
> >>
> org.springframework.security.providers.dao.AbstractUserDetailsAuthenticationProvider.authenticate(AbstractUserDetailsAuthenticationProvider.java:121)
> >>        at
> >>
> >>
> $AuthenticationProvider_11f61b0e3aa.authenticate($AuthenticationProvider_11f61b0e3aa.java)
> >>        at
> >>
> >>
> org.springframework.security.providers.ProviderManager.doAuthentication(ProviderManager.java:188)
> >>        at
> >>
> >>
> org.springframework.security.AbstractAuthenticationManager.authenticate(AbstractAuthenticationManager.java:46)
> >>        at
> >>
> >>
> $AuthenticationManager_11f61b0e2a7.authenticate($AuthenticationManager_11f61b0e2a7.java)
> >>        at
> >>
> >>
> org.springframework.security.ui.webapp.AuthenticationProcessingFilter.attemptAuthentication(AuthenticationProcessingFilter.java:82)
> >>        at
> >>
> >>
> org.springframework.security.ui.AbstractProcessingFilter.doFilterHttp(AbstractProcessingFilter.java:258)
> >>        at
> >>
> >>
> org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
> >>        at
> >>
> >>
> nu.localhost.tapestry5.springsecurity.services.internal.HttpServletRequestFilterWrapper.service(HttpServletRequestFilterWrapper.java:52)
> >>        at
> >>
> >>
> $HttpServletRequestFilter_11f61b0e2c8.service($HttpServletRequestFilter_11f61b0e2c8.java)
> >>        at
> >>
> >>
> $HttpServletRequestHandler_11f61b0e2cf.service($HttpServletRequestHandler_11f61b0e2cf.java)
> >>        at
> >>
> >>
> nu.localhost.tapestry5.springsecurity.services.internal.HttpServletRequestFilterWrapper$1.doFilter(HttpServletRequestFilterWrapper.java:56)
> >>        at
> >>
> >>
> org.springframework.security.context.HttpSessionContextIntegrationFilter.doFilterHttp(HttpSessionContextIntegrationFilter.java:235)
> >>        at
> >>
> >>
> org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
> >>        at
> >>
> >>
> nu.localhost.tapestry5.springsecurity.services.internal.HttpServletRequestFilterWrapper.service(HttpServletRequestFilterWrapper.java:52)
> >>        at
> >>
> >>
> $HttpServletRequestFilter_11f61b0e2c7.service($HttpServletRequestFilter_11f61b0e2c7.java)
> >>        at
> >>
> >>
> $HttpServletRequestHandler_11f61b0e2cf.service($HttpServletRequestHandler_11f61b0e2cf.java)
> >>        at
> >>
> >>
> org.apache.tapestry5.internal.services.IgnoredPathsFilter.service(IgnoredPathsFilter.java:62)
> >>        at
> >>
> >>
> $HttpServletRequestFilter_11f61b0e2c6.service($HttpServletRequestFilter_11f61b0e2c6.java)
> >>        at
> >>
> >>
> $HttpServletRequestHandler_11f61b0e2cf.service($HttpServletRequestHandler_11f61b0e2cf.java)
> >>        at
> >>
> >>
> $HttpServletRequestHandler_11f61b0e2c5.service($HttpServletRequestHandler_11f61b0e2c5.java)
> >>        at
> >> org.apache.tapestry5.TapestryFilter.doFilter(TapestryFilter.java:179)
> >>        at
> >>
> >>
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
> >>        at
> >>
> >>
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> >>        at
> >>
> >>
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
> >>        at
> >>
> >>
> org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
> >>        at
> >>
> >>
> org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56)
> >>        at
> >>
> >>
> org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406)
> >>        at
> >>
> >>
> org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
> >>        at
> >>
> >>
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
> >>        at
> >>
> >>
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
> >>        at
> >>
> >>
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
> >>        at
> >>
> org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568)
> >>        at
> >>
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
> >>        at
> >>
> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
> >>        at
> >>
> >>
> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
> >>        at
> >> org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
> >>        at java.lang.Thread.run(Thread.java:613)
> >> Caused by: <openjpa-1.0.3-r420667:677674 nonfatal general error>
> >> org.apache.openjpa.persistence.PersistenceException: CREATE command
> >> denied
> >> to user 'josso'@'localhost' for table 'accounts' {stmnt 8295201 CREATE
> >> TABLE
> >> dbo.accounts (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2
> >> VARCHAR(255), addr3 VARCHAR(255), addr4 VARCHAR(255), addr5
> VARCHAR(255),
> >> auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge
> >> BIT,
> >> category BIT, country VARCHAR(255), cre_date DATE, credit REAL,
> >> credit_limit
> >> REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email
> >> VARCHAR(255),
> >> first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
> >> last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
> >> man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255),
> >> password
> >> VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state
> VARCHAR(255),
> >> PRIMARY KEY (account)) TYPE = innodb} [code=1142, state=42000]
> >>        at
> >> org.apache.openjpa.jdbc.meta.MappingTool.record(MappingTool.java:549)
> >>        at
> >> org.apache.openjpa.jdbc.meta.MappingTool.record(MappingTool.java:449)
> >>        at
> >>
> >>
> org.apache.openjpa.jdbc.kernel.JDBCBrokerFactory.synchronizeMappings(JDBCBrokerFactory.java:170)
> >>        at
> >>
> >>
> org.apache.openjpa.jdbc.kernel.JDBCBrokerFactory.newBrokerImpl(JDBCBrokerFactory.java:130)
> >>        at
> >>
> >>
> org.apache.openjpa.kernel.AbstractBrokerFactory.newBroker(AbstractBrokerFactory.java:188)
> >>        at
> >>
> >>
> org.apache.openjpa.kernel.DelegatingBrokerFactory.newBroker(DelegatingBrokerFactory.java:142)
> >>        at
> >>
> >>
> org.apache.openjpa.persistence.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:192)
> >>        at
> >>
> >>
> org.apache.openjpa.persistence.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:56)
> >>        at
> >>
> >>
> org.apache.geronimo.persistence.CMPEntityManagerTxScoped.createEntityManager(CMPEntityManagerTxScoped.java:74)
> >>        at
> >>
> >>
> org.apache.geronimo.persistence.CMPEntityManagerTxScoped.getEntityManager(CMPEntityManagerTxScoped.java:55)
> >>        at
> >>
> >>
> org.apache.geronimo.persistence.CMPEntityManagerTxScoped.createNamedQuery(CMPEntityManagerTxScoped.java:259)
> >>        at
> >>
> >>
> com.nuvoip.services.ipcalls.business.users.CallingCardUser.findByUsername(CallingCardUser.java:76)
> >>        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> >>        at
> >>
> >>
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
> >>        at
> >>
> >>
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> >>        at java.lang.reflect.Method.invoke(Method.java:585)
> >>        at
> >>
> >>
> org.apache.openejb.core.interceptor.ReflectionInvocationContext$Invocation.invoke(ReflectionInvocationContext.java:158)
> >>        at
> >>
> >>
> org.apache.openejb.core.interceptor.ReflectionInvocationContext.proceed(ReflectionInvocationContext.java:141)
> >>        at
> >>
> >>
> org.apache.openejb.core.interceptor.InterceptorStack.invoke(InterceptorStack.java:67)
> >>        at
> >>
> >>
> org.apache.openejb.core.stateless.StatelessContainer._invoke(StatelessContainer.java:210)
> >>        at
> >>
> >>
> org.apache.openejb.core.stateless.StatelessContainer._invoke(StatelessContainer.java:188)
> >>        at
> >>
> >>
> org.apache.openejb.core.stateless.StatelessContainer.invoke(StatelessContainer.java:165)
> >>        at
> >>
> >>
> org.apache.openejb.server.ejbd.EjbRequestHandler.doEjbObject_BUSINESS_METHOD(EjbRequestHandler.java:238)
> >>        at
> >>
> >>
> org.apache.openejb.server.ejbd.EjbRequestHandler.processRequest(EjbRequestHandler.java:129)
> >>        at
> >>
> >>
> org.apache.openejb.server.ejbd.EjbDaemon.processEjbRequest(EjbDaemon.java:164)
> >>        at
> >> org.apache.openejb.server.ejbd.EjbDaemon.service(EjbDaemon.java:122)
> >>        at
> >> org.apache.openejb.server.ejbd.EjbDaemon.service(EjbDaemon.java:84)
> >>        at
> >> org.apache.openejb.server.ejbd.EjbServer.service(EjbServer.java:60)
> >>        at
> >> org.apache.openejb.server.ServicePool$2.run(ServicePool.java:78)
> >>        at
> >> org.apache.openejb.server.ServicePool$3.run(ServicePool.java:101)
> >>        at
> >>
> >>
> java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
> >>        at
> >>
> >>
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
> >>        ... 1 more
> >> Caused by: java.lang.Exception:
> >> org.apache.openjpa.lib.jdbc.ReportingSQLException: CREATE command denied
> >> to
> >> user 'josso'@'localhost' for table 'accounts' {stmnt 8295201 CREATE
> TABLE
> >> dbo.accounts (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2
> >> VARCHAR(255), addr3 VARCHAR(255), addr4 VARCHAR(255), addr5
> VARCHAR(255),
> >> auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge
> >> BIT,
> >> category BIT, country VARCHAR(255), cre_date DATE, credit REAL,
> >> credit_limit
> >> REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email
> >> VARCHAR(255),
> >> first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
> >> last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
> >> man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255),
> >> password
> >> VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state
> VARCHAR(255),
> >> PRIMARY KEY (account)) TYPE = innodb} [code=1142, state=42000]
> >>        at
> >>
> >>
> org.apache.openjpa.util.Exceptions.replaceNestedThrowables(Exceptions.java:242)
> >>        at
> >>
> >>
> org.apache.openjpa.persistence.PersistenceException.writeObject(PersistenceException.java:100)
> >>        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> >>        at
> >>
> >>
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
> >>        at
> >>
> >>
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> >>        at java.lang.reflect.Method.invoke(Method.java:585)
> >>        at
> >> java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:917)
> >>        at
> >> ja
> ...
>
> [Message clipped]

Re: Problem with multi persistence units

Posted by bongosdude <bo...@gmail.com>.
Kevin,
So what value of openjpa.MetaDataFactory should be for geronimo? If I can
specify as system properties, How can I turn off "openjpa.MetaDataFactory"
and penjpa.jdbc.SynchronizeMappings: buildSchema(ForeignKeys=true)?

-B


Kevin Sutter wrote:
> 
> Hi,
> It looks like Geronimo might be passing in some extra properties to
> OpenJPA???  In the trace, there are two openjpa properties that are
> suspect.  You don't have them in your persistence.xml.  And, if you are
> not
> passing them in as system properties, then my next guess is Geronimo.  The
> two properties that seem to be causing your situation are these:
> 
> openjpa.MetaDataFactory:
> jpa(Files=/usr/local/geronimo-
> tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar)
> 
> openjpa.jdbc.SynchronizeMappings: buildSchema(ForeignKeys=true)
> 
> The first one (MetaDataFactory) specifies which persistence types to
> process.  Since a jar file is specified, we will search the jar file for
> any
> persistence types (regardless of whether they are listed in a
> persistence.xml file or not).  Our documentation explains this a bit more
> [1].
> 
> The next property (SynchronizeMappings) is what I was referring to in
> earlier e-mails.  This is the property that tells OpenJPA to please create
> the tables if they do not exist.
> 
> You can see in the trace that DigitalkUser and DigitalkAccount are being
> processed since they exist in the jar file specified in the
> MetaDataFactory
> property:
> 
> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
> "/usr/local/geronimo-tomcat6-
> javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> found persistent types
> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount].
> 
> Bottom line, you need to determine how those properties are being passed
> into OpenJPA.  We're just doing what's being requested...  :-)
> 
> Good luck,
> Kevin
> 
> [1]
> http://openjpa.apache.org/builds/latest/docs/manual/manual.html#ref_guide_meta_factory
> 
> On Tue, Feb 10, 2009 at 1:50 PM, bongosdude <bo...@gmail.com> wrote:
> 
>>
>>
>> Kevin,
>>
>> I copy the trace here for you to review.
>>
>> 1. There are no other persistence.xml with create table settings
>> 2. DigitalkUser and DigitalkAccount are two entity of separate database
>> (2nd
>> persistence unit.)
>> 3. OpenJPA created tables accounts (DigitalkAccount) in my first
>> persistence
>> unit. I deleted it and it created again. The log is misleading.
>>
>> My environment
>>
>> OpenJPA 1.2.0
>> Apache Jeronimo 2.1.3
>> JDK 1.5
>> Mac OS x
>>
>>
>> Thanks for helping
>>
>> -B
>>
>>
>> <persistence xmlns="http://java.sun.com/xml/ns/persistence"
>>             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>> version="1.0"
>>             xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
>> http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
>>    <persistence-unit name="CallingCardUsersUnit"
>> transaction-type="RESOURCE_LOCAL" >
>>        <description>Entity Beans for mysql</description>
>>
>> <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
>>         <non-jta-data-source>callingcard_users_notx</non-jta-data-source>
>>
>>  <class>com.nuvoip.services.ipcalls.model.entity.users.User</class>
>>
>>  <class>com.nuvoip.services.ipcalls.model.entity.users.UserRole</class>
>>
>> 
>> <class>com.nuvoip.services.ipcalls.model.entity.users.UserAccount</class>
>>                <properties>
>>                         <property name="openjpa.Log"
>> value="DefaultLevel=TRACE" />
>>                 </properties>
>>    </persistence-unit>
>>
>>    <persistence-unit name="DigittalkUnit"
>> transaction-type="RESOURCE_LOCAL">
>>        <description>Entity Beans for ms sql</description>
>>
>> <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
>>         <non-jta-data-source>mynuvoip</non-jta-data-source>
>>
>>
>> <class>com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser</class>
>>
>>
>> <class>com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount</class>
>>                <properties>
>>                         <property name="openjpa.Log"
>> value="DefaultLevel=TRACE" />
>>                 </properties>
>>    </persistence-unit>
>>
>>
>> </persistence>
>>
>>
>>
>> 14:38:25,745 INFO  [TimingFilter] Request time: 153 ms
>> 14:38:25,745 ERROR [PagePool] Page Page[accounts/Start en] is dirty, and
>> will be discarded (rather than returned to the page pool).
>> 14:38:26,940 INFO  [TimingFilter] Request time: 1188 ms
>> 14:38:34,238 INFO  [BusinessServicesLocator] InitialContext environment =
>> {java.naming.provider.url=ejbd://localhost:4201/,
>>
>> java.naming.factory.initial=org.apache.openejb.client.RemoteInitialContextFactory,
>> java.naming.factory.url.pkgs=org.apache.xbean.naming,
>> openejb.remotable.businessLocals=true}
>> 14:38:34,278 INFO  [OpenEJB] invoking method create on
>> callingcard-ejb.jar/CallingCardUser
>> 14:38:34,289 INFO  [OpenEJB] finished invoking method create
>> 14:38:34,394 INFO  [Transaction] TX Required: Started transaction
>> org.apache.geronimo.transaction.manager.TransactionImpl@903331
>> 124027  CallingCardUsersUnit  INFO   [ejbd 1] openjpa.Runtime - Starting
>> OpenJPA 1.0.3
>> 124027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Runtime -
>> Properties:
>> openjpa.EntityManagerFactory: default
>> openjpa.DataCache: false
>> openjpa.MetaDataFactory:
>>
>> jpa(Files=/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar)
>> openjpa.InverseManager: false
>> openjpa.ReadLockLevel: read
>> openjpa.DataCacheManager: default
>> openjpa.jdbc.SubclassFetchMode: join
>> openjpa.jdbc.UpdateManager: operation-order
>> openjpa.jdbc.SynchronizeMappings: buildSchema(ForeignKeys=true)
>> openjpa.NontransactionalRead: true
>> openjpa.QueryCompilationCache: true
>> openjpa.MaxFetchDepth: -1
>> openjpa.RetainState: true
>> openjpa.DynamicDataStructs: false
>> openjpa.BrokerFactory: jdbc
>> openjpa.WriteLockLevel: write
>> openjpa.ManagedRuntime: auto
>> openjpa.jdbc.EagerFetchMode: parallel
>> openjpa.RestoreState: immutable
>> openjpa.jdbc.SchemaFactory: dynamic
>> openjpa.LockManager: version
>> openjpa.BrokerImpl: non-finalizing
>> openjpa.NontransactionalWrite: true
>> openjpa.MetaDataRepository: default
>> openjpa.Log: true(DefaultLevel=TRACE)
>> openjpa.jdbc.ResultSetType: forward-only
>> openjpa.AutoDetach:
>> openjpa.ConnectionRetainMode: on-demand
>> openjpa.RuntimeUnenhancedClasses: supported
>> openjpa.SavepointManager: in-mem
>> openjpa.Optimistic: true
>> openjpa.ConnectionFactoryMode: local
>> openjpa.Sequence: table(Table=OPENJPASEQ, Increment=100)
>> openjpa.FetchGroups: default
>> openjpa.jdbc.Schemas:
>> openjpa.Id: CallingCardUsersUnit
>> openjpa.OrphanedKeyAction: log
>> openjpa.FlushBeforeQueries: true
>> openjpa.AutoClear: datastore
>> openjpa.Compatibility: default
>> openjpa.jdbc.LRSSize: query
>> openjpa.DetachState: loaded
>> openjpa.Multithreaded: false
>> openjpa.FetchBatchSize: -1
>> openjpa.jdbc.SQLFactory: default
>> openjpa.IgnoreChanges: false
>> openjpa.jdbc.MappingDefaults: jpa
>> openjpa.TransactionMode: local
>> openjpa.RetryClassRegistration: false
>> openjpa.jdbc.FetchDirection: forward
>> openjpa.ClassResolver:
>> org.apache.openjpa.persistence.PersistenceUnitInfoImpl$ClassResolverImpl
>> openjpa.LockTimeout: -1
>> openjpa.DataCacheTimeout: -1
>> openjpa.QueryCache: true
>> openjpa.jdbc.DriverDataSource: simple
>> openjpa.jdbc.TransactionIsolation: default
>> openjpa.ProxyManager: default
>> 124067  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
>> metadata factory
>> "org.apache.openjpa.persistence.jdbc.PersistenceMappingFactory@a11a18".
>> 124071  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - OpenJPA
>> will now connect to the database to attempt to determine what type of
>> database dictionary to use. You may prevent this connection in the future
>> by
>> setting your openjpa.jdbc.DBDictionary configuration property to the
>> appropriate value for your database (see the documentation for available
>> values).
>> 124823  CallingCardUsersUnit  INFO   [ejbd 1] openjpa.jdbc.JDBC - Using
>> dictionary class "org.apache.openjpa.jdbc.sql.MySQLDictionary" (MySQL
>> 5.1.30
>> ,MySQL-AB JDBC Driver mysql-connector-java-5.1.7 ( Revision:
>> ${svn.Revision}
>> )).
>> 124826  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC -
>> catalogSeparator: .
>> catalogTerm: database
>> databaseProductName: MySQL
>> databaseProductVersion: 5.1.30
>> driverName: MySQL-AB JDBC Driver
>> driverVersion: mysql-connector-java-5.1.7 ( Revision: ${svn.Revision} )
>> extraNameCharacters: #@
>> identifierQuoteString: `
>> numericFunctions:
>>
>> ABS,ACOS,ASIN,ATAN,ATAN2,BIT_COUNT,CEILING,COS,COT,DEGREES,EXP,FLOOR,LOG,LOG10,MAX,MIN,MOD,PI,POW,POWER,RADIANS,RAND,ROUND,SIN,SQRT,TAN,TRUNCATE
>> procedureTerm: PROCEDURE
>> schemaTerm:
>> searchStringEscape: \
>> sqlKeywords:
>>
>> ACCESSIBLE,ANALYZE,ASENSITIVE,BEFORE,BIGINT,BINARY,BLOB,CALL,CHANGE,CONDITION,DATABASE,DATABASES,DAY_HOUR,DAY_MICROSECOND,DAY_MINUTE,DAY_SECOND,DELAYED,DETERMINISTIC,DISTINCTROW,DIV,DUAL,EACH,ELSEIF,ENCLOSED,ESCAPED,EXIT,EXPLAIN,FLOAT4,FLOAT8,FORCE,FULLTEXT,HIGH_PRIORITY,HOUR_MICROSECOND,HOUR_MINUTE,HOUR_SECOND,IF,IGNORE,INFILE,INOUT,INT1,INT2,INT3,INT4,INT8,ITERATE,KEYS,KILL,LEAVE,LIMIT,LINEAR,LINES,LOAD,LOCALTIME,LOCALTIMESTAMP,LOCK,LONG,LONGBLOB,LONGTEXT,LOOP,LOW_PRIORITY,MEDIUMBLOB,MEDIUMINT,MEDIUMTEXT,MIDDLEINT,MINUTE_MICROSECOND,MINUTE_SECOND,MOD,MODIFIES,NO_WRITE_TO_BINLOG,OPTIMIZE,OPTIONALLY,OUT,OUTFILE,PURGE,RANGE,READS,READ_ONLY,READ_WRITE,REGEXP,RELEASE,RENAME,REPEAT,REPLACE,REQUIRE,RETURN,RLIKE,SCHEMAS,SECOND_MICROSECOND,SENSITIVE,SEPARATOR,SHOW,SPATIAL,SPECIFIC,SQLEXCEPTION,SQL_BIG_RESULT,SQL_CALC_FOUND_ROWS,SQL_SMALL_RESULT,SSL,STARTING,STRAIGHT_JOIN,TERMINATED,TINYBLOB,TINYINT,TINYTEXT,TRIGGER,UNDO,UNLOCK,UNSIGNED,USE,UTC_DATE,UTC_TIME,UTC_TIMESTAMP,VARBINARY,VARCHARACTER,WHILE,X509,XOR,YEAR_MONTH,ZEROFILL
>> stringFunctions:
>>
>> ASCII,BIN,BIT_LENGTH,CHAR,CHARACTER_LENGTH,CHAR_LENGTH,CONCAT,CONCAT_WS,CONV,ELT,EXPORT_SET,FIELD,FIND_IN_SET,HEX,INSERT,INSTR,LCASE,LEFT,LENGTH,LOAD_FILE,LOCATE,LOCATE,LOWER,LPAD,LTRIM,MAKE_SET,MATCH,MID,OCT,OCTET_LENGTH,ORD,POSITION,QUOTE,REPEAT,REPLACE,REVERSE,RIGHT,RPAD,RTRIM,SOUNDEX,SPACE,STRCMP,SUBSTRING,SUBSTRING,SUBSTRING,SUBSTRING,SUBSTRING_INDEX,TRIM,UCASE,UPPER
>> systemFunctions:
>>
>> DATABASE,USER,SYSTEM_USER,SESSION_USER,PASSWORD,ENCRYPT,LAST_INSERT_ID,VERSION
>> timeDateFunctions:
>>
>> DAYOFWEEK,WEEKDAY,DAYOFMONTH,DAYOFYEAR,MONTH,DAYNAME,MONTHNAME,QUARTER,WEEK,YEAR,HOUR,MINUTE,SECOND,PERIOD_ADD,PERIOD_DIFF,TO_DAYS,FROM_DAYS,DATE_FORMAT,TIME_FORMAT,CURDATE,CURRENT_DATE,CURTIME,CURRENT_TIME,NOW,SYSDATE,CURRENT_TIMESTAMP,UNIX_TIMESTAMP,FROM_UNIXTIME,SEC_TO_TIME,TIME_TO_SEC
>> url: jdbc:mysql://localhost:3306/callingcard_users
>> userName: josso@localhost
>> defaultTransactionIsolation: 2
>> driverMajorVersion: 5
>> driverMinorVersion: 1
>> maxBinaryLiteralLength: 16777208
>> maxCatalogNameLength: 32
>> maxCharLiteralLength: 16777208
>> maxColumnNameLength: 64
>> maxColumnsInGroupBy: 64
>> maxColumnsInIndex: 16
>> maxColumnsInOrderBy: 64
>> maxColumnsInSelect: 256
>> maxColumnsInTable: 512
>> maxConnections: 0
>> maxCursorNameLength: 64
>> maxIndexLength: 256
>> maxProcedureNameLength: 0
>> maxRowSize: 2147483639
>> maxSchemaNameLength: 0
>> maxStatementLength: 65531
>> maxStatements: 0
>> maxTableNameLength: 64
>> maxTablesInSelect: 256
>> maxUserNameLength: 16
>> isCatalogAtStart: true
>> isReadOnly: false
>> nullPlusNonNullIsNull: true
>> nullsAreSortedAtEnd: false
>> nullsAreSortedAtStart: false
>> nullsAreSortedHigh: false
>> nullsAreSortedLow: true
>> storesLowerCaseIdentifiers: false
>> storesLowerCaseQuotedIdentifiers: false
>> storesMixedCaseIdentifiers: true
>> storesMixedCaseQuotedIdentifiers: true
>> storesUpperCaseIdentifiers: false
>> storesUpperCaseQuotedIdentifiers: true
>> supportsAlterTableWithAddColumn: true
>> supportsAlterTableWithDropColumn: true
>> supportsANSI92EntryLevelSQL: true
>> supportsANSI92FullSQL: false
>> supportsANSI92IntermediateSQL: false
>> supportsCatalogsInDataManipulation: true
>> supportsCatalogsInIndexDefinitions: true
>> supportsCatalogsInPrivilegeDefinitions: true
>> supportsCatalogsInProcedureCalls: true
>> supportsCatalogsInTableDefinitions: true
>> supportsColumnAliasing: true
>> supportsConvert: false
>> supportsCoreSQLGrammar: true
>> supportsCorrelatedSubqueries: true
>> supportsDataDefinitionAndDataManipulationTransactions: false
>> supportsDataManipulationTransactionsOnly: false
>> supportsDifferentTableCorrelationNames: true
>> supportsExpressionsInOrderBy: true
>> supportsExtendedSQLGrammar: false
>> supportsFullOuterJoins: false
>> supportsGroupBy: true
>> supportsGroupByBeyondSelect: true
>> supportsGroupByUnrelated: true
>> supportsIntegrityEnhancementFacility: false
>> supportsLikeEscapeClause: true
>> supportsLimitedOuterJoins: true
>> supportsMinimumSQLGrammar: true
>> supportsMixedCaseIdentifiers: false
>> supportsMixedCaseQuotedIdentifiers: false
>> supportsMultipleResultSets: false
>> supportsMultipleTransactions: true
>> supportsNonNullableColumns: true
>> supportsOpenCursorsAcrossCommit: false
>> supportsOpenCursorsAcrossRollback: false
>> supportsOpenStatementsAcrossCommit: false
>> supportsOpenStatementsAcrossRollback: false
>> supportsOrderByUnrelated: false
>> supportsOuterJoins: true
>> supportsPositionedDelete: false
>> supportsPositionedUpdate: false
>> supportsSchemasInDataManipulation: false
>> supportsSchemasInIndexDefinitions: false
>> supportsSchemasInPrivilegeDefinitions: false
>> supportsSchemasInProcedureCalls: false
>> supportsSchemasInTableDefinitions: false
>> supportsSelectForUpdate: true
>> supportsStoredProcedures: true
>> supportsSubqueriesInComparisons: true
>> supportsSubqueriesInExists: true
>> supportsSubqueriesInIns: true
>> supportsSubqueriesInQuantifieds: true
>> supportsTableCorrelationNames: true
>> supportsTransactions: true
>> supportsUnion: true
>> supportsUnionAll: true
>> usesLocalFilePerTable: false
>> usesLocalFiles: false
>> allProceduresAreCallable: false
>> allTablesAreSelectable: false
>> dataDefinitionCausesTransactionCommit: true
>> dataDefinitionIgnoredInTransactions: false
>> doesMaxRowSizeIncludeBlobs: true
>> supportsBatchUpdates: true
>> 124830  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 11435458> [0 ms] close
>> 124863  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 5935820> [0 ms] close
>> 124906  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scanning
>> jar
>>
>> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
>> for persistent types.
>> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
>> persistent type location association for location
>>
>> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount.class"
>> since it is a class, and will not need to be re-parsed later.
>> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>>
>> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
>> found persistent types
>> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount].
>> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
>> persistent type location association for location
>> "com/nuvoip/services/ipcalls/model/entity/users/UserRole.class" since it
>> is
>> a class, and will not need to be re-parsed later.
>> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>>
>> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
>> found persistent types
>> [com.nuvoip.services.ipcalls.model.entity.users.UserRole].
>> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
>> persistent type location association for location
>> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser.class"
>> since it is a class, and will not need to be re-parsed later.
>> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>>
>> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
>> found persistent types
>> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser].
>> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
>> persistent type location association for location
>> "com/nuvoip/services/ipcalls/model/entity/users/User.class" since it is a
>> class, and will not need to be re-parsed later.
>> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>>
>> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
>> found persistent types
>> [com.nuvoip.services.ipcalls.model.entity.users.User].
>> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
>> persistent type location association for location
>> "com/nuvoip/services/ipcalls/model/entity/users/UserAccount.class" since
>> it
>> is a class, and will not need to be re-parsed later.
>> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>>
>> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
>> found persistent types
>> [com.nuvoip.services.ipcalls.model.entity.users.UserAccount].
>> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scanning
>> resource "META-INF/orm.xml" for persistent types.
>> 124911  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> parsePersistentTypeNames() found
>> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser,
>> com.nuvoip.services.ipcalls.model.entity.users.UserAccount,
>> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount,
>> com.nuvoip.services.ipcalls.model.entity.users.User,
>> com.nuvoip.services.ipcalls.model.entity.users.UserRole].
>> 124911  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Found 5
>> classes with metadata in 5 milliseconds.
>> 125076  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
>> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser"
>> requires
>> runtime enhancement: true
>> 125100  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
>> metadata for "class
>> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" under
>> mode "[META][QUERY]".
>> 125100  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> class
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
>> 125100  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> package
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
>> 125106  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Generating
>> default metadata for type
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
>> 125106  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
>> reflection for metadata generation.
>> 125137  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> query "DigitalkUser.findByAccountNo".
>> 125165  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> query "DigitalkUser.findByCliAndUsername".
>> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
>> persistence-capable superclass of
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" to
>> "null".
>> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Resolving
>> metadata for
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805
>> ".
>> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.accountId
>> ".
>> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.callback
>> ".
>> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.cli
>> ".
>> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.cliPin
>> ".
>> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.createDate
>> ".
>> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.lastNumberDial
>> ".
>> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.pin
>> ".
>> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.userName
>> ".
>> 125199  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance - Enhancing
>> type "class
>> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
>> 125018  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
>> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser"
>> requires
>> runtime enhancement: false
>> 125233  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
>> "com/nuvoip/services/ipcalls/model/entity/users/UserAccount" requires
>> runtime enhancement: true
>> 125236  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance - Enhancing
>> type "class com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
>> 125058  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
>> "com/nuvoip/services/ipcalls/model/entity/users/UserAccount" requires
>> runtime enhancement: false
>> 125272  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
>> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount"
>> requires runtime enhancement: true
>> 125318  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
>> metadata for "class
>> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount"
>> under
>> mode "[META][QUERY]".
>> 125318  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> class
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
>> 125324  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Generating
>> default metadata for type
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
>> 125324  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
>> reflection for metadata generation.
>> 125364  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> query "DigitalkAccount.findByAccountNo".
>> 125397  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> query "DigitalkAccount.findByEmail".
>> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
>> persistence-capable superclass of
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount" to
>> "null".
>> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Resolving
>> metadata for
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550
>> ".
>> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.accountId
>> ".
>> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address1
>> ".
>> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address2
>> ".
>> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address3
>> ".
>> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address4
>> ".
>> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address5
>> ".
>> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.autoRechargeAmount
>> ".
>> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.autoRechargeThreshold
>> ".
>> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.autoRechrgEnabled
>> ".
>> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.businessCategory
>> ".
>> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.country
>> ".
>> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.createDate
>> ".
>> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.credit
>> ".
>> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.creditLimit
>> ".
>> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.creditMsgEnabled
>> ".
>> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.creditType
>> ".
>> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.currency
>> ".
>> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.email
>> ".
>> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.firstAccessDate
>> ".
>> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.firstname
>> ".
>> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.hotDial
>> ".
>> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lastAccessDate
>> ".
>> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lastModified
>> ".
>> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lastname
>> ".
>> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lead_source
>> ".
>> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.manualRecharge
>> ".
>> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.manualRechargeAmt
>> ".
>> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "
>> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.name
>> ".
>> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.password
>> ".
>> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.speedDial
>> ".
>> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.speedDialKey
>> ".
>> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.state
>> ".
>> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.users
>> ".
>> 125453  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance - Enhancing
>> type "class
>> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
>> 125314  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
>> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount"
>> requires runtime enhancement: false
>> 125532  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
>> "com/nuvoip/services/ipcalls/model/entity/users/UserRole" requires
>> runtime
>> enhancement: true
>> 125542  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance - Enhancing
>> type "class com.nuvoip.services.ipcalls.model.entity.users.UserRole".
>> 125351  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
>> "com/nuvoip/services/ipcalls/model/entity/users/UserRole" requires
>> runtime
>> enhancement: false
>> 125412  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
>> metadata factory
>> "org.apache.openjpa.persistence.jdbc.PersistenceMappingFactory@9168ba".
>> 125413  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
>> metadata for "class
>> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" under
>> mode "[META][QUERY]".
>> 125413  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scanning
>> jar
>>
>> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
>> for persistent types.
>> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
>> persistent type location association for location
>>
>> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount.class"
>> since it is a class, and will not need to be re-parsed later.
>> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>>
>> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
>> found persistent types
>> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount].
>> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
>> persistent type location association for location
>> "com/nuvoip/services/ipcalls/model/entity/users/UserRole.class" since it
>> is
>> a class, and will not need to be re-parsed later.
>> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>>
>> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
>> found persistent types
>> [com.nuvoip.services.ipcalls.model.entity.users.UserRole].
>> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
>> persistent type location association for location
>> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser.class"
>> since it is a class, and will not need to be re-parsed later.
>> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>>
>> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
>> found persistent types
>> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser].
>> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
>> persistent type location association for location
>> "com/nuvoip/services/ipcalls/model/entity/users/User.class" since it is a
>> class, and will not need to be re-parsed later.
>> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>>
>> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
>> found persistent types
>> [com.nuvoip.services.ipcalls.model.entity.users.User].
>> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
>> persistent type location association for location
>> "com/nuvoip/services/ipcalls/model/entity/users/UserAccount.class" since
>> it
>> is a class, and will not need to be re-parsed later.
>> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>>
>> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
>> found persistent types
>> [com.nuvoip.services.ipcalls.model.entity.users.UserAccount].
>> 125420  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scanning
>> resource "META-INF/orm.xml" for persistent types.
>> 125421  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> parsePersistentTypeNames() found
>> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser,
>> com.nuvoip.services.ipcalls.model.entity.users.UserAccount,
>> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount,
>> com.nuvoip.services.ipcalls.model.entity.users.User,
>> com.nuvoip.services.ipcalls.model.entity.users.UserRole].
>> 125421  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Found 5
>> classes with metadata in 8 milliseconds.
>> 125456  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> class
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
>> 125456  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> package
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
>> 125482  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Generating
>> default metadata for type
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
>> 125518  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> query "DigitalkUser.findByAccountNo".
>> 125548  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> query "DigitalkUser.findByCliAndUsername".
>> 125585  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
>> persistence-capable superclass of
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" to
>> "null".
>> 125585  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Resolving
>> metadata for
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430
>> ".
>> 125585  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.accountId
>> ".
>> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.callback
>> ".
>> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cli
>> ".
>> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cliPin
>> ".
>> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.createDate
>> ".
>> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.lastNumberDial
>> ".
>> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.pin
>> ".
>> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.userName
>> ".
>> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Preparing
>> mapping for
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
>> 125595  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.accountId
>> ".
>> 125606  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "accountId" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.callback
>> ".
>> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "callback"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cli
>> ".
>> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "cli" has
>> mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cliPin
>> ".
>> 125609  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "cliPin"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125609  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.createDate
>> ".
>> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "createDate" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
>> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.lastNumberDial
>> ".
>> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "lastNumberDial" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.pin
>> ".
>> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "pin" has
>> mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.userName
>> ".
>> 125618  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "userName"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125620  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser<discriminator>"
>> has mapping strategy "none".
>> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser<version>"
>> has mapping strategy "none".
>> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Resolving
>> mapping for
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430
>> ".
>> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" has
>> mapping strategy "full".
>> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
>> metadata for "class
>> com.nuvoip.services.ipcalls.model.entity.users.UserAccount" under mode
>> "[META][QUERY]".
>> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> class "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
>> 125630  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> package "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
>> 125631  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Generating
>> default metadata for type
>> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
>> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
>> persistence-capable superclass of
>> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount" to "null".
>> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Resolving
>> metadata for
>> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295".
>> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.accountNo
>> ".
>> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.contextName
>> ".
>> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.userId
>> ".
>> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Preparing
>> mapping for "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
>> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.userId
>> ".
>> 125663  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "userId"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
>> 125663  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.accountNo
>> ".
>> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "accountNo" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.contextName
>> ".
>> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "contextName" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount<discriminator>"
>> has mapping strategy "none".
>> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount<version>" has
>> mapping strategy "none".
>> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Resolving
>> mapping for
>> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295".
>> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount" has mapping
>> strategy "full".
>> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
>> metadata for "class
>> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount"
>> under
>> mode "[META][QUERY]".
>> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> class
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
>> 125667  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Generating
>> default metadata for type
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
>> 125696  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> query "DigitalkAccount.findByAccountNo".
>> 125728  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> query "DigitalkAccount.findByEmail".
>> 125768  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> table generator "newaccountnum".
>> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
>> persistence-capable superclass of
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount" to
>> "null".
>> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Resolving
>> metadata for
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798
>> ".
>> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.accountId
>> ".
>> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address1
>> ".
>> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address2
>> ".
>> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address3
>> ".
>> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address4
>> ".
>> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address5
>> ".
>> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeAmount
>> ".
>> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeThreshold
>> ".
>> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechrgEnabled
>> ".
>> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.businessCategory
>> ".
>> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.country
>> ".
>> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.createDate
>> ".
>> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.credit
>> ".
>> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditLimit
>> ".
>> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditMsgEnabled
>> ".
>> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditType
>> ".
>> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.currency
>> ".
>> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.email
>> ".
>> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstAccessDate
>> ".
>> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstname
>> ".
>> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.hotDial
>> ".
>> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastAccessDate
>> ".
>> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastModified
>> ".
>> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastname
>> ".
>> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lead_source
>> ".
>> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRecharge
>> ".
>> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRechargeAmt
>> ".
>> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "
>> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.name
>> ".
>> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.password
>> ".
>> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDial
>> ".
>> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDialKey
>> ".
>> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.state
>> ".
>> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.users
>> ".
>> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Preparing
>> mapping for
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
>> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.accountId
>> ".
>> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "accountId" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address1
>> ".
>> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "address1"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address2
>> ".
>> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "address2"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address3
>> ".
>> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "address3"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address4
>> ".
>> 125807  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "address4"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125807  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address5
>> ".
>> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "address5"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeAmount
>> ".
>> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "autoRechargeAmount" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
>> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeThreshold
>> ".
>> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "autoRechargeThreshold" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
>> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechrgEnabled
>> ".
>> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "autoRechrgEnabled" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
>> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.businessCategory
>> ".
>> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "businessCategory" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
>> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.country
>> ".
>> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "country"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.createDate
>> ".
>> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "createDate" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
>> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.credit
>> ".
>> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "credit"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
>> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditLimit
>> ".
>> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "creditLimit" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
>> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditMsgEnabled
>> ".
>> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "creditMsgEnabled" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
>> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditType
>> ".
>> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "creditType" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
>> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.currency
>> ".
>> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "currency"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.email
>> ".
>> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "email"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstAccessDate
>> ".
>> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "firstAccessDate" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
>> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstname
>> ".
>> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "firstname" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.hotDial
>> ".
>> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "hotDial"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
>> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastAccessDate
>> ".
>> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "lastAccessDate" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
>> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastModified
>> ".
>> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "lastModified" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
>> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastname
>> ".
>> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "lastname"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lead_source
>> ".
>> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "lead_source" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRecharge
>> ".
>> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "manualRecharge" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
>> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRechargeAmt
>> ".
>> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "manualRechargeAmt" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
>> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "
>> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.name
>> ".
>> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "name" has
>> mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.password
>> ".
>> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "password"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDial
>> ".
>> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "speedDial" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
>> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDialKey
>> ".
>> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "speedDialKey" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.state
>> ".
>> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "state"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount<discriminator>"
>> has mapping strategy "none".
>> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount<version>"
>> has mapping strategy "none".
>> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Resolving
>> mapping for
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798
>> ".
>> 125812  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount"
>> has
>> mapping strategy "full".
>> 125812  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.users
>> ".
>> 125824  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "users"
>> has mapping strategy
>>
>> "org.apache.openjpa.jdbc.meta.strats.RelationCollectionInverseKeyFieldStrategy".
>> 125824  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
>> metadata for "class com.nuvoip.services.ipcalls.model.entity.users.User"
>> under mode "[META][QUERY]".
>> 125824  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> class "com.nuvoip.services.ipcalls.model.entity.users.User".
>> 125825  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Generating
>> default metadata for type
>> "com.nuvoip.services.ipcalls.model.entity.users.User".
>> 125850  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> query "User.findByUserName".
>> 125875  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> query "User.doesUserExist".
>> 125903  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
>> persistence-capable superclass of
>> "com.nuvoip.services.ipcalls.model.entity.users.User" to "null".
>> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Resolving
>> metadata for "com.nuvoip.services.ipcalls.model.entity.users.User@3715277
>> ".
>> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.enabled
>> ".
>> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.grantedAuthorities
>> ".
>> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
>> metadata for "class
>> com.nuvoip.services.ipcalls.model.entity.users.UserRole"
>> under mode "[META][QUERY]".
>> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
>> class "com.nuvoip.services.ipcalls.model.entity.users.UserRole".
>> 125905  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Generating
>> default metadata for type
>> "com.nuvoip.services.ipcalls.model.entity.users.UserRole".
>> 125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
>> persistence-capable superclass of
>> "com.nuvoip.services.ipcalls.model.entity.users.UserRole" to "null".
>> 125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.password".
>> 125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.username".
>> 125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrAccount".
>> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrId".
>> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.version
>> ".
>> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Resolving
>> metadata for
>> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170".
>> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.authority
>> ".
>> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.id
>> ".
>> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.username
>> ".
>> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.version".
>> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Preparing
>> mapping for "com.nuvoip.services.ipcalls.model.entity.users.User".
>> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrId".
>> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "usrId"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
>> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.enabled
>> ".
>> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "enabled"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
>> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.password".
>> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "password"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.username".
>> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "username"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.version
>> ".
>> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "version"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
>> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "com.nuvoip.services.ipcalls.model.entity.users.User<discriminator>" has
>> mapping strategy "none".
>> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "com.nuvoip.services.ipcalls.model.entity.users.User<version>" has
>> mapping
>> strategy "none".
>> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Preparing
>> mapping for "com.nuvoip.services.ipcalls.model.entity.users.UserRole".
>> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.id
>> ".
>> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "id" has
>> mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
>> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.authority
>> ".
>> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "authority" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.username
>> ".
>> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "username"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
>> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.version".
>> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  "version"
>> has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
>> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "com.nuvoip.services.ipcalls.model.entity.users.UserRole<discriminator>"
>> has
>> mapping strategy "none".
>> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "com.nuvoip.services.ipcalls.model.entity.users.UserRole<version>" has
>> mapping strategy "none".
>> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Resolving
>> mapping for
>> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277".
>> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "com.nuvoip.services.ipcalls.model.entity.users.User" has mapping
>> strategy
>> "full".
>> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>>
>> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.grantedAuthorities
>> ".
>> 125937  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "grantedAuthorities" has mapping strategy
>>
>> "org.apache.openjpa.jdbc.meta.strats.RelationCollectionInverseKeyFieldStrategy".
>> 125937  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>>  Resolving
>> field
>> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrAccount".
>> 125944  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "usrAccount" has mapping strategy
>> "org.apache.openjpa.jdbc.meta.strats.RelationFieldStrategy".
>> 125944  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> Resolving
>> mapping for
>> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170".
>> 125944  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>> "com.nuvoip.services.ipcalls.model.entity.users.UserRole" has mapping
>> strategy "full".
>> 125958  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> table information for schema name "null", table name "authorities".
>> 125958  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 10469122> getColumns: callingcard_users, null,
>> authorities,
>> null
>> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> column information for table "authorities".
>> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "id" on table "authorities".
>> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "username" on table "authorities".
>> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "authority" on table "authorities".
>> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "version" on table "authorities".
>> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> table information for schema name "null", table name "OPENJPASEQ".
>> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 10469122> getColumns: callingcard_users, null, OPENJPASEQ,
>> null
>> 126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> column information for table "OPENJPASEQ".
>> 126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "ID" on table "OPENJPASEQ".
>> 126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "SEQUENCE_VALUE" on table "OPENJPASEQ".
>> 126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> table information for schema name "null", table name "subscribers".
>> 126009  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 10469122> getColumns: callingcard_users, null,
>> subscribers,
>> null
>> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> column information for table "subscribers".
>> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "user_id" on table "subscribers".
>> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "context_nm" on table "subscribers".
>> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "account_nm" on table "subscribers".
>> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> sequence information for schema "null", sequence name "null".
>> 126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 10469122> [1 ms] commit
>> 126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 10469122> [0 ms] close
>> 126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> table information for schema name "dbo", table name "accounts".
>> 126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 3459509> getColumns: callingcard_users, dbo, accounts,
>> null
>> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> column information for table "accounts".
>> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "account" on table "accounts".
>> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "addr1" on table "accounts".
>> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "addr2" on table "accounts".
>> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "addr3" on table "accounts".
>> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "addr4" on table "accounts".
>> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "addr5" on table "accounts".
>> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "auto_recharge_amount" on table "accounts".
>> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "auto_recharge_threshold" on table "accounts".
>> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "auto_recharge" on table "accounts".
>> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "category" on table "accounts".
>> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "country" on table "accounts".
>> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "cre_date" on table "accounts".
>> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "credit" on table "accounts".
>> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "credit_limit" on table "accounts".
>> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "credit_msg" on table "accounts".
>> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "type" on table "accounts".
>> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "currency" on table "accounts".
>> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "email" on table "accounts".
>> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "first_date" on table "accounts".
>> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "fname" on table "accounts".
>> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "hot_dial" on table "accounts".
>> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "last_date" on table "accounts".
>> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "last_modified" on table "accounts".
>> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "lname" on table "accounts".
>> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "lead_source" on table "accounts".
>> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "man_recharge" on table "accounts".
>> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "man_recharge_amount" on table "accounts".
>> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "name" on table "accounts".
>> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "password" on table "accounts".
>> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "spd_dial" on table "accounts".
>> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "spd_key" on table "accounts".
>> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "state" on table "accounts".
>> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> table information for schema name "dbo", table name "OPENJPASEQ".
>> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 3459509> getColumns: callingcard_users, dbo, OPENJPASEQ,
>> null
>> 126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "ID" on table "OPENJPASEQ".
>> 126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "SEQUENCE_VALUE" on table "OPENJPASEQ".
>> 126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> table information for schema name "dbo", table name "users".
>> 126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 3459509> getColumns: callingcard_users, dbo, users, null
>> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> column information for table "users".
>> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "id" on table "users".
>> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "username" on table "users".
>> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "password" on table "users".
>> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "enabled" on table "users".
>> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing column "version" on table "users".
>> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> sequence information for schema "dbo", sequence name "null".
>> 126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 3459509> [2 ms] commit
>> 126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 3459509> [0 ms] close
>> 126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> foreign keys for schema name "null", table name "authorities".
>> 126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 15855117> getImportedKeys: callingcard_users, null,
>> authorities
>> 126059  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing foreign key "fk_authorities_users" on table "authorities
>> (username)" linking to table "users (username)".  Sequence: "1".
>> 126059  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> foreign keys for schema name "null", table name "OPENJPASEQ".
>> 126060  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 15855117> getImportedKeys: callingcard_users, null,
>> OPENJPASEQ
>> 126061  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> foreign keys for schema name "null", table name "subscribers".
>> 126061  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 15855117> getImportedKeys: callingcard_users, null,
>> subscribers
>> 126062  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
>> existing foreign key "subscribers_users_fk" on table "subscribers
>> (user_id)"
>> linking to table "users (id)".  Sequence: "1".
>> 126062  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 15855117> [0 ms] commit
>> 126062  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 15855117> [0 ms] close
>> 126063  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> foreign keys for schema name "dbo", table name "accounts".
>> 126063  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 899387> getImportedKeys: callingcard_users, dbo, accounts
>> 126065  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> foreign keys for schema name "dbo", table name "OPENJPASEQ".
>> 126065  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 899387> getImportedKeys: callingcard_users, dbo,
>> OPENJPASEQ
>> 126066  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema -
>> Reading
>> foreign keys for schema name "dbo", table name "users".
>> 126066  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 899387> getImportedKeys: callingcard_users, dbo, users
>> 126067  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 899387> [0 ms] commit
>> 126067  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 899387> [0 ms] close
>> 126067  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema -
>> Existing
>> column "authority" on table "authorities" is incompatible with the same
>> column in the given schema definition. Existing column:
>> Full Name: authorities.authority
>> Type: varchar
>> Size: 50
>> Default: null
>> Not Null: true
>> Given column:
>> Full Name: authorities.authority
>> Type: varchar
>> Size: 255
>> Default: null
>> Not Null: false
>>
>> 126067  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema -
>> Existing
>> column "username" on table "authorities" is incompatible with the same
>> column in the given schema definition. Existing column:
>> Full Name: authorities.username
>> Type: varchar
>> Size: 50
>> Default: null
>> Not Null: true
>> Given column:
>> Full Name: authorities.username
>> Type: varchar
>> Size: 255
>> Default: null
>> Not Null: false
>>
>> 126067  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema -
>> Existing
>> column "account_nm" on table "subscribers" is incompatible with the same
>> column in the given schema definition. Existing column:
>> Full Name: subscribers.account_nm
>> Type: varchar
>> Size: 20
>> Default: null
>> Not Null: true
>> Given column:
>> Full Name: subscribers.account_nm
>> Type: varchar
>> Size: 255
>> Default: null
>> Not Null: false
>>
>> 126068  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema -
>> Existing
>> column "context_nm" on table "subscribers" is incompatible with the same
>> column in the given schema definition. Existing column:
>> Full Name: subscribers.context_nm
>> Type: varchar
>> Size: 50
>> Default: null
>> Not Null: false
>> Given column:
>> Full Name: subscribers.context_nm
>> Type: varchar
>> Size: 255
>> Default: null
>> Not Null: false
>>
>> 126068  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 7437197> [0 ms] rollback
>> 126074  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.SQL - <t
>> 16566280, conn 7437197> executing stmnt 8295201 CREATE TABLE dbo.accounts
>> (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2 VARCHAR(255),
>> addr3 VARCHAR(255), addr4 VARCHAR(255), addr5 VARCHAR(255),
>> auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge
>> BIT,
>> category BIT, country VARCHAR(255), cre_date DATE, credit REAL,
>> credit_limit
>> REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email
>> VARCHAR(255),
>> first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
>> last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
>> man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255),
>> password
>> VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state VARCHAR(255),
>> PRIMARY KEY (account)) TYPE = innodb
>> 126089  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.SQL - <t
>> 16566280, conn 7437197> [15 ms] spent
>> 126089  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
>> 16566280, conn 7437197> [0 ms] close
>> 14:38:36,465 INFO  [Transaction] TX Required: setRollbackOnly() on
>> transaction
>> org.apache.geronimo.transaction.manager.TransactionImpl@903331
>> 14:38:36,465 INFO  [Transaction] TX Required: Rolling back transaction
>> org.apache.geronimo.transaction.manager.TransactionImpl@903331
>> 14:38:36,487 ERROR [[default]] Servlet.service() for servlet default
>> threw
>> exception
>> javax.ejb.EJBException: The bean encountered a non-application
>> exception.;
>> nested exception is:
>>        <openjpa-1.0.3-r420667:677674 nonfatal general error>
>> org.apache.openjpa.persistence.PersistenceException: CREATE command
>> denied
>> to user 'josso'@'localhost' for table 'accounts' {stmnt 8295201 CREATE
>> TABLE
>> dbo.accounts (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2
>> VARCHAR(255), addr3 VARCHAR(255), addr4 VARCHAR(255), addr5 VARCHAR(255),
>> auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge
>> BIT,
>> category BIT, country VARCHAR(255), cre_date DATE, credit REAL,
>> credit_limit
>> REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email
>> VARCHAR(255),
>> first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
>> last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
>> man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255),
>> password
>> VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state VARCHAR(255),
>> PRIMARY KEY (account)) TYPE = innodb} [code=1142, state=42000]
>>        at
>>
>> org.apache.openejb.client.EJBInvocationHandler.convertException(EJBInvocationHandler.java:219)
>>        at
>>
>> org.apache.openejb.client.EJBObjectHandler._invoke(EJBObjectHandler.java:157)
>>        at
>>
>> org.apache.openejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:117)
>>        at
>>
>> org.apache.openejb.client.proxy.Jdk13InvocationHandler.invoke(Jdk13InvocationHandler.java:52)
>>        at $Proxy103.findByUsername(Unknown Source)
>>        at
>>
>> com.nuvoip.services.ipcalls.services.internal.UserDetailsServiceImpl.loadUserByUsername(UserDetailsServiceImpl.java:23)
>>        at
>>
>> $UserDetailsService_11f61b0e2d0.loadUserByUsername($UserDetailsService_11f61b0e2d0.java)
>>        at
>>
>> org.springframework.security.providers.dao.DaoAuthenticationProvider.retrieveUser(DaoAuthenticationProvider.java:83)
>>        at
>>
>> org.springframework.security.providers.dao.AbstractUserDetailsAuthenticationProvider.authenticate(AbstractUserDetailsAuthenticationProvider.java:121)
>>        at
>>
>> $AuthenticationProvider_11f61b0e3aa.authenticate($AuthenticationProvider_11f61b0e3aa.java)
>>        at
>>
>> org.springframework.security.providers.ProviderManager.doAuthentication(ProviderManager.java:188)
>>        at
>>
>> org.springframework.security.AbstractAuthenticationManager.authenticate(AbstractAuthenticationManager.java:46)
>>        at
>>
>> $AuthenticationManager_11f61b0e2a7.authenticate($AuthenticationManager_11f61b0e2a7.java)
>>        at
>>
>> org.springframework.security.ui.webapp.AuthenticationProcessingFilter.attemptAuthentication(AuthenticationProcessingFilter.java:82)
>>        at
>>
>> org.springframework.security.ui.AbstractProcessingFilter.doFilterHttp(AbstractProcessingFilter.java:258)
>>        at
>>
>> org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
>>        at
>>
>> nu.localhost.tapestry5.springsecurity.services.internal.HttpServletRequestFilterWrapper.service(HttpServletRequestFilterWrapper.java:52)
>>        at
>>
>> $HttpServletRequestFilter_11f61b0e2c8.service($HttpServletRequestFilter_11f61b0e2c8.java)
>>        at
>>
>> $HttpServletRequestHandler_11f61b0e2cf.service($HttpServletRequestHandler_11f61b0e2cf.java)
>>        at
>>
>> nu.localhost.tapestry5.springsecurity.services.internal.HttpServletRequestFilterWrapper$1.doFilter(HttpServletRequestFilterWrapper.java:56)
>>        at
>>
>> org.springframework.security.context.HttpSessionContextIntegrationFilter.doFilterHttp(HttpSessionContextIntegrationFilter.java:235)
>>        at
>>
>> org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
>>        at
>>
>> nu.localhost.tapestry5.springsecurity.services.internal.HttpServletRequestFilterWrapper.service(HttpServletRequestFilterWrapper.java:52)
>>        at
>>
>> $HttpServletRequestFilter_11f61b0e2c7.service($HttpServletRequestFilter_11f61b0e2c7.java)
>>        at
>>
>> $HttpServletRequestHandler_11f61b0e2cf.service($HttpServletRequestHandler_11f61b0e2cf.java)
>>        at
>>
>> org.apache.tapestry5.internal.services.IgnoredPathsFilter.service(IgnoredPathsFilter.java:62)
>>        at
>>
>> $HttpServletRequestFilter_11f61b0e2c6.service($HttpServletRequestFilter_11f61b0e2c6.java)
>>        at
>>
>> $HttpServletRequestHandler_11f61b0e2cf.service($HttpServletRequestHandler_11f61b0e2cf.java)
>>        at
>>
>> $HttpServletRequestHandler_11f61b0e2c5.service($HttpServletRequestHandler_11f61b0e2c5.java)
>>        at
>> org.apache.tapestry5.TapestryFilter.doFilter(TapestryFilter.java:179)
>>        at
>>
>> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
>>        at
>>
>> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>>        at
>>
>> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
>>        at
>>
>> org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
>>        at
>>
>> org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56)
>>        at
>>
>> org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406)
>>        at
>>
>> org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
>>        at
>>
>> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
>>        at
>>
>> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
>>        at
>>
>> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
>>        at
>> org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568)
>>        at
>> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
>>        at
>> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
>>        at
>>
>> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
>>        at
>> org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
>>        at java.lang.Thread.run(Thread.java:613)
>> Caused by: <openjpa-1.0.3-r420667:677674 nonfatal general error>
>> org.apache.openjpa.persistence.PersistenceException: CREATE command
>> denied
>> to user 'josso'@'localhost' for table 'accounts' {stmnt 8295201 CREATE
>> TABLE
>> dbo.accounts (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2
>> VARCHAR(255), addr3 VARCHAR(255), addr4 VARCHAR(255), addr5 VARCHAR(255),
>> auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge
>> BIT,
>> category BIT, country VARCHAR(255), cre_date DATE, credit REAL,
>> credit_limit
>> REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email
>> VARCHAR(255),
>> first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
>> last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
>> man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255),
>> password
>> VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state VARCHAR(255),
>> PRIMARY KEY (account)) TYPE = innodb} [code=1142, state=42000]
>>        at
>> org.apache.openjpa.jdbc.meta.MappingTool.record(MappingTool.java:549)
>>        at
>> org.apache.openjpa.jdbc.meta.MappingTool.record(MappingTool.java:449)
>>        at
>>
>> org.apache.openjpa.jdbc.kernel.JDBCBrokerFactory.synchronizeMappings(JDBCBrokerFactory.java:170)
>>        at
>>
>> org.apache.openjpa.jdbc.kernel.JDBCBrokerFactory.newBrokerImpl(JDBCBrokerFactory.java:130)
>>        at
>>
>> org.apache.openjpa.kernel.AbstractBrokerFactory.newBroker(AbstractBrokerFactory.java:188)
>>        at
>>
>> org.apache.openjpa.kernel.DelegatingBrokerFactory.newBroker(DelegatingBrokerFactory.java:142)
>>        at
>>
>> org.apache.openjpa.persistence.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:192)
>>        at
>>
>> org.apache.openjpa.persistence.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:56)
>>        at
>>
>> org.apache.geronimo.persistence.CMPEntityManagerTxScoped.createEntityManager(CMPEntityManagerTxScoped.java:74)
>>        at
>>
>> org.apache.geronimo.persistence.CMPEntityManagerTxScoped.getEntityManager(CMPEntityManagerTxScoped.java:55)
>>        at
>>
>> org.apache.geronimo.persistence.CMPEntityManagerTxScoped.createNamedQuery(CMPEntityManagerTxScoped.java:259)
>>        at
>>
>> com.nuvoip.services.ipcalls.business.users.CallingCardUser.findByUsername(CallingCardUser.java:76)
>>        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>>        at
>>
>> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
>>        at
>>
>> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>>        at java.lang.reflect.Method.invoke(Method.java:585)
>>        at
>>
>> org.apache.openejb.core.interceptor.ReflectionInvocationContext$Invocation.invoke(ReflectionInvocationContext.java:158)
>>        at
>>
>> org.apache.openejb.core.interceptor.ReflectionInvocationContext.proceed(ReflectionInvocationContext.java:141)
>>        at
>>
>> org.apache.openejb.core.interceptor.InterceptorStack.invoke(InterceptorStack.java:67)
>>        at
>>
>> org.apache.openejb.core.stateless.StatelessContainer._invoke(StatelessContainer.java:210)
>>        at
>>
>> org.apache.openejb.core.stateless.StatelessContainer._invoke(StatelessContainer.java:188)
>>        at
>>
>> org.apache.openejb.core.stateless.StatelessContainer.invoke(StatelessContainer.java:165)
>>        at
>>
>> org.apache.openejb.server.ejbd.EjbRequestHandler.doEjbObject_BUSINESS_METHOD(EjbRequestHandler.java:238)
>>        at
>>
>> org.apache.openejb.server.ejbd.EjbRequestHandler.processRequest(EjbRequestHandler.java:129)
>>        at
>>
>> org.apache.openejb.server.ejbd.EjbDaemon.processEjbRequest(EjbDaemon.java:164)
>>        at
>> org.apache.openejb.server.ejbd.EjbDaemon.service(EjbDaemon.java:122)
>>        at
>> org.apache.openejb.server.ejbd.EjbDaemon.service(EjbDaemon.java:84)
>>        at
>> org.apache.openejb.server.ejbd.EjbServer.service(EjbServer.java:60)
>>        at
>> org.apache.openejb.server.ServicePool$2.run(ServicePool.java:78)
>>        at
>> org.apache.openejb.server.ServicePool$3.run(ServicePool.java:101)
>>        at
>>
>> java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
>>        at
>>
>> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
>>        ... 1 more
>> Caused by: java.lang.Exception:
>> org.apache.openjpa.lib.jdbc.ReportingSQLException: CREATE command denied
>> to
>> user 'josso'@'localhost' for table 'accounts' {stmnt 8295201 CREATE TABLE
>> dbo.accounts (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2
>> VARCHAR(255), addr3 VARCHAR(255), addr4 VARCHAR(255), addr5 VARCHAR(255),
>> auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge
>> BIT,
>> category BIT, country VARCHAR(255), cre_date DATE, credit REAL,
>> credit_limit
>> REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email
>> VARCHAR(255),
>> first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
>> last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
>> man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255),
>> password
>> VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state VARCHAR(255),
>> PRIMARY KEY (account)) TYPE = innodb} [code=1142, state=42000]
>>        at
>>
>> org.apache.openjpa.util.Exceptions.replaceNestedThrowables(Exceptions.java:242)
>>        at
>>
>> org.apache.openjpa.persistence.PersistenceException.writeObject(PersistenceException.java:100)
>>        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>>        at
>>
>> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
>>        at
>>
>> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>>        at java.lang.reflect.Method.invoke(Method.java:585)
>>        at
>> java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:917)
>>        at
>> java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1339)
>>        at
>>
>> java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1290)
>>        at
>> java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1079)
>>        at
>> java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1375)
>>        at
>> java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1347)
>>        at
>>
>> java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1290)
>>        at
>> java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1079)
>>        at
>> java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:302)
>>        at
>>
>> org.apache.openejb.client.ThrowableArtifact.writeExternal(ThrowableArtifact.java:49)
>>        at
>> java.io.ObjectOutputStream.writeExternalData(ObjectOutputStream.java:1310)
>>        at
>>
>> java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1288)
>>        at
>> java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1079)
>>        at
>> java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:302)
>>        at
>> org.apache.openejb.client.EJBResponse.writeExternal(EJBResponse.java:133)
>>        at
>>
>> org.apache.openejb.server.ejbd.EjbRequestHandler.processRequest(EjbRequestHandler.java:215)
>>        ... 9 more
>>
>>
>> bongosdude wrote:
>> >
>> > This is strange, OpenJPA created new table that I specified in second
>> unit
>> > to the database of first persistence unit.
>> >
>> > 1. I have fun the find command, I only have one persistence.xml
>> > 2. There is not property set in my persistence.xml to ask openjpa to
>> > create table if not exists.
>> >
>> >
>> >
>> > Kevin Sutter wrote:
>> >>
>> >> On Tue, Feb 10, 2009 at 12:31 PM, bongosdude <bo...@gmail.com>
>> >> wrote:
>> >>
>> >>>
>> >>> Kevin,
>> >>>
>> >>> I have turned on the SQL trace and did not see any hints why this
>> >>> happened.
>> >>
>> >>
>> >> The format of your logging property doesn't look right, so that might
>> be
>> >> reason why the output doesn't give any hints.  :-)  Maybe the "tmp" is
>> >> ignored.  Not sure.  Try something like this:
>> >>
>> >> <property name="openjpa.Log" value="DefaultLevel=TRACE"/>
>> >>
>> >> This will turn on all Tracing, not just the SQL tracing.  This might
>> help
>> >> explain why the extra entities and persistence units are getting
>> >> processed.
>> >>
>> >>
>> >> Entities in the second units are defined but there are not
>> >>> session API to access it yet. And I do not set any properties to
>> >>> create table at all. OpenJPA see that the tables in the second unit
>> do
>> >>> not exists in the first unit and try to create in the first unit.
>> >>
>> >>
>> >> Very strange.  Have not experienced that.
>> >>
>> >>
>> >>>
>> >>> What are the work around solution?
>> >>
>> >>
>> >> Except for separating the persistence units into separate
>> persistence.xml
>> >> files, I'm not sure at this point.  This is a new problem for me, so
>> I'm
>> >> not
>> >> sure how or why you are experiencing it.
>> >>
>> >> Kevin
>> >>
>> >>>
>> >>>
>> >>> -B
>> >>> On Feb 10, 2009, at 12:57 PM, Kevin Sutter (via Nabble) wrote:
>> >>>
>> >>> > Hi,
>> >>> > A situation similar to this was first reported to me back in August
>> >>> > by the
>> >>> > author of an IBM Redbook (
>> >>> >
>> >>>
>> http://www.redbooks.ibm.com/Redbooks.nsf/RedpieceAbstracts/sg247639.html?Open
>> >>> )
>> >>> > .
>> >>> > After I gave the "standard" answers of how this might be happening,
>> >>> > I never
>> >>> > heard back.  So, I don't know if the problem was resolved by
>> >>> > application
>> >>> > review or if they decided to live with the situation or what they
>> >>> > did.  You
>> >>> > might want to reference the Redbook to see if there's any reference
>> >>> > to the
>> >>> > situation.
>> >>> >
>> >>> > First off, the tables should only be created if you are using the
>> >>> > SynchronizeMappings property.  Since I don't see that in your
>> >>> > persistence.xml, then I don't see how the tables are getting
>> created
>> >>> > automatically.  Unless you have a different version of the
>> >>> > persistence.xml
>> >>> > file that is getting picked up somehow.  Or, maybe your build
>> >>> > process is
>> >>> > invoking the MappingTool?  Not sure.  I have never experienced
>> >>> > anything like
>> >>> > that.
>> >>> >
>> >>> > As far as creating the empty tables...  My guess is that your junit
>> >>> > test is
>> >>> > (accidentally?) touching both entities, thus creating both tables.
>> >>> > If you
>> >>> > turn on the complete openjpa trace, you can see the processing of
>> the
>> >>> > entities within each persistence unit.  So, either the entities are
>> >>> > being
>> >>> > specified via some property or they are being touched by your
>> >>> > application.
>> >>> > That's my guess.  The trace would give more data to go off of.
>> >>> >
>> >>> > IIRC, there is one limitation with the MappingTool and/or
>> >>> > SynchronizeMappings that it will only process the entities in the
>> >>> > first
>> >>> > defined persistence unit within a persistence.xml file.  But, even
>> >>> > that
>> >>> > doesn't seem to apply in this case since you are indicating that
>> the
>> >>> > tables
>> >>> > are getting created via the second persistence unit.
>> >>> >
>> >>> > Hopefully, the trace will show who is accessing what and causing
>> the
>> >>> > entity
>> >>> > processing and table creation.
>> >>> >
>> >>> > Good luck,
>> >>> > Kevin
>> >>> >
>> >>> >
>> >>> > On Tue, Feb 10, 2009 at 11:36 AM, bongosdude <bo...@...>
>> wrote:
>> >>> >
>> >>> > >
>> >>> > > I defined two persistence units in my persistence.xml to connect
>> >>> > to two
>> >>> > > different databases (one is MySQL and other to MS SQL) like below
>> >>> > >
>> >>> > > <persistence xmlns="http://java.sun.com/xml/ns/persistence"
>> >>> > >             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>> >>> > > version="1.0"
>> >>> > >
>> >>> xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
>> >>> > > http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
>> >>> > >    <persistence-unit name="CallingCardUsersUnit">
>> >>> > >        <description>Entity Beans to db1</description>
>> >>> > >
>> >>> > >
>> <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</
>> >>> > provider>
>> >>> > >        <non-jta-data-source>db_users_notx</non-jta-data-source>
>> >>> > >
>> >>> > <class>com.xyz.services.app.model.entity.users.User</class>
>> >>> > >
>> >>> > >  <class>com.xyz.services.app.model.entity.users.UserRole</class>
>> >>> > >
>> >>> > > 
>> <class>com.xyz.services.app.model.entity.users.UserAccount</class>
>> >>> > >                <properties>
>> >>> > >                        <property name="/tmp/openjpa.log"
>> >>> > value="SQL=TRACE"
>> >>> > > />
>> >>> > >                </properties>
>> >>> > >    </persistence-unit>
>> >>> > >
>> >>> > >    <persistence-unit name="DigittalkUnit">
>> >>> > >        <description>Entity Beans for db2</description>
>> >>> > >
>> >>> > >
>> <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</
>> >>> > provider>
>> >>> > >        <non-jta-data-source>billing_notx</non-jta-data-source>
>> >>> > >        <class>com.xyz.services.app.model.entity.billing.BUser</
>> >>> > class>
>> >>> > >       
>> <class>com.xyz.services.app.model.entity.billing.BAccount</
>> >>> > class>
>> >>> > >                <properties>
>> >>> > >                        <property name="/tmp/openjpa.log"
>> >>> > value="SQL=TRACE"
>> >>> > > />
>> >>> > >                </properties>
>> >>> > >    </persistence-unit>
>> >>> > >
>> >>> > >
>> >>> > > </persistence>
>> >>> > >
>> >>> > >
>> >>> > > When my app first starts up and runs, I need to access entity
>> >>> > > com.xyz.services.app.model.entity.users.User, JPA tries to load
>> >>> > entiry
>> >>> > > com.xyz.services.app.model.entity.users.User and then it tries to
>> >>> > create
>> >>> > > table BUser and BAccount in the first persistence unit. BUser and
>> >>> > BAccount
>> >>> > > are listed in second persistence unit. Also, BUser and BAccount
>> >>> > are mapped
>> >>> > > to existing tables in second persistence unit.
>> >>> > >
>> >>> > > Can someone help me since I do not understand why it happens.
>> >>> > Also, How can
>> >>> > > I turn of the auto create table.
>> >>> > >
>> >>> > > Thanks
>> >>> > > -B
>> >>> > > --
>> >>> > > View this message in context:
>> >>> > >
>> >>>
>> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2303818.html
>> >>> > > Sent from the OpenJPA Users mailing list archive at Nabble.com.
>> >>> > >
>> >>> > >
>> >>> >
>> >>> >
>> >>> > This email is a reply to your post @
>> >>>
>> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2303948.html
>> >>> > You can reply by email or by visting the link above.
>> >>> >
>> >>>
>> >>>
>> >>> --
>> >>> View this message in context:
>> >>>
>> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2304147.html
>> >>> Sent from the OpenJPA Users mailing list archive at Nabble.com.
>> >>>
>> >>
>> >>
>> >
>> >
>>
>> --
>> View this message in context:
>> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2304566.html
>> Sent from the OpenJPA Users mailing list archive at Nabble.com.
>>
>>
> 
> 

-- 
View this message in context: http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2313076.html
Sent from the OpenJPA Users mailing list archive at Nabble.com.


Re: Problem with multi persistence units

Posted by Kevin Sutter <kw...@gmail.com>.
Hi,
It looks like Geronimo might be passing in some extra properties to
OpenJPA???  In the trace, there are two openjpa properties that are
suspect.  You don't have them in your persistence.xml.  And, if you are not
passing them in as system properties, then my next guess is Geronimo.  The
two properties that seem to be causing your situation are these:

openjpa.MetaDataFactory:
jpa(Files=/usr/local/geronimo-
tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar)

openjpa.jdbc.SynchronizeMappings: buildSchema(ForeignKeys=true)

The first one (MetaDataFactory) specifies which persistence types to
process.  Since a jar file is specified, we will search the jar file for any
persistence types (regardless of whether they are listed in a
persistence.xml file or not).  Our documentation explains this a bit more
[1].

The next property (SynchronizeMappings) is what I was referring to in
earlier e-mails.  This is the property that tells OpenJPA to please create
the tables if they do not exist.

You can see in the trace that DigitalkUser and DigitalkAccount are being
processed since they exist in the jar file specified in the MetaDataFactory
property:

124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
"/usr/local/geronimo-tomcat6-
javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
found persistent types
[com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount].

Bottom line, you need to determine how those properties are being passed
into OpenJPA.  We're just doing what's being requested...  :-)

Good luck,
Kevin

[1]
http://openjpa.apache.org/builds/latest/docs/manual/manual.html#ref_guide_meta_factory

On Tue, Feb 10, 2009 at 1:50 PM, bongosdude <bo...@gmail.com> wrote:

>
>
> Kevin,
>
> I copy the trace here for you to review.
>
> 1. There are no other persistence.xml with create table settings
> 2. DigitalkUser and DigitalkAccount are two entity of separate database
> (2nd
> persistence unit.)
> 3. OpenJPA created tables accounts (DigitalkAccount) in my first
> persistence
> unit. I deleted it and it created again. The log is misleading.
>
> My environment
>
> OpenJPA 1.2.0
> Apache Jeronimo 2.1.3
> JDK 1.5
> Mac OS x
>
>
> Thanks for helping
>
> -B
>
>
> <persistence xmlns="http://java.sun.com/xml/ns/persistence"
>             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> version="1.0"
>             xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
> http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
>    <persistence-unit name="CallingCardUsersUnit"
> transaction-type="RESOURCE_LOCAL" >
>        <description>Entity Beans for mysql</description>
>
> <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
>         <non-jta-data-source>callingcard_users_notx</non-jta-data-source>
>
>  <class>com.nuvoip.services.ipcalls.model.entity.users.User</class>
>
>  <class>com.nuvoip.services.ipcalls.model.entity.users.UserRole</class>
>
>  <class>com.nuvoip.services.ipcalls.model.entity.users.UserAccount</class>
>                <properties>
>                         <property name="openjpa.Log"
> value="DefaultLevel=TRACE" />
>                 </properties>
>    </persistence-unit>
>
>    <persistence-unit name="DigittalkUnit"
> transaction-type="RESOURCE_LOCAL">
>        <description>Entity Beans for ms sql</description>
>
> <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
>         <non-jta-data-source>mynuvoip</non-jta-data-source>
>
>
> <class>com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser</class>
>
>
> <class>com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount</class>
>                <properties>
>                         <property name="openjpa.Log"
> value="DefaultLevel=TRACE" />
>                 </properties>
>    </persistence-unit>
>
>
> </persistence>
>
>
>
> 14:38:25,745 INFO  [TimingFilter] Request time: 153 ms
> 14:38:25,745 ERROR [PagePool] Page Page[accounts/Start en] is dirty, and
> will be discarded (rather than returned to the page pool).
> 14:38:26,940 INFO  [TimingFilter] Request time: 1188 ms
> 14:38:34,238 INFO  [BusinessServicesLocator] InitialContext environment =
> {java.naming.provider.url=ejbd://localhost:4201/,
>
> java.naming.factory.initial=org.apache.openejb.client.RemoteInitialContextFactory,
> java.naming.factory.url.pkgs=org.apache.xbean.naming,
> openejb.remotable.businessLocals=true}
> 14:38:34,278 INFO  [OpenEJB] invoking method create on
> callingcard-ejb.jar/CallingCardUser
> 14:38:34,289 INFO  [OpenEJB] finished invoking method create
> 14:38:34,394 INFO  [Transaction] TX Required: Started transaction
> org.apache.geronimo.transaction.manager.TransactionImpl@903331
> 124027  CallingCardUsersUnit  INFO   [ejbd 1] openjpa.Runtime - Starting
> OpenJPA 1.0.3
> 124027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Runtime - Properties:
> openjpa.EntityManagerFactory: default
> openjpa.DataCache: false
> openjpa.MetaDataFactory:
>
> jpa(Files=/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar)
> openjpa.InverseManager: false
> openjpa.ReadLockLevel: read
> openjpa.DataCacheManager: default
> openjpa.jdbc.SubclassFetchMode: join
> openjpa.jdbc.UpdateManager: operation-order
> openjpa.jdbc.SynchronizeMappings: buildSchema(ForeignKeys=true)
> openjpa.NontransactionalRead: true
> openjpa.QueryCompilationCache: true
> openjpa.MaxFetchDepth: -1
> openjpa.RetainState: true
> openjpa.DynamicDataStructs: false
> openjpa.BrokerFactory: jdbc
> openjpa.WriteLockLevel: write
> openjpa.ManagedRuntime: auto
> openjpa.jdbc.EagerFetchMode: parallel
> openjpa.RestoreState: immutable
> openjpa.jdbc.SchemaFactory: dynamic
> openjpa.LockManager: version
> openjpa.BrokerImpl: non-finalizing
> openjpa.NontransactionalWrite: true
> openjpa.MetaDataRepository: default
> openjpa.Log: true(DefaultLevel=TRACE)
> openjpa.jdbc.ResultSetType: forward-only
> openjpa.AutoDetach:
> openjpa.ConnectionRetainMode: on-demand
> openjpa.RuntimeUnenhancedClasses: supported
> openjpa.SavepointManager: in-mem
> openjpa.Optimistic: true
> openjpa.ConnectionFactoryMode: local
> openjpa.Sequence: table(Table=OPENJPASEQ, Increment=100)
> openjpa.FetchGroups: default
> openjpa.jdbc.Schemas:
> openjpa.Id: CallingCardUsersUnit
> openjpa.OrphanedKeyAction: log
> openjpa.FlushBeforeQueries: true
> openjpa.AutoClear: datastore
> openjpa.Compatibility: default
> openjpa.jdbc.LRSSize: query
> openjpa.DetachState: loaded
> openjpa.Multithreaded: false
> openjpa.FetchBatchSize: -1
> openjpa.jdbc.SQLFactory: default
> openjpa.IgnoreChanges: false
> openjpa.jdbc.MappingDefaults: jpa
> openjpa.TransactionMode: local
> openjpa.RetryClassRegistration: false
> openjpa.jdbc.FetchDirection: forward
> openjpa.ClassResolver:
> org.apache.openjpa.persistence.PersistenceUnitInfoImpl$ClassResolverImpl
> openjpa.LockTimeout: -1
> openjpa.DataCacheTimeout: -1
> openjpa.QueryCache: true
> openjpa.jdbc.DriverDataSource: simple
> openjpa.jdbc.TransactionIsolation: default
> openjpa.ProxyManager: default
> 124067  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
> metadata factory
> "org.apache.openjpa.persistence.jdbc.PersistenceMappingFactory@a11a18".
> 124071  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - OpenJPA
> will now connect to the database to attempt to determine what type of
> database dictionary to use. You may prevent this connection in the future
> by
> setting your openjpa.jdbc.DBDictionary configuration property to the
> appropriate value for your database (see the documentation for available
> values).
> 124823  CallingCardUsersUnit  INFO   [ejbd 1] openjpa.jdbc.JDBC - Using
> dictionary class "org.apache.openjpa.jdbc.sql.MySQLDictionary" (MySQL
> 5.1.30
> ,MySQL-AB JDBC Driver mysql-connector-java-5.1.7 ( Revision:
> ${svn.Revision}
> )).
> 124826  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC -
> catalogSeparator: .
> catalogTerm: database
> databaseProductName: MySQL
> databaseProductVersion: 5.1.30
> driverName: MySQL-AB JDBC Driver
> driverVersion: mysql-connector-java-5.1.7 ( Revision: ${svn.Revision} )
> extraNameCharacters: #@
> identifierQuoteString: `
> numericFunctions:
>
> ABS,ACOS,ASIN,ATAN,ATAN2,BIT_COUNT,CEILING,COS,COT,DEGREES,EXP,FLOOR,LOG,LOG10,MAX,MIN,MOD,PI,POW,POWER,RADIANS,RAND,ROUND,SIN,SQRT,TAN,TRUNCATE
> procedureTerm: PROCEDURE
> schemaTerm:
> searchStringEscape: \
> sqlKeywords:
>
> ACCESSIBLE,ANALYZE,ASENSITIVE,BEFORE,BIGINT,BINARY,BLOB,CALL,CHANGE,CONDITION,DATABASE,DATABASES,DAY_HOUR,DAY_MICROSECOND,DAY_MINUTE,DAY_SECOND,DELAYED,DETERMINISTIC,DISTINCTROW,DIV,DUAL,EACH,ELSEIF,ENCLOSED,ESCAPED,EXIT,EXPLAIN,FLOAT4,FLOAT8,FORCE,FULLTEXT,HIGH_PRIORITY,HOUR_MICROSECOND,HOUR_MINUTE,HOUR_SECOND,IF,IGNORE,INFILE,INOUT,INT1,INT2,INT3,INT4,INT8,ITERATE,KEYS,KILL,LEAVE,LIMIT,LINEAR,LINES,LOAD,LOCALTIME,LOCALTIMESTAMP,LOCK,LONG,LONGBLOB,LONGTEXT,LOOP,LOW_PRIORITY,MEDIUMBLOB,MEDIUMINT,MEDIUMTEXT,MIDDLEINT,MINUTE_MICROSECOND,MINUTE_SECOND,MOD,MODIFIES,NO_WRITE_TO_BINLOG,OPTIMIZE,OPTIONALLY,OUT,OUTFILE,PURGE,RANGE,READS,READ_ONLY,READ_WRITE,REGEXP,RELEASE,RENAME,REPEAT,REPLACE,REQUIRE,RETURN,RLIKE,SCHEMAS,SECOND_MICROSECOND,SENSITIVE,SEPARATOR,SHOW,SPATIAL,SPECIFIC,SQLEXCEPTION,SQL_BIG_RESULT,SQL_CALC_FOUND_ROWS,SQL_SMALL_RESULT,SSL,STARTING,STRAIGHT_JOIN,TERMINATED,TINYBLOB,TINYINT,TINYTEXT,TRIGGER,UNDO,UNLOCK,UNSIGNED,USE,UTC_DATE,UTC_TIME,UTC_TIMESTAMP,VARBINARY,VARCHARACTER,WHILE,X509,XOR,YEAR_MONTH,ZEROFILL
> stringFunctions:
>
> ASCII,BIN,BIT_LENGTH,CHAR,CHARACTER_LENGTH,CHAR_LENGTH,CONCAT,CONCAT_WS,CONV,ELT,EXPORT_SET,FIELD,FIND_IN_SET,HEX,INSERT,INSTR,LCASE,LEFT,LENGTH,LOAD_FILE,LOCATE,LOCATE,LOWER,LPAD,LTRIM,MAKE_SET,MATCH,MID,OCT,OCTET_LENGTH,ORD,POSITION,QUOTE,REPEAT,REPLACE,REVERSE,RIGHT,RPAD,RTRIM,SOUNDEX,SPACE,STRCMP,SUBSTRING,SUBSTRING,SUBSTRING,SUBSTRING,SUBSTRING_INDEX,TRIM,UCASE,UPPER
> systemFunctions:
>
> DATABASE,USER,SYSTEM_USER,SESSION_USER,PASSWORD,ENCRYPT,LAST_INSERT_ID,VERSION
> timeDateFunctions:
>
> DAYOFWEEK,WEEKDAY,DAYOFMONTH,DAYOFYEAR,MONTH,DAYNAME,MONTHNAME,QUARTER,WEEK,YEAR,HOUR,MINUTE,SECOND,PERIOD_ADD,PERIOD_DIFF,TO_DAYS,FROM_DAYS,DATE_FORMAT,TIME_FORMAT,CURDATE,CURRENT_DATE,CURTIME,CURRENT_TIME,NOW,SYSDATE,CURRENT_TIMESTAMP,UNIX_TIMESTAMP,FROM_UNIXTIME,SEC_TO_TIME,TIME_TO_SEC
> url: jdbc:mysql://localhost:3306/callingcard_users
> userName: josso@localhost
> defaultTransactionIsolation: 2
> driverMajorVersion: 5
> driverMinorVersion: 1
> maxBinaryLiteralLength: 16777208
> maxCatalogNameLength: 32
> maxCharLiteralLength: 16777208
> maxColumnNameLength: 64
> maxColumnsInGroupBy: 64
> maxColumnsInIndex: 16
> maxColumnsInOrderBy: 64
> maxColumnsInSelect: 256
> maxColumnsInTable: 512
> maxConnections: 0
> maxCursorNameLength: 64
> maxIndexLength: 256
> maxProcedureNameLength: 0
> maxRowSize: 2147483639
> maxSchemaNameLength: 0
> maxStatementLength: 65531
> maxStatements: 0
> maxTableNameLength: 64
> maxTablesInSelect: 256
> maxUserNameLength: 16
> isCatalogAtStart: true
> isReadOnly: false
> nullPlusNonNullIsNull: true
> nullsAreSortedAtEnd: false
> nullsAreSortedAtStart: false
> nullsAreSortedHigh: false
> nullsAreSortedLow: true
> storesLowerCaseIdentifiers: false
> storesLowerCaseQuotedIdentifiers: false
> storesMixedCaseIdentifiers: true
> storesMixedCaseQuotedIdentifiers: true
> storesUpperCaseIdentifiers: false
> storesUpperCaseQuotedIdentifiers: true
> supportsAlterTableWithAddColumn: true
> supportsAlterTableWithDropColumn: true
> supportsANSI92EntryLevelSQL: true
> supportsANSI92FullSQL: false
> supportsANSI92IntermediateSQL: false
> supportsCatalogsInDataManipulation: true
> supportsCatalogsInIndexDefinitions: true
> supportsCatalogsInPrivilegeDefinitions: true
> supportsCatalogsInProcedureCalls: true
> supportsCatalogsInTableDefinitions: true
> supportsColumnAliasing: true
> supportsConvert: false
> supportsCoreSQLGrammar: true
> supportsCorrelatedSubqueries: true
> supportsDataDefinitionAndDataManipulationTransactions: false
> supportsDataManipulationTransactionsOnly: false
> supportsDifferentTableCorrelationNames: true
> supportsExpressionsInOrderBy: true
> supportsExtendedSQLGrammar: false
> supportsFullOuterJoins: false
> supportsGroupBy: true
> supportsGroupByBeyondSelect: true
> supportsGroupByUnrelated: true
> supportsIntegrityEnhancementFacility: false
> supportsLikeEscapeClause: true
> supportsLimitedOuterJoins: true
> supportsMinimumSQLGrammar: true
> supportsMixedCaseIdentifiers: false
> supportsMixedCaseQuotedIdentifiers: false
> supportsMultipleResultSets: false
> supportsMultipleTransactions: true
> supportsNonNullableColumns: true
> supportsOpenCursorsAcrossCommit: false
> supportsOpenCursorsAcrossRollback: false
> supportsOpenStatementsAcrossCommit: false
> supportsOpenStatementsAcrossRollback: false
> supportsOrderByUnrelated: false
> supportsOuterJoins: true
> supportsPositionedDelete: false
> supportsPositionedUpdate: false
> supportsSchemasInDataManipulation: false
> supportsSchemasInIndexDefinitions: false
> supportsSchemasInPrivilegeDefinitions: false
> supportsSchemasInProcedureCalls: false
> supportsSchemasInTableDefinitions: false
> supportsSelectForUpdate: true
> supportsStoredProcedures: true
> supportsSubqueriesInComparisons: true
> supportsSubqueriesInExists: true
> supportsSubqueriesInIns: true
> supportsSubqueriesInQuantifieds: true
> supportsTableCorrelationNames: true
> supportsTransactions: true
> supportsUnion: true
> supportsUnionAll: true
> usesLocalFilePerTable: false
> usesLocalFiles: false
> allProceduresAreCallable: false
> allTablesAreSelectable: false
> dataDefinitionCausesTransactionCommit: true
> dataDefinitionIgnoredInTransactions: false
> doesMaxRowSizeIncludeBlobs: true
> supportsBatchUpdates: true
> 124830  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 11435458> [0 ms] close
> 124863  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 5935820> [0 ms] close
> 124906  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scanning
> jar
>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> for persistent types.
> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
> persistent type location association for location
>
> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount.class"
> since it is a class, and will not need to be re-parsed later.
> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> found persistent types
> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount].
> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
> persistent type location association for location
> "com/nuvoip/services/ipcalls/model/entity/users/UserRole.class" since it is
> a class, and will not need to be re-parsed later.
> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> found persistent types
> [com.nuvoip.services.ipcalls.model.entity.users.UserRole].
> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
> persistent type location association for location
> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser.class"
> since it is a class, and will not need to be re-parsed later.
> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> found persistent types
> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser].
> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
> persistent type location association for location
> "com/nuvoip/services/ipcalls/model/entity/users/User.class" since it is a
> class, and will not need to be re-parsed later.
> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> found persistent types
> [com.nuvoip.services.ipcalls.model.entity.users.User].
> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
> persistent type location association for location
> "com/nuvoip/services/ipcalls/model/entity/users/UserAccount.class" since it
> is a class, and will not need to be re-parsed later.
> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> found persistent types
> [com.nuvoip.services.ipcalls.model.entity.users.UserAccount].
> 124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scanning
> resource "META-INF/orm.xml" for persistent types.
> 124911  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> parsePersistentTypeNames() found
> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser,
> com.nuvoip.services.ipcalls.model.entity.users.UserAccount,
> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount,
> com.nuvoip.services.ipcalls.model.entity.users.User,
> com.nuvoip.services.ipcalls.model.entity.users.UserRole].
> 124911  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Found 5
> classes with metadata in 5 milliseconds.
> 125076  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser"
> requires
> runtime enhancement: true
> 125100  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> metadata for "class
> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" under
> mode "[META][QUERY]".
> 125100  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> class "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> 125100  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> package
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> 125106  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Generating
> default metadata for type
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> 125106  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
> reflection for metadata generation.
> 125137  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> query "DigitalkUser.findByAccountNo".
> 125165  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> query "DigitalkUser.findByCliAndUsername".
> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> persistence-capable superclass of
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" to
> "null".
> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
> metadata for
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805
> ".
> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.accountId
> ".
> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.callback
> ".
> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.cli
> ".
> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.cliPin
> ".
> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.createDate
> ".
> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.lastNumberDial
> ".
> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.pin
> ".
> 125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.userName
> ".
> 125199  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance - Enhancing
> type "class
> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> 125018  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser"
> requires
> runtime enhancement: false
> 125233  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> "com/nuvoip/services/ipcalls/model/entity/users/UserAccount" requires
> runtime enhancement: true
> 125236  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance - Enhancing
> type "class com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
> 125058  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
> "com/nuvoip/services/ipcalls/model/entity/users/UserAccount" requires
> runtime enhancement: false
> 125272  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount"
> requires runtime enhancement: true
> 125318  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> metadata for "class
> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount" under
> mode "[META][QUERY]".
> 125318  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> class
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> 125324  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Generating
> default metadata for type
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> 125324  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
> reflection for metadata generation.
> 125364  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> query "DigitalkAccount.findByAccountNo".
> 125397  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> query "DigitalkAccount.findByEmail".
> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> persistence-capable superclass of
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount" to
> "null".
> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
> metadata for
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550
> ".
> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.accountId
> ".
> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address1
> ".
> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address2
> ".
> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address3
> ".
> 125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address4
> ".
> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address5
> ".
> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.autoRechargeAmount
> ".
> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.autoRechargeThreshold
> ".
> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.autoRechrgEnabled
> ".
> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.businessCategory
> ".
> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.country
> ".
> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.createDate
> ".
> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.credit
> ".
> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.creditLimit
> ".
> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.creditMsgEnabled
> ".
> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.creditType
> ".
> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.currency
> ".
> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.email
> ".
> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.firstAccessDate
> ".
> 125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.firstname
> ".
> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.hotDial
> ".
> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lastAccessDate
> ".
> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lastModified
> ".
> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lastname
> ".
> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lead_source
> ".
> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.manualRecharge
> ".
> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.manualRechargeAmt
> ".
> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
> "
> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.name
> ".
> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.password
> ".
> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.speedDial
> ".
> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.speedDialKey
> ".
> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.state
> ".
> 125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.users
> ".
> 125453  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance - Enhancing
> type "class
> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> 125314  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount"
> requires runtime enhancement: false
> 125532  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
> "com/nuvoip/services/ipcalls/model/entity/users/UserRole" requires runtime
> enhancement: true
> 125542  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance - Enhancing
> type "class com.nuvoip.services.ipcalls.model.entity.users.UserRole".
> 125351  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
> "com/nuvoip/services/ipcalls/model/entity/users/UserRole" requires runtime
> enhancement: false
> 125412  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
> metadata factory
> "org.apache.openjpa.persistence.jdbc.PersistenceMappingFactory@9168ba".
> 125413  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> metadata for "class
> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" under
> mode "[META][QUERY]".
> 125413  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scanning
> jar
>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> for persistent types.
> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
> persistent type location association for location
>
> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount.class"
> since it is a class, and will not need to be re-parsed later.
> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> found persistent types
> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount].
> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
> persistent type location association for location
> "com/nuvoip/services/ipcalls/model/entity/users/UserRole.class" since it is
> a class, and will not need to be re-parsed later.
> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> found persistent types
> [com.nuvoip.services.ipcalls.model.entity.users.UserRole].
> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
> persistent type location association for location
> "com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser.class"
> since it is a class, and will not need to be re-parsed later.
> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> found persistent types
> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser].
> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
> persistent type location association for location
> "com/nuvoip/services/ipcalls/model/entity/users/User.class" since it is a
> class, and will not need to be re-parsed later.
> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> found persistent types
> [com.nuvoip.services.ipcalls.model.entity.users.User].
> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
> persistent type location association for location
> "com/nuvoip/services/ipcalls/model/entity/users/UserAccount.class" since it
> is a class, and will not need to be re-parsed later.
> 125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
>
> "/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
> found persistent types
> [com.nuvoip.services.ipcalls.model.entity.users.UserAccount].
> 125420  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scanning
> resource "META-INF/orm.xml" for persistent types.
> 125421  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> parsePersistentTypeNames() found
> [com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser,
> com.nuvoip.services.ipcalls.model.entity.users.UserAccount,
> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount,
> com.nuvoip.services.ipcalls.model.entity.users.User,
> com.nuvoip.services.ipcalls.model.entity.users.UserRole].
> 125421  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Found 5
> classes with metadata in 8 milliseconds.
> 125456  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> class "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> 125456  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> package
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> 125482  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Generating
> default metadata for type
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> 125518  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> query "DigitalkUser.findByAccountNo".
> 125548  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> query "DigitalkUser.findByCliAndUsername".
> 125585  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> persistence-capable superclass of
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" to
> "null".
> 125585  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
> metadata for
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430
> ".
> 125585  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.accountId
> ".
> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.callback
> ".
> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cli
> ".
> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cliPin
> ".
> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.createDate
> ".
> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.lastNumberDial
> ".
> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.pin
> ".
> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.userName
> ".
> 125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Preparing
> mapping for
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
> 125595  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.accountId
> ".
> 125606  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "accountId" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.callback
> ".
> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "callback"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cli
> ".
> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "cli" has
> mapping strategy "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cliPin
> ".
> 125609  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "cliPin"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125609  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.createDate
> ".
> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "createDate" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.lastNumberDial
> ".
> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "lastNumberDial" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.pin
> ".
> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "pin" has
> mapping strategy "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.userName
> ".
> 125618  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "userName"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125620  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser<discriminator>"
> has mapping strategy "none".
> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser<version>"
> has mapping strategy "none".
> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
> mapping for
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430
> ".
> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" has
> mapping strategy "full".
> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> metadata for "class
> com.nuvoip.services.ipcalls.model.entity.users.UserAccount" under mode
> "[META][QUERY]".
> 125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> class "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
> 125630  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> package "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
> 125631  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Generating
> default metadata for type
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> persistence-capable superclass of
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount" to "null".
> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
> metadata for
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295".
> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.accountNo
> ".
> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.contextName
> ".
> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.userId
> ".
> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Preparing
> mapping for "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
> 125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.userId
> ".
> 125663  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "userId"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> 125663  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.accountNo
> ".
> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "accountNo" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.contextName
> ".
> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "contextName" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount<discriminator>"
> has mapping strategy "none".
> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount<version>" has
> mapping strategy "none".
> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
> mapping for
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295".
> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "com.nuvoip.services.ipcalls.model.entity.users.UserAccount" has mapping
> strategy "full".
> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> metadata for "class
> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount" under
> mode "[META][QUERY]".
> 125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> class
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> 125667  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Generating
> default metadata for type
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> 125696  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> query "DigitalkAccount.findByAccountNo".
> 125728  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> query "DigitalkAccount.findByEmail".
> 125768  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> table generator "newaccountnum".
> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> persistence-capable superclass of
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount" to
> "null".
> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
> metadata for
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798
> ".
> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.accountId
> ".
> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address1
> ".
> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address2
> ".
> 125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address3
> ".
> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address4
> ".
> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address5
> ".
> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeAmount
> ".
> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeThreshold
> ".
> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechrgEnabled
> ".
> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.businessCategory
> ".
> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.country
> ".
> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.createDate
> ".
> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.credit
> ".
> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditLimit
> ".
> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditMsgEnabled
> ".
> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditType
> ".
> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.currency
> ".
> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.email
> ".
> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstAccessDate
> ".
> 125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstname
> ".
> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.hotDial
> ".
> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastAccessDate
> ".
> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastModified
> ".
> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastname
> ".
> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lead_source
> ".
> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRecharge
> ".
> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRechargeAmt
> ".
> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
> "
> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.name
> ".
> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.password
> ".
> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDial
> ".
> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDialKey
> ".
> 125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.state
> ".
> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.users
> ".
> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Preparing
> mapping for
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.accountId
> ".
> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "accountId" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address1
> ".
> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "address1"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address2
> ".
> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "address2"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address3
> ".
> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "address3"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address4
> ".
> 125807  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "address4"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125807  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address5
> ".
> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "address5"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeAmount
> ".
> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "autoRechargeAmount" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeThreshold
> ".
> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "autoRechargeThreshold" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechrgEnabled
> ".
> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "autoRechrgEnabled" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.businessCategory
> ".
> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "businessCategory" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.country
> ".
> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "country"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.createDate
> ".
> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "createDate" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> 125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.credit
> ".
> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "credit"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditLimit
> ".
> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "creditLimit" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditMsgEnabled
> ".
> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "creditMsgEnabled" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditType
> ".
> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "creditType" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.currency
> ".
> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "currency"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.email
> ".
> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "email"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstAccessDate
> ".
> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "firstAccessDate" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> 125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstname
> ".
> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "firstname" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.hotDial
> ".
> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "hotDial"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastAccessDate
> ".
> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "lastAccessDate" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastModified
> ".
> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "lastModified" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastname
> ".
> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "lastname"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lead_source
> ".
> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "lead_source" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRecharge
> ".
> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "manualRecharge" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> 125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRechargeAmt
> ".
> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "manualRechargeAmt" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
> "
> com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.name
> ".
> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "name" has
> mapping strategy "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.password
> ".
> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "password"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDial
> ".
> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "speedDial" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDialKey
> ".
> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "speedDialKey" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.state
> ".
> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "state"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount<discriminator>"
> has mapping strategy "none".
> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount<version>"
> has mapping strategy "none".
> 125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
> mapping for
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798
> ".
> 125812  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount" has
> mapping strategy "full".
> 125812  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.users
> ".
> 125824  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "users"
> has mapping strategy
>
> "org.apache.openjpa.jdbc.meta.strats.RelationCollectionInverseKeyFieldStrategy".
> 125824  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> metadata for "class com.nuvoip.services.ipcalls.model.entity.users.User"
> under mode "[META][QUERY]".
> 125824  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> class "com.nuvoip.services.ipcalls.model.entity.users.User".
> 125825  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Generating
> default metadata for type
> "com.nuvoip.services.ipcalls.model.entity.users.User".
> 125850  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> query "User.findByUserName".
> 125875  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> query "User.doesUserExist".
> 125903  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> persistence-capable superclass of
> "com.nuvoip.services.ipcalls.model.entity.users.User" to "null".
> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
> metadata for "com.nuvoip.services.ipcalls.model.entity.users.User@3715277
> ".
> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.enabled
> ".
> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.grantedAuthorities
> ".
> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
> metadata for "class
> com.nuvoip.services.ipcalls.model.entity.users.UserRole"
> under mode "[META][QUERY]".
> 125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
> class "com.nuvoip.services.ipcalls.model.entity.users.UserRole".
> 125905  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Generating
> default metadata for type
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole".
> 125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
> persistence-capable superclass of
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole" to "null".
> 125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.password".
> 125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.username".
> 125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrAccount".
> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrId".
> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.version
> ".
> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
> metadata for
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170".
> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.authority
> ".
> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.id
> ".
> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.username
> ".
> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.version".
> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Preparing
> mapping for "com.nuvoip.services.ipcalls.model.entity.users.User".
> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrId".
> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "usrId"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> 125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.enabled
> ".
> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "enabled"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.password".
> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "password"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.username".
> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "username"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.version
> ".
> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "version"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "com.nuvoip.services.ipcalls.model.entity.users.User<discriminator>" has
> mapping strategy "none".
> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "com.nuvoip.services.ipcalls.model.entity.users.User<version>" has mapping
> strategy "none".
> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Preparing
> mapping for "com.nuvoip.services.ipcalls.model.entity.users.UserRole".
> 125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.id
> ".
> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "id" has
> mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.authority
> ".
> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "authority" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.username
> ".
> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "username"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.version".
> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  "version"
> has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole<discriminator>"
> has
> mapping strategy "none".
> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole<version>" has
> mapping strategy "none".
> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
> mapping for "com.nuvoip.services.ipcalls.model.entity.users.User@3715277".
> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "com.nuvoip.services.ipcalls.model.entity.users.User" has mapping strategy
> "full".
> 125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
>
> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.grantedAuthorities
> ".
> 125937  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "grantedAuthorities" has mapping strategy
>
> "org.apache.openjpa.jdbc.meta.strats.RelationCollectionInverseKeyFieldStrategy".
> 125937  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
>  Resolving
> field
> "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrAccount".
> 125944  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "usrAccount" has mapping strategy
> "org.apache.openjpa.jdbc.meta.strats.RelationFieldStrategy".
> 125944  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
> mapping for
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170".
> 125944  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
> "com.nuvoip.services.ipcalls.model.entity.users.UserRole" has mapping
> strategy "full".
> 125958  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> table information for schema name "null", table name "authorities".
> 125958  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 10469122> getColumns: callingcard_users, null, authorities,
> null
> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> column information for table "authorities".
> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "id" on table "authorities".
> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "username" on table "authorities".
> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "authority" on table "authorities".
> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "version" on table "authorities".
> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> table information for schema name "null", table name "OPENJPASEQ".
> 125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 10469122> getColumns: callingcard_users, null, OPENJPASEQ,
> null
> 126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> column information for table "OPENJPASEQ".
> 126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "ID" on table "OPENJPASEQ".
> 126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "SEQUENCE_VALUE" on table "OPENJPASEQ".
> 126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> table information for schema name "null", table name "subscribers".
> 126009  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 10469122> getColumns: callingcard_users, null, subscribers,
> null
> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> column information for table "subscribers".
> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "user_id" on table "subscribers".
> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "context_nm" on table "subscribers".
> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "account_nm" on table "subscribers".
> 126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> sequence information for schema "null", sequence name "null".
> 126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 10469122> [1 ms] commit
> 126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 10469122> [0 ms] close
> 126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> table information for schema name "dbo", table name "accounts".
> 126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 3459509> getColumns: callingcard_users, dbo, accounts, null
> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> column information for table "accounts".
> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "account" on table "accounts".
> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "addr1" on table "accounts".
> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "addr2" on table "accounts".
> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "addr3" on table "accounts".
> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "addr4" on table "accounts".
> 126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "addr5" on table "accounts".
> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "auto_recharge_amount" on table "accounts".
> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "auto_recharge_threshold" on table "accounts".
> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "auto_recharge" on table "accounts".
> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "category" on table "accounts".
> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "country" on table "accounts".
> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "cre_date" on table "accounts".
> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "credit" on table "accounts".
> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "credit_limit" on table "accounts".
> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "credit_msg" on table "accounts".
> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "type" on table "accounts".
> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "currency" on table "accounts".
> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "email" on table "accounts".
> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "first_date" on table "accounts".
> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "fname" on table "accounts".
> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "hot_dial" on table "accounts".
> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "last_date" on table "accounts".
> 126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "last_modified" on table "accounts".
> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "lname" on table "accounts".
> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "lead_source" on table "accounts".
> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "man_recharge" on table "accounts".
> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "man_recharge_amount" on table "accounts".
> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "name" on table "accounts".
> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "password" on table "accounts".
> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "spd_dial" on table "accounts".
> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "spd_key" on table "accounts".
> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "state" on table "accounts".
> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> table information for schema name "dbo", table name "OPENJPASEQ".
> 126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 3459509> getColumns: callingcard_users, dbo, OPENJPASEQ,
> null
> 126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "ID" on table "OPENJPASEQ".
> 126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "SEQUENCE_VALUE" on table "OPENJPASEQ".
> 126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> table information for schema name "dbo", table name "users".
> 126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 3459509> getColumns: callingcard_users, dbo, users, null
> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> column information for table "users".
> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "id" on table "users".
> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "username" on table "users".
> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "password" on table "users".
> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "enabled" on table "users".
> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing column "version" on table "users".
> 126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> sequence information for schema "dbo", sequence name "null".
> 126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 3459509> [2 ms] commit
> 126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 3459509> [0 ms] close
> 126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> foreign keys for schema name "null", table name "authorities".
> 126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 15855117> getImportedKeys: callingcard_users, null,
> authorities
> 126059  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing foreign key "fk_authorities_users" on table "authorities
> (username)" linking to table "users (username)".  Sequence: "1".
> 126059  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> foreign keys for schema name "null", table name "OPENJPASEQ".
> 126060  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 15855117> getImportedKeys: callingcard_users, null,
> OPENJPASEQ
> 126061  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> foreign keys for schema name "null", table name "subscribers".
> 126061  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 15855117> getImportedKeys: callingcard_users, null,
> subscribers
> 126062  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
> existing foreign key "subscribers_users_fk" on table "subscribers
> (user_id)"
> linking to table "users (id)".  Sequence: "1".
> 126062  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 15855117> [0 ms] commit
> 126062  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 15855117> [0 ms] close
> 126063  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> foreign keys for schema name "dbo", table name "accounts".
> 126063  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 899387> getImportedKeys: callingcard_users, dbo, accounts
> 126065  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> foreign keys for schema name "dbo", table name "OPENJPASEQ".
> 126065  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 899387> getImportedKeys: callingcard_users, dbo, OPENJPASEQ
> 126066  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
> foreign keys for schema name "dbo", table name "users".
> 126066  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 899387> getImportedKeys: callingcard_users, dbo, users
> 126067  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 899387> [0 ms] commit
> 126067  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 899387> [0 ms] close
> 126067  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema -
> Existing
> column "authority" on table "authorities" is incompatible with the same
> column in the given schema definition. Existing column:
> Full Name: authorities.authority
> Type: varchar
> Size: 50
> Default: null
> Not Null: true
> Given column:
> Full Name: authorities.authority
> Type: varchar
> Size: 255
> Default: null
> Not Null: false
>
> 126067  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema -
> Existing
> column "username" on table "authorities" is incompatible with the same
> column in the given schema definition. Existing column:
> Full Name: authorities.username
> Type: varchar
> Size: 50
> Default: null
> Not Null: true
> Given column:
> Full Name: authorities.username
> Type: varchar
> Size: 255
> Default: null
> Not Null: false
>
> 126067  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema -
> Existing
> column "account_nm" on table "subscribers" is incompatible with the same
> column in the given schema definition. Existing column:
> Full Name: subscribers.account_nm
> Type: varchar
> Size: 20
> Default: null
> Not Null: true
> Given column:
> Full Name: subscribers.account_nm
> Type: varchar
> Size: 255
> Default: null
> Not Null: false
>
> 126068  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema -
> Existing
> column "context_nm" on table "subscribers" is incompatible with the same
> column in the given schema definition. Existing column:
> Full Name: subscribers.context_nm
> Type: varchar
> Size: 50
> Default: null
> Not Null: false
> Given column:
> Full Name: subscribers.context_nm
> Type: varchar
> Size: 255
> Default: null
> Not Null: false
>
> 126068  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 7437197> [0 ms] rollback
> 126074  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.SQL - <t
> 16566280, conn 7437197> executing stmnt 8295201 CREATE TABLE dbo.accounts
> (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2 VARCHAR(255),
> addr3 VARCHAR(255), addr4 VARCHAR(255), addr5 VARCHAR(255),
> auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge BIT,
> category BIT, country VARCHAR(255), cre_date DATE, credit REAL,
> credit_limit
> REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email VARCHAR(255),
> first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
> last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
> man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255), password
> VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state VARCHAR(255),
> PRIMARY KEY (account)) TYPE = innodb
> 126089  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.SQL - <t
> 16566280, conn 7437197> [15 ms] spent
> 126089  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
> 16566280, conn 7437197> [0 ms] close
> 14:38:36,465 INFO  [Transaction] TX Required: setRollbackOnly() on
> transaction org.apache.geronimo.transaction.manager.TransactionImpl@903331
> 14:38:36,465 INFO  [Transaction] TX Required: Rolling back transaction
> org.apache.geronimo.transaction.manager.TransactionImpl@903331
> 14:38:36,487 ERROR [[default]] Servlet.service() for servlet default threw
> exception
> javax.ejb.EJBException: The bean encountered a non-application exception.;
> nested exception is:
>        <openjpa-1.0.3-r420667:677674 nonfatal general error>
> org.apache.openjpa.persistence.PersistenceException: CREATE command denied
> to user 'josso'@'localhost' for table 'accounts' {stmnt 8295201 CREATE
> TABLE
> dbo.accounts (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2
> VARCHAR(255), addr3 VARCHAR(255), addr4 VARCHAR(255), addr5 VARCHAR(255),
> auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge BIT,
> category BIT, country VARCHAR(255), cre_date DATE, credit REAL,
> credit_limit
> REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email VARCHAR(255),
> first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
> last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
> man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255), password
> VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state VARCHAR(255),
> PRIMARY KEY (account)) TYPE = innodb} [code=1142, state=42000]
>        at
>
> org.apache.openejb.client.EJBInvocationHandler.convertException(EJBInvocationHandler.java:219)
>        at
>
> org.apache.openejb.client.EJBObjectHandler._invoke(EJBObjectHandler.java:157)
>        at
>
> org.apache.openejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:117)
>        at
>
> org.apache.openejb.client.proxy.Jdk13InvocationHandler.invoke(Jdk13InvocationHandler.java:52)
>        at $Proxy103.findByUsername(Unknown Source)
>        at
>
> com.nuvoip.services.ipcalls.services.internal.UserDetailsServiceImpl.loadUserByUsername(UserDetailsServiceImpl.java:23)
>        at
>
> $UserDetailsService_11f61b0e2d0.loadUserByUsername($UserDetailsService_11f61b0e2d0.java)
>        at
>
> org.springframework.security.providers.dao.DaoAuthenticationProvider.retrieveUser(DaoAuthenticationProvider.java:83)
>        at
>
> org.springframework.security.providers.dao.AbstractUserDetailsAuthenticationProvider.authenticate(AbstractUserDetailsAuthenticationProvider.java:121)
>        at
>
> $AuthenticationProvider_11f61b0e3aa.authenticate($AuthenticationProvider_11f61b0e3aa.java)
>        at
>
> org.springframework.security.providers.ProviderManager.doAuthentication(ProviderManager.java:188)
>        at
>
> org.springframework.security.AbstractAuthenticationManager.authenticate(AbstractAuthenticationManager.java:46)
>        at
>
> $AuthenticationManager_11f61b0e2a7.authenticate($AuthenticationManager_11f61b0e2a7.java)
>        at
>
> org.springframework.security.ui.webapp.AuthenticationProcessingFilter.attemptAuthentication(AuthenticationProcessingFilter.java:82)
>        at
>
> org.springframework.security.ui.AbstractProcessingFilter.doFilterHttp(AbstractProcessingFilter.java:258)
>        at
>
> org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
>        at
>
> nu.localhost.tapestry5.springsecurity.services.internal.HttpServletRequestFilterWrapper.service(HttpServletRequestFilterWrapper.java:52)
>        at
>
> $HttpServletRequestFilter_11f61b0e2c8.service($HttpServletRequestFilter_11f61b0e2c8.java)
>        at
>
> $HttpServletRequestHandler_11f61b0e2cf.service($HttpServletRequestHandler_11f61b0e2cf.java)
>        at
>
> nu.localhost.tapestry5.springsecurity.services.internal.HttpServletRequestFilterWrapper$1.doFilter(HttpServletRequestFilterWrapper.java:56)
>        at
>
> org.springframework.security.context.HttpSessionContextIntegrationFilter.doFilterHttp(HttpSessionContextIntegrationFilter.java:235)
>        at
>
> org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
>        at
>
> nu.localhost.tapestry5.springsecurity.services.internal.HttpServletRequestFilterWrapper.service(HttpServletRequestFilterWrapper.java:52)
>        at
>
> $HttpServletRequestFilter_11f61b0e2c7.service($HttpServletRequestFilter_11f61b0e2c7.java)
>        at
>
> $HttpServletRequestHandler_11f61b0e2cf.service($HttpServletRequestHandler_11f61b0e2cf.java)
>        at
>
> org.apache.tapestry5.internal.services.IgnoredPathsFilter.service(IgnoredPathsFilter.java:62)
>        at
>
> $HttpServletRequestFilter_11f61b0e2c6.service($HttpServletRequestFilter_11f61b0e2c6.java)
>        at
>
> $HttpServletRequestHandler_11f61b0e2cf.service($HttpServletRequestHandler_11f61b0e2cf.java)
>        at
>
> $HttpServletRequestHandler_11f61b0e2c5.service($HttpServletRequestHandler_11f61b0e2c5.java)
>        at
> org.apache.tapestry5.TapestryFilter.doFilter(TapestryFilter.java:179)
>        at
>
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
>        at
>
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
>        at
>
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
>        at
>
> org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
>        at
>
> org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56)
>        at
>
> org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406)
>        at
>
> org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
>        at
>
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
>        at
>
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
>        at
>
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
>        at
> org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568)
>        at
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
>        at
> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
>        at
>
> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
>        at
> org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
>        at java.lang.Thread.run(Thread.java:613)
> Caused by: <openjpa-1.0.3-r420667:677674 nonfatal general error>
> org.apache.openjpa.persistence.PersistenceException: CREATE command denied
> to user 'josso'@'localhost' for table 'accounts' {stmnt 8295201 CREATE
> TABLE
> dbo.accounts (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2
> VARCHAR(255), addr3 VARCHAR(255), addr4 VARCHAR(255), addr5 VARCHAR(255),
> auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge BIT,
> category BIT, country VARCHAR(255), cre_date DATE, credit REAL,
> credit_limit
> REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email VARCHAR(255),
> first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
> last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
> man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255), password
> VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state VARCHAR(255),
> PRIMARY KEY (account)) TYPE = innodb} [code=1142, state=42000]
>        at
> org.apache.openjpa.jdbc.meta.MappingTool.record(MappingTool.java:549)
>        at
> org.apache.openjpa.jdbc.meta.MappingTool.record(MappingTool.java:449)
>        at
>
> org.apache.openjpa.jdbc.kernel.JDBCBrokerFactory.synchronizeMappings(JDBCBrokerFactory.java:170)
>        at
>
> org.apache.openjpa.jdbc.kernel.JDBCBrokerFactory.newBrokerImpl(JDBCBrokerFactory.java:130)
>        at
>
> org.apache.openjpa.kernel.AbstractBrokerFactory.newBroker(AbstractBrokerFactory.java:188)
>        at
>
> org.apache.openjpa.kernel.DelegatingBrokerFactory.newBroker(DelegatingBrokerFactory.java:142)
>        at
>
> org.apache.openjpa.persistence.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:192)
>        at
>
> org.apache.openjpa.persistence.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:56)
>        at
>
> org.apache.geronimo.persistence.CMPEntityManagerTxScoped.createEntityManager(CMPEntityManagerTxScoped.java:74)
>        at
>
> org.apache.geronimo.persistence.CMPEntityManagerTxScoped.getEntityManager(CMPEntityManagerTxScoped.java:55)
>        at
>
> org.apache.geronimo.persistence.CMPEntityManagerTxScoped.createNamedQuery(CMPEntityManagerTxScoped.java:259)
>        at
>
> com.nuvoip.services.ipcalls.business.users.CallingCardUser.findByUsername(CallingCardUser.java:76)
>        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>        at
>
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
>        at
>
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>        at java.lang.reflect.Method.invoke(Method.java:585)
>        at
>
> org.apache.openejb.core.interceptor.ReflectionInvocationContext$Invocation.invoke(ReflectionInvocationContext.java:158)
>        at
>
> org.apache.openejb.core.interceptor.ReflectionInvocationContext.proceed(ReflectionInvocationContext.java:141)
>        at
>
> org.apache.openejb.core.interceptor.InterceptorStack.invoke(InterceptorStack.java:67)
>        at
>
> org.apache.openejb.core.stateless.StatelessContainer._invoke(StatelessContainer.java:210)
>        at
>
> org.apache.openejb.core.stateless.StatelessContainer._invoke(StatelessContainer.java:188)
>        at
>
> org.apache.openejb.core.stateless.StatelessContainer.invoke(StatelessContainer.java:165)
>        at
>
> org.apache.openejb.server.ejbd.EjbRequestHandler.doEjbObject_BUSINESS_METHOD(EjbRequestHandler.java:238)
>        at
>
> org.apache.openejb.server.ejbd.EjbRequestHandler.processRequest(EjbRequestHandler.java:129)
>        at
>
> org.apache.openejb.server.ejbd.EjbDaemon.processEjbRequest(EjbDaemon.java:164)
>        at
> org.apache.openejb.server.ejbd.EjbDaemon.service(EjbDaemon.java:122)
>        at
> org.apache.openejb.server.ejbd.EjbDaemon.service(EjbDaemon.java:84)
>        at
> org.apache.openejb.server.ejbd.EjbServer.service(EjbServer.java:60)
>        at org.apache.openejb.server.ServicePool$2.run(ServicePool.java:78)
>        at org.apache.openejb.server.ServicePool$3.run(ServicePool.java:101)
>        at
>
> java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
>        at
>
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
>        ... 1 more
> Caused by: java.lang.Exception:
> org.apache.openjpa.lib.jdbc.ReportingSQLException: CREATE command denied to
> user 'josso'@'localhost' for table 'accounts' {stmnt 8295201 CREATE TABLE
> dbo.accounts (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2
> VARCHAR(255), addr3 VARCHAR(255), addr4 VARCHAR(255), addr5 VARCHAR(255),
> auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge BIT,
> category BIT, country VARCHAR(255), cre_date DATE, credit REAL,
> credit_limit
> REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email VARCHAR(255),
> first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
> last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
> man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255), password
> VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state VARCHAR(255),
> PRIMARY KEY (account)) TYPE = innodb} [code=1142, state=42000]
>        at
>
> org.apache.openjpa.util.Exceptions.replaceNestedThrowables(Exceptions.java:242)
>        at
>
> org.apache.openjpa.persistence.PersistenceException.writeObject(PersistenceException.java:100)
>        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>        at
>
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
>        at
>
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>        at java.lang.reflect.Method.invoke(Method.java:585)
>        at
> java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:917)
>        at
> java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1339)
>        at
>
> java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1290)
>        at
> java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1079)
>        at
> java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1375)
>        at
> java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1347)
>        at
>
> java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1290)
>        at
> java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1079)
>        at
> java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:302)
>        at
>
> org.apache.openejb.client.ThrowableArtifact.writeExternal(ThrowableArtifact.java:49)
>        at
> java.io.ObjectOutputStream.writeExternalData(ObjectOutputStream.java:1310)
>        at
>
> java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1288)
>        at
> java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1079)
>        at
> java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:302)
>        at
> org.apache.openejb.client.EJBResponse.writeExternal(EJBResponse.java:133)
>        at
>
> org.apache.openejb.server.ejbd.EjbRequestHandler.processRequest(EjbRequestHandler.java:215)
>        ... 9 more
>
>
> bongosdude wrote:
> >
> > This is strange, OpenJPA created new table that I specified in second
> unit
> > to the database of first persistence unit.
> >
> > 1. I have fun the find command, I only have one persistence.xml
> > 2. There is not property set in my persistence.xml to ask openjpa to
> > create table if not exists.
> >
> >
> >
> > Kevin Sutter wrote:
> >>
> >> On Tue, Feb 10, 2009 at 12:31 PM, bongosdude <bo...@gmail.com>
> >> wrote:
> >>
> >>>
> >>> Kevin,
> >>>
> >>> I have turned on the SQL trace and did not see any hints why this
> >>> happened.
> >>
> >>
> >> The format of your logging property doesn't look right, so that might be
> >> reason why the output doesn't give any hints.  :-)  Maybe the "tmp" is
> >> ignored.  Not sure.  Try something like this:
> >>
> >> <property name="openjpa.Log" value="DefaultLevel=TRACE"/>
> >>
> >> This will turn on all Tracing, not just the SQL tracing.  This might
> help
> >> explain why the extra entities and persistence units are getting
> >> processed.
> >>
> >>
> >> Entities in the second units are defined but there are not
> >>> session API to access it yet. And I do not set any properties to
> >>> create table at all. OpenJPA see that the tables in the second unit do
> >>> not exists in the first unit and try to create in the first unit.
> >>
> >>
> >> Very strange.  Have not experienced that.
> >>
> >>
> >>>
> >>> What are the work around solution?
> >>
> >>
> >> Except for separating the persistence units into separate
> persistence.xml
> >> files, I'm not sure at this point.  This is a new problem for me, so I'm
> >> not
> >> sure how or why you are experiencing it.
> >>
> >> Kevin
> >>
> >>>
> >>>
> >>> -B
> >>> On Feb 10, 2009, at 12:57 PM, Kevin Sutter (via Nabble) wrote:
> >>>
> >>> > Hi,
> >>> > A situation similar to this was first reported to me back in August
> >>> > by the
> >>> > author of an IBM Redbook (
> >>> >
> >>>
> http://www.redbooks.ibm.com/Redbooks.nsf/RedpieceAbstracts/sg247639.html?Open
> >>> )
> >>> > .
> >>> > After I gave the "standard" answers of how this might be happening,
> >>> > I never
> >>> > heard back.  So, I don't know if the problem was resolved by
> >>> > application
> >>> > review or if they decided to live with the situation or what they
> >>> > did.  You
> >>> > might want to reference the Redbook to see if there's any reference
> >>> > to the
> >>> > situation.
> >>> >
> >>> > First off, the tables should only be created if you are using the
> >>> > SynchronizeMappings property.  Since I don't see that in your
> >>> > persistence.xml, then I don't see how the tables are getting created
> >>> > automatically.  Unless you have a different version of the
> >>> > persistence.xml
> >>> > file that is getting picked up somehow.  Or, maybe your build
> >>> > process is
> >>> > invoking the MappingTool?  Not sure.  I have never experienced
> >>> > anything like
> >>> > that.
> >>> >
> >>> > As far as creating the empty tables...  My guess is that your junit
> >>> > test is
> >>> > (accidentally?) touching both entities, thus creating both tables.
> >>> > If you
> >>> > turn on the complete openjpa trace, you can see the processing of the
> >>> > entities within each persistence unit.  So, either the entities are
> >>> > being
> >>> > specified via some property or they are being touched by your
> >>> > application.
> >>> > That's my guess.  The trace would give more data to go off of.
> >>> >
> >>> > IIRC, there is one limitation with the MappingTool and/or
> >>> > SynchronizeMappings that it will only process the entities in the
> >>> > first
> >>> > defined persistence unit within a persistence.xml file.  But, even
> >>> > that
> >>> > doesn't seem to apply in this case since you are indicating that the
> >>> > tables
> >>> > are getting created via the second persistence unit.
> >>> >
> >>> > Hopefully, the trace will show who is accessing what and causing the
> >>> > entity
> >>> > processing and table creation.
> >>> >
> >>> > Good luck,
> >>> > Kevin
> >>> >
> >>> >
> >>> > On Tue, Feb 10, 2009 at 11:36 AM, bongosdude <bo...@...> wrote:
> >>> >
> >>> > >
> >>> > > I defined two persistence units in my persistence.xml to connect
> >>> > to two
> >>> > > different databases (one is MySQL and other to MS SQL) like below
> >>> > >
> >>> > > <persistence xmlns="http://java.sun.com/xml/ns/persistence"
> >>> > >             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> >>> > > version="1.0"
> >>> > >
> >>> xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
> >>> > > http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
> >>> > >    <persistence-unit name="CallingCardUsersUnit">
> >>> > >        <description>Entity Beans to db1</description>
> >>> > >
> >>> > > <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</
> >>> > provider>
> >>> > >        <non-jta-data-source>db_users_notx</non-jta-data-source>
> >>> > >
> >>> > <class>com.xyz.services.app.model.entity.users.User</class>
> >>> > >
> >>> > >  <class>com.xyz.services.app.model.entity.users.UserRole</class>
> >>> > >
> >>> > >  <class>com.xyz.services.app.model.entity.users.UserAccount</class>
> >>> > >                <properties>
> >>> > >                        <property name="/tmp/openjpa.log"
> >>> > value="SQL=TRACE"
> >>> > > />
> >>> > >                </properties>
> >>> > >    </persistence-unit>
> >>> > >
> >>> > >    <persistence-unit name="DigittalkUnit">
> >>> > >        <description>Entity Beans for db2</description>
> >>> > >
> >>> > > <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</
> >>> > provider>
> >>> > >        <non-jta-data-source>billing_notx</non-jta-data-source>
> >>> > >        <class>com.xyz.services.app.model.entity.billing.BUser</
> >>> > class>
> >>> > >        <class>com.xyz.services.app.model.entity.billing.BAccount</
> >>> > class>
> >>> > >                <properties>
> >>> > >                        <property name="/tmp/openjpa.log"
> >>> > value="SQL=TRACE"
> >>> > > />
> >>> > >                </properties>
> >>> > >    </persistence-unit>
> >>> > >
> >>> > >
> >>> > > </persistence>
> >>> > >
> >>> > >
> >>> > > When my app first starts up and runs, I need to access entity
> >>> > > com.xyz.services.app.model.entity.users.User, JPA tries to load
> >>> > entiry
> >>> > > com.xyz.services.app.model.entity.users.User and then it tries to
> >>> > create
> >>> > > table BUser and BAccount in the first persistence unit. BUser and
> >>> > BAccount
> >>> > > are listed in second persistence unit. Also, BUser and BAccount
> >>> > are mapped
> >>> > > to existing tables in second persistence unit.
> >>> > >
> >>> > > Can someone help me since I do not understand why it happens.
> >>> > Also, How can
> >>> > > I turn of the auto create table.
> >>> > >
> >>> > > Thanks
> >>> > > -B
> >>> > > --
> >>> > > View this message in context:
> >>> > >
> >>>
> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2303818.html
> >>> > > Sent from the OpenJPA Users mailing list archive at Nabble.com.
> >>> > >
> >>> > >
> >>> >
> >>> >
> >>> > This email is a reply to your post @
> >>>
> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2303948.html
> >>> > You can reply by email or by visting the link above.
> >>> >
> >>>
> >>>
> >>> --
> >>> View this message in context:
> >>>
> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2304147.html
> >>> Sent from the OpenJPA Users mailing list archive at Nabble.com.
> >>>
> >>
> >>
> >
> >
>
> --
> View this message in context:
> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2304566.html
> Sent from the OpenJPA Users mailing list archive at Nabble.com.
>
>

Re: Problem with multi persistence units

Posted by bongosdude <bo...@gmail.com>.

Kevin,

I copy the trace here for you to review.

1. There are no other persistence.xml with create table settings
2. DigitalkUser and DigitalkAccount are two entity of separate database (2nd
persistence unit.)
3. OpenJPA created tables accounts (DigitalkAccount) in my first persistence
unit. I deleted it and it created again. The log is misleading.

My environment

OpenJPA 1.2.0
Apache Jeronimo 2.1.3
JDK 1.5
Mac OS x


Thanks for helping

-B


<persistence xmlns="http://java.sun.com/xml/ns/persistence"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
version="1.0"
             xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
    <persistence-unit name="CallingCardUsersUnit"
transaction-type="RESOURCE_LOCAL" >
        <description>Entity Beans for mysql</description>
       
<provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
        <non-jta-data-source>callingcard_users_notx</non-jta-data-source>
		<class>com.nuvoip.services.ipcalls.model.entity.users.User</class>
		<class>com.nuvoip.services.ipcalls.model.entity.users.UserRole</class>
		<class>com.nuvoip.services.ipcalls.model.entity.users.UserAccount</class>
		<properties>
			<property name="openjpa.Log" value="DefaultLevel=TRACE" />
		</properties>
    </persistence-unit>
    
    <persistence-unit name="DigittalkUnit"
transaction-type="RESOURCE_LOCAL">
        <description>Entity Beans for ms sql</description>
       
<provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
        <non-jta-data-source>mynuvoip</non-jta-data-source>
       
<class>com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser</class>
       
<class>com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount</class>
		<properties>
			<property name="openjpa.Log" value="DefaultLevel=TRACE" />
		</properties>
    </persistence-unit>
    
    
</persistence>



14:38:25,745 INFO  [TimingFilter] Request time: 153 ms
14:38:25,745 ERROR [PagePool] Page Page[accounts/Start en] is dirty, and
will be discarded (rather than returned to the page pool).
14:38:26,940 INFO  [TimingFilter] Request time: 1188 ms
14:38:34,238 INFO  [BusinessServicesLocator] InitialContext environment =
{java.naming.provider.url=ejbd://localhost:4201/,
java.naming.factory.initial=org.apache.openejb.client.RemoteInitialContextFactory,
java.naming.factory.url.pkgs=org.apache.xbean.naming,
openejb.remotable.businessLocals=true}
14:38:34,278 INFO  [OpenEJB] invoking method create on
callingcard-ejb.jar/CallingCardUser
14:38:34,289 INFO  [OpenEJB] finished invoking method create
14:38:34,394 INFO  [Transaction] TX Required: Started transaction
org.apache.geronimo.transaction.manager.TransactionImpl@903331
124027  CallingCardUsersUnit  INFO   [ejbd 1] openjpa.Runtime - Starting
OpenJPA 1.0.3
124027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Runtime - Properties:
openjpa.EntityManagerFactory: default
openjpa.DataCache: false
openjpa.MetaDataFactory:
jpa(Files=/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar)
openjpa.InverseManager: false
openjpa.ReadLockLevel: read
openjpa.DataCacheManager: default
openjpa.jdbc.SubclassFetchMode: join
openjpa.jdbc.UpdateManager: operation-order
openjpa.jdbc.SynchronizeMappings: buildSchema(ForeignKeys=true)
openjpa.NontransactionalRead: true
openjpa.QueryCompilationCache: true
openjpa.MaxFetchDepth: -1
openjpa.RetainState: true
openjpa.DynamicDataStructs: false
openjpa.BrokerFactory: jdbc
openjpa.WriteLockLevel: write
openjpa.ManagedRuntime: auto
openjpa.jdbc.EagerFetchMode: parallel
openjpa.RestoreState: immutable
openjpa.jdbc.SchemaFactory: dynamic
openjpa.LockManager: version
openjpa.BrokerImpl: non-finalizing
openjpa.NontransactionalWrite: true
openjpa.MetaDataRepository: default
openjpa.Log: true(DefaultLevel=TRACE)
openjpa.jdbc.ResultSetType: forward-only
openjpa.AutoDetach: 
openjpa.ConnectionRetainMode: on-demand
openjpa.RuntimeUnenhancedClasses: supported
openjpa.SavepointManager: in-mem
openjpa.Optimistic: true
openjpa.ConnectionFactoryMode: local
openjpa.Sequence: table(Table=OPENJPASEQ, Increment=100)
openjpa.FetchGroups: default
openjpa.jdbc.Schemas: 
openjpa.Id: CallingCardUsersUnit
openjpa.OrphanedKeyAction: log
openjpa.FlushBeforeQueries: true
openjpa.AutoClear: datastore
openjpa.Compatibility: default
openjpa.jdbc.LRSSize: query
openjpa.DetachState: loaded
openjpa.Multithreaded: false
openjpa.FetchBatchSize: -1
openjpa.jdbc.SQLFactory: default
openjpa.IgnoreChanges: false
openjpa.jdbc.MappingDefaults: jpa
openjpa.TransactionMode: local
openjpa.RetryClassRegistration: false
openjpa.jdbc.FetchDirection: forward
openjpa.ClassResolver:
org.apache.openjpa.persistence.PersistenceUnitInfoImpl$ClassResolverImpl
openjpa.LockTimeout: -1
openjpa.DataCacheTimeout: -1
openjpa.QueryCache: true
openjpa.jdbc.DriverDataSource: simple
openjpa.jdbc.TransactionIsolation: default
openjpa.ProxyManager: default
124067  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
metadata factory
"org.apache.openjpa.persistence.jdbc.PersistenceMappingFactory@a11a18".
124071  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - OpenJPA
will now connect to the database to attempt to determine what type of
database dictionary to use. You may prevent this connection in the future by
setting your openjpa.jdbc.DBDictionary configuration property to the
appropriate value for your database (see the documentation for available
values).
124823  CallingCardUsersUnit  INFO   [ejbd 1] openjpa.jdbc.JDBC - Using
dictionary class "org.apache.openjpa.jdbc.sql.MySQLDictionary" (MySQL 5.1.30
,MySQL-AB JDBC Driver mysql-connector-java-5.1.7 ( Revision: ${svn.Revision}
)).
124826  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC -
catalogSeparator: .
catalogTerm: database
databaseProductName: MySQL
databaseProductVersion: 5.1.30
driverName: MySQL-AB JDBC Driver
driverVersion: mysql-connector-java-5.1.7 ( Revision: ${svn.Revision} )
extraNameCharacters: #@
identifierQuoteString: `
numericFunctions:
ABS,ACOS,ASIN,ATAN,ATAN2,BIT_COUNT,CEILING,COS,COT,DEGREES,EXP,FLOOR,LOG,LOG10,MAX,MIN,MOD,PI,POW,POWER,RADIANS,RAND,ROUND,SIN,SQRT,TAN,TRUNCATE
procedureTerm: PROCEDURE
schemaTerm: 
searchStringEscape: \
sqlKeywords:
ACCESSIBLE,ANALYZE,ASENSITIVE,BEFORE,BIGINT,BINARY,BLOB,CALL,CHANGE,CONDITION,DATABASE,DATABASES,DAY_HOUR,DAY_MICROSECOND,DAY_MINUTE,DAY_SECOND,DELAYED,DETERMINISTIC,DISTINCTROW,DIV,DUAL,EACH,ELSEIF,ENCLOSED,ESCAPED,EXIT,EXPLAIN,FLOAT4,FLOAT8,FORCE,FULLTEXT,HIGH_PRIORITY,HOUR_MICROSECOND,HOUR_MINUTE,HOUR_SECOND,IF,IGNORE,INFILE,INOUT,INT1,INT2,INT3,INT4,INT8,ITERATE,KEYS,KILL,LEAVE,LIMIT,LINEAR,LINES,LOAD,LOCALTIME,LOCALTIMESTAMP,LOCK,LONG,LONGBLOB,LONGTEXT,LOOP,LOW_PRIORITY,MEDIUMBLOB,MEDIUMINT,MEDIUMTEXT,MIDDLEINT,MINUTE_MICROSECOND,MINUTE_SECOND,MOD,MODIFIES,NO_WRITE_TO_BINLOG,OPTIMIZE,OPTIONALLY,OUT,OUTFILE,PURGE,RANGE,READS,READ_ONLY,READ_WRITE,REGEXP,RELEASE,RENAME,REPEAT,REPLACE,REQUIRE,RETURN,RLIKE,SCHEMAS,SECOND_MICROSECOND,SENSITIVE,SEPARATOR,SHOW,SPATIAL,SPECIFIC,SQLEXCEPTION,SQL_BIG_RESULT,SQL_CALC_FOUND_ROWS,SQL_SMALL_RESULT,SSL,STARTING,STRAIGHT_JOIN,TERMINATED,TINYBLOB,TINYINT,TINYTEXT,TRIGGER,UNDO,UNLOCK,UNSIGNED,USE,UTC_DATE,UTC_TIME,UTC_TIMESTAMP,VARBINARY,VARCHARACTER,WHILE,X509,XOR,YEAR_MONTH,ZEROFILL
stringFunctions:
ASCII,BIN,BIT_LENGTH,CHAR,CHARACTER_LENGTH,CHAR_LENGTH,CONCAT,CONCAT_WS,CONV,ELT,EXPORT_SET,FIELD,FIND_IN_SET,HEX,INSERT,INSTR,LCASE,LEFT,LENGTH,LOAD_FILE,LOCATE,LOCATE,LOWER,LPAD,LTRIM,MAKE_SET,MATCH,MID,OCT,OCTET_LENGTH,ORD,POSITION,QUOTE,REPEAT,REPLACE,REVERSE,RIGHT,RPAD,RTRIM,SOUNDEX,SPACE,STRCMP,SUBSTRING,SUBSTRING,SUBSTRING,SUBSTRING,SUBSTRING_INDEX,TRIM,UCASE,UPPER
systemFunctions:
DATABASE,USER,SYSTEM_USER,SESSION_USER,PASSWORD,ENCRYPT,LAST_INSERT_ID,VERSION
timeDateFunctions:
DAYOFWEEK,WEEKDAY,DAYOFMONTH,DAYOFYEAR,MONTH,DAYNAME,MONTHNAME,QUARTER,WEEK,YEAR,HOUR,MINUTE,SECOND,PERIOD_ADD,PERIOD_DIFF,TO_DAYS,FROM_DAYS,DATE_FORMAT,TIME_FORMAT,CURDATE,CURRENT_DATE,CURTIME,CURRENT_TIME,NOW,SYSDATE,CURRENT_TIMESTAMP,UNIX_TIMESTAMP,FROM_UNIXTIME,SEC_TO_TIME,TIME_TO_SEC
url: jdbc:mysql://localhost:3306/callingcard_users
userName: josso@localhost
defaultTransactionIsolation: 2
driverMajorVersion: 5
driverMinorVersion: 1
maxBinaryLiteralLength: 16777208
maxCatalogNameLength: 32
maxCharLiteralLength: 16777208
maxColumnNameLength: 64
maxColumnsInGroupBy: 64
maxColumnsInIndex: 16
maxColumnsInOrderBy: 64
maxColumnsInSelect: 256
maxColumnsInTable: 512
maxConnections: 0
maxCursorNameLength: 64
maxIndexLength: 256
maxProcedureNameLength: 0
maxRowSize: 2147483639
maxSchemaNameLength: 0
maxStatementLength: 65531
maxStatements: 0
maxTableNameLength: 64
maxTablesInSelect: 256
maxUserNameLength: 16
isCatalogAtStart: true
isReadOnly: false
nullPlusNonNullIsNull: true
nullsAreSortedAtEnd: false
nullsAreSortedAtStart: false
nullsAreSortedHigh: false
nullsAreSortedLow: true
storesLowerCaseIdentifiers: false
storesLowerCaseQuotedIdentifiers: false
storesMixedCaseIdentifiers: true
storesMixedCaseQuotedIdentifiers: true
storesUpperCaseIdentifiers: false
storesUpperCaseQuotedIdentifiers: true
supportsAlterTableWithAddColumn: true
supportsAlterTableWithDropColumn: true
supportsANSI92EntryLevelSQL: true
supportsANSI92FullSQL: false
supportsANSI92IntermediateSQL: false
supportsCatalogsInDataManipulation: true
supportsCatalogsInIndexDefinitions: true
supportsCatalogsInPrivilegeDefinitions: true
supportsCatalogsInProcedureCalls: true
supportsCatalogsInTableDefinitions: true
supportsColumnAliasing: true
supportsConvert: false
supportsCoreSQLGrammar: true
supportsCorrelatedSubqueries: true
supportsDataDefinitionAndDataManipulationTransactions: false
supportsDataManipulationTransactionsOnly: false
supportsDifferentTableCorrelationNames: true
supportsExpressionsInOrderBy: true
supportsExtendedSQLGrammar: false
supportsFullOuterJoins: false
supportsGroupBy: true
supportsGroupByBeyondSelect: true
supportsGroupByUnrelated: true
supportsIntegrityEnhancementFacility: false
supportsLikeEscapeClause: true
supportsLimitedOuterJoins: true
supportsMinimumSQLGrammar: true
supportsMixedCaseIdentifiers: false
supportsMixedCaseQuotedIdentifiers: false
supportsMultipleResultSets: false
supportsMultipleTransactions: true
supportsNonNullableColumns: true
supportsOpenCursorsAcrossCommit: false
supportsOpenCursorsAcrossRollback: false
supportsOpenStatementsAcrossCommit: false
supportsOpenStatementsAcrossRollback: false
supportsOrderByUnrelated: false
supportsOuterJoins: true
supportsPositionedDelete: false
supportsPositionedUpdate: false
supportsSchemasInDataManipulation: false
supportsSchemasInIndexDefinitions: false
supportsSchemasInPrivilegeDefinitions: false
supportsSchemasInProcedureCalls: false
supportsSchemasInTableDefinitions: false
supportsSelectForUpdate: true
supportsStoredProcedures: true
supportsSubqueriesInComparisons: true
supportsSubqueriesInExists: true
supportsSubqueriesInIns: true
supportsSubqueriesInQuantifieds: true
supportsTableCorrelationNames: true
supportsTransactions: true
supportsUnion: true
supportsUnionAll: true
usesLocalFilePerTable: false
usesLocalFiles: false
allProceduresAreCallable: false
allTablesAreSelectable: false
dataDefinitionCausesTransactionCommit: true
dataDefinitionIgnoredInTransactions: false
doesMaxRowSizeIncludeBlobs: true
supportsBatchUpdates: true
124830  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 11435458> [0 ms] close
124863  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 5935820> [0 ms] close
124906  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scanning
jar
"/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
for persistent types.
124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
persistent type location association for location
"com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount.class"
since it is a class, and will not need to be re-parsed later.
124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
"/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
found persistent types
[com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount].
124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
persistent type location association for location
"com/nuvoip/services/ipcalls/model/entity/users/UserRole.class" since it is
a class, and will not need to be re-parsed later.
124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
"/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
found persistent types
[com.nuvoip.services.ipcalls.model.entity.users.UserRole].
124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
persistent type location association for location
"com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser.class"
since it is a class, and will not need to be re-parsed later.
124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
"/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
found persistent types
[com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser].
124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
persistent type location association for location
"com/nuvoip/services/ipcalls/model/entity/users/User.class" since it is a
class, and will not need to be re-parsed later.
124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
"/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
found persistent types
[com.nuvoip.services.ipcalls.model.entity.users.User].
124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
persistent type location association for location
"com/nuvoip/services/ipcalls/model/entity/users/UserAccount.class" since it
is a class, and will not need to be re-parsed later.
124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
"/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
found persistent types
[com.nuvoip.services.ipcalls.model.entity.users.UserAccount].
124910  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scanning
resource "META-INF/orm.xml" for persistent types.
124911  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
parsePersistentTypeNames() found
[com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser,
com.nuvoip.services.ipcalls.model.entity.users.UserAccount,
com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount,
com.nuvoip.services.ipcalls.model.entity.users.User,
com.nuvoip.services.ipcalls.model.entity.users.UserRole].
124911  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Found 5
classes with metadata in 5 milliseconds.
125076  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
"com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser" requires
runtime enhancement: true
125100  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
metadata for "class
com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" under
mode "[META][QUERY]".
125100  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
class "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
125100  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
package "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
125106  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Generating
default metadata for type
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
125106  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
reflection for metadata generation.
125137  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
query "DigitalkUser.findByAccountNo".
125165  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
query "DigitalkUser.findByCliAndUsername".
125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
persistence-capable superclass of
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" to
"null".
125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
metadata for
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805".
125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.accountId".
125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.callback".
125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.cli".
125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.cliPin".
125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.createDate".
125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.lastNumberDial".
125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.pin".
125198  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@14385805.userName".
125199  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance - Enhancing
type "class
com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
125018  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
"com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser" requires
runtime enhancement: false
125233  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
"com/nuvoip/services/ipcalls/model/entity/users/UserAccount" requires
runtime enhancement: true
125236  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance - Enhancing
type "class com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
125058  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
"com/nuvoip/services/ipcalls/model/entity/users/UserAccount" requires
runtime enhancement: false
125272  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
"com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount"
requires runtime enhancement: true
125318  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
metadata for "class
com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount" under
mode "[META][QUERY]".
125318  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
class
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
125324  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Generating
default metadata for type
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
125324  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
reflection for metadata generation.
125364  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
query "DigitalkAccount.findByAccountNo".
125397  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
query "DigitalkAccount.findByEmail".
125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
persistence-capable superclass of
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount" to
"null".
125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
metadata for
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550".
125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.accountId".
125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address1".
125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address2".
125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address3".
125449  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address4".
125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.address5".
125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.autoRechargeAmount".
125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.autoRechargeThreshold".
125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.autoRechrgEnabled".
125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.businessCategory".
125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.country".
125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.createDate".
125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.credit".
125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.creditLimit".
125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.creditMsgEnabled".
125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.creditType".
125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.currency".
125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.email".
125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.firstAccessDate".
125450  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.firstname".
125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.hotDial".
125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lastAccessDate".
125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lastModified".
125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lastname".
125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.lead_source".
125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.manualRecharge".
125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.manualRechargeAmt".
125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.name".
125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.password".
125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.speedDial".
125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.speedDialKey".
125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.state".
125451  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@972550.users".
125453  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance - Enhancing
type "class
com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
125314  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
"com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount"
requires runtime enhancement: false
125532  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance -
"com/nuvoip/services/ipcalls/model/entity/users/UserRole" requires runtime
enhancement: true
125542  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.Enhance - Enhancing
type "class com.nuvoip.services.ipcalls.model.entity.users.UserRole".
125351  DigittalkUnit  TRACE  [ejbd 1] openjpa.Enhance -
"com/nuvoip/services/ipcalls/model/entity/users/UserRole" requires runtime
enhancement: false
125412  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Using
metadata factory
"org.apache.openjpa.persistence.jdbc.PersistenceMappingFactory@9168ba".
125413  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
metadata for "class
com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" under
mode "[META][QUERY]".
125413  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scanning
jar
"/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
for persistent types.
125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
persistent type location association for location
"com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkAccount.class"
since it is a class, and will not need to be re-parsed later.
125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
"/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
found persistent types
[com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount].
125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
persistent type location association for location
"com/nuvoip/services/ipcalls/model/entity/users/UserRole.class" since it is
a class, and will not need to be re-parsed later.
125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
"/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
found persistent types
[com.nuvoip.services.ipcalls.model.entity.users.UserRole].
125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
persistent type location association for location
"com/nuvoip/services/ipcalls/model/entity/subscribers/DigitalkUser.class"
since it is a class, and will not need to be re-parsed later.
125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
"/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
found persistent types
[com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser].
125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
persistent type location association for location
"com/nuvoip/services/ipcalls/model/entity/users/User.class" since it is a
class, and will not need to be re-parsed later.
125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
"/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
found persistent types
[com.nuvoip.services.ipcalls.model.entity.users.User].
125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Skipping
persistent type location association for location
"com/nuvoip/services/ipcalls/model/entity/users/UserAccount.class" since it
is a class, and will not need to be re-parsed later.
125419  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scan of
"/usr/local/geronimo-tomcat6-javaee5-2.1.3/repository/default/callingcard-ear/1.0/callingcard-ear-1.0.car/callingcard-ejb.jar"
found persistent types
[com.nuvoip.services.ipcalls.model.entity.users.UserAccount].
125420  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Scanning
resource "META-INF/orm.xml" for persistent types.
125421  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
parsePersistentTypeNames() found
[com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser,
com.nuvoip.services.ipcalls.model.entity.users.UserAccount,
com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount,
com.nuvoip.services.ipcalls.model.entity.users.User,
com.nuvoip.services.ipcalls.model.entity.users.UserRole].
125421  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Found 5
classes with metadata in 8 milliseconds.
125456  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
class "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
125456  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
package "com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
125482  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Generating
default metadata for type
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
125518  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
query "DigitalkUser.findByAccountNo".
125548  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
query "DigitalkUser.findByCliAndUsername".
125585  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
persistence-capable superclass of
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" to
"null".
125585  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
metadata for
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430".
125585  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.accountId".
125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.callback".
125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cli".
125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cliPin".
125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.createDate".
125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.lastNumberDial".
125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.pin".
125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.userName".
125586  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Preparing
mapping for
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser".
125595  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.accountId".
125606  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"accountId" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.callback".
125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"callback"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cli".
125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"cli" has
mapping strategy "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125608  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.cliPin".
125609  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"cliPin"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125609  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.createDate".
125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"createDate" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.lastNumberDial".
125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"lastNumberDial" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.pin".
125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"pin" has
mapping strategy "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125617  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430.userName".
125618  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"userName"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125620  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser<discriminator>"
has mapping strategy "none".
125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser<version>"
has mapping strategy "none".
125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
mapping for
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser@7512430".
125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkUser" has
mapping strategy "full".
125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
metadata for "class
com.nuvoip.services.ipcalls.model.entity.users.UserAccount" under mode
"[META][QUERY]".
125622  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
class "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
125630  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
package "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
125631  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Generating
default metadata for type
"com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
persistence-capable superclass of
"com.nuvoip.services.ipcalls.model.entity.users.UserAccount" to "null".
125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
metadata for
"com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295".
125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.accountNo".
125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.contextName".
125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.userId".
125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Preparing
mapping for "com.nuvoip.services.ipcalls.model.entity.users.UserAccount".
125660  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.userId".
125663  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"userId"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
125663  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.accountNo".
125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"accountNo" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295.contextName".
125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"contextName" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
"com.nuvoip.services.ipcalls.model.entity.users.UserAccount<discriminator>"
has mapping strategy "none".
125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
"com.nuvoip.services.ipcalls.model.entity.users.UserAccount<version>" has
mapping strategy "none".
125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
mapping for
"com.nuvoip.services.ipcalls.model.entity.users.UserAccount@16423295".
125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
"com.nuvoip.services.ipcalls.model.entity.users.UserAccount" has mapping
strategy "full".
125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
metadata for "class
com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount" under
mode "[META][QUERY]".
125664  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
class
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
125667  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Generating
default metadata for type
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
125696  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
query "DigitalkAccount.findByAccountNo".
125728  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
query "DigitalkAccount.findByEmail".
125768  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
table generator "newaccountnum".
125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
persistence-capable superclass of
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount" to
"null".
125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
metadata for
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798".
125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.accountId".
125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address1".
125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address2".
125803  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address3".
125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address4".
125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address5".
125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeAmount".
125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeThreshold".
125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechrgEnabled".
125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.businessCategory".
125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.country".
125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.createDate".
125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.credit".
125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditLimit".
125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditMsgEnabled".
125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditType".
125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.currency".
125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.email".
125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstAccessDate".
125804  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstname".
125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.hotDial".
125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastAccessDate".
125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastModified".
125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastname".
125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lead_source".
125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRecharge".
125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRechargeAmt".
125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.name".
125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.password".
125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDial".
125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDialKey".
125805  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.state".
125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.users".
125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Preparing
mapping for
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount".
125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.accountId".
125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"accountId" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address1".
125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"address1"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address2".
125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"address2"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address3".
125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"address3"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125806  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address4".
125807  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"address4"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125807  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.address5".
125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"address5"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeAmount".
125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"autoRechargeAmount" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechargeThreshold".
125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"autoRechargeThreshold" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.autoRechrgEnabled".
125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"autoRechrgEnabled" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.businessCategory".
125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"businessCategory" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.country".
125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"country"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.createDate".
125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"createDate" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
125808  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.credit".
125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"credit"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditLimit".
125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"creditLimit" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditMsgEnabled".
125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"creditMsgEnabled" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.creditType".
125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"creditType" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.currency".
125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"currency"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.email".
125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"email"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstAccessDate".
125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"firstAccessDate" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
125809  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.firstname".
125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"firstname" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.hotDial".
125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"hotDial"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastAccessDate".
125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"lastAccessDate" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastModified".
125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"lastModified" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lastname".
125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"lastname"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.lead_source".
125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"lead_source" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRecharge".
125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"manualRecharge" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
125810  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.manualRechargeAmt".
125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"manualRechargeAmt" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.name".
125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"name" has
mapping strategy "org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.password".
125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"password"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDial".
125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"speedDial" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.speedDialKey".
125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"speedDialKey" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.state".
125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"state"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount<discriminator>"
has mapping strategy "none".
125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount<version>"
has mapping strategy "none".
125811  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
mapping for
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798".
125812  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount" has
mapping strategy "full".
125812  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.subscribers.DigitalkAccount@1745798.users".
125824  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"users"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.RelationCollectionInverseKeyFieldStrategy".
125824  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
metadata for "class com.nuvoip.services.ipcalls.model.entity.users.User"
under mode "[META][QUERY]".
125824  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
class "com.nuvoip.services.ipcalls.model.entity.users.User".
125825  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Generating
default metadata for type
"com.nuvoip.services.ipcalls.model.entity.users.User".
125850  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
query "User.findByUserName".
125875  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
query "User.doesUserExist".
125903  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
persistence-capable superclass of
"com.nuvoip.services.ipcalls.model.entity.users.User" to "null".
125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
metadata for "com.nuvoip.services.ipcalls.model.entity.users.User@3715277".
125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.enabled".
125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.User@3715277.grantedAuthorities".
125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Loading
metadata for "class com.nuvoip.services.ipcalls.model.entity.users.UserRole"
under mode "[META][QUERY]".
125904  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Parsing
class "com.nuvoip.services.ipcalls.model.entity.users.UserRole".
125905  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Generating
default metadata for type
"com.nuvoip.services.ipcalls.model.entity.users.UserRole".
125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Set
persistence-capable superclass of
"com.nuvoip.services.ipcalls.model.entity.users.UserRole" to "null".
125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.User@3715277.password".
125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.User@3715277.username".
125933  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrAccount".
125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrId".
125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.version".
125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
metadata for
"com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170".
125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.authority".
125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.id".
125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.username".
125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.version".
125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Preparing
mapping for "com.nuvoip.services.ipcalls.model.entity.users.User".
125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrId".
125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"usrId"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
125934  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.enabled".
125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"enabled"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.User@3715277.password".
125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"password"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.User@3715277.username".
125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"username"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field "com.nuvoip.services.ipcalls.model.entity.users.User@3715277.version".
125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"version"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
"com.nuvoip.services.ipcalls.model.entity.users.User<discriminator>" has
mapping strategy "none".
125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
"com.nuvoip.services.ipcalls.model.entity.users.User<version>" has mapping
strategy "none".
125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Preparing
mapping for "com.nuvoip.services.ipcalls.model.entity.users.UserRole".
125935  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field "com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.id".
125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"id" has
mapping strategy
"org.apache.openjpa.jdbc.meta.strats.PrimitiveFieldStrategy".
125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.authority".
125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"authority" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.username".
125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"username"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.StringFieldStrategy".
125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170.version".
125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	"version"
has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.HandlerFieldStrategy".
125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
"com.nuvoip.services.ipcalls.model.entity.users.UserRole<discriminator>" has
mapping strategy "none".
125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
"com.nuvoip.services.ipcalls.model.entity.users.UserRole<version>" has
mapping strategy "none".
125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
mapping for "com.nuvoip.services.ipcalls.model.entity.users.User@3715277".
125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
"com.nuvoip.services.ipcalls.model.entity.users.User" has mapping strategy
"full".
125936  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.User@3715277.grantedAuthorities".
125937  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"grantedAuthorities" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.RelationCollectionInverseKeyFieldStrategy".
125937  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 	Resolving
field
"com.nuvoip.services.ipcalls.model.entity.users.User@3715277.usrAccount".
125944  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - 
"usrAccount" has mapping strategy
"org.apache.openjpa.jdbc.meta.strats.RelationFieldStrategy".
125944  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData - Resolving
mapping for
"com.nuvoip.services.ipcalls.model.entity.users.UserRole@3165170".
125944  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.MetaData -
"com.nuvoip.services.ipcalls.model.entity.users.UserRole" has mapping
strategy "full".
125958  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
table information for schema name "null", table name "authorities".
125958  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 10469122> getColumns: callingcard_users, null, authorities,
null
125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
column information for table "authorities".
125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "id" on table "authorities".
125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "username" on table "authorities".
125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "authority" on table "authorities".
125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "version" on table "authorities".
125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
table information for schema name "null", table name "OPENJPASEQ".
125977  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 10469122> getColumns: callingcard_users, null, OPENJPASEQ,
null
126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
column information for table "OPENJPASEQ".
126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "ID" on table "OPENJPASEQ".
126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "SEQUENCE_VALUE" on table "OPENJPASEQ".
126008  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
table information for schema name "null", table name "subscribers".
126009  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 10469122> getColumns: callingcard_users, null, subscribers,
null
126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
column information for table "subscribers".
126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "user_id" on table "subscribers".
126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "context_nm" on table "subscribers".
126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "account_nm" on table "subscribers".
126012  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
sequence information for schema "null", sequence name "null".
126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 10469122> [1 ms] commit
126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 10469122> [0 ms] close
126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
table information for schema name "dbo", table name "accounts".
126013  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 3459509> getColumns: callingcard_users, dbo, accounts, null
126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
column information for table "accounts".
126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "account" on table "accounts".
126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "addr1" on table "accounts".
126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "addr2" on table "accounts".
126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "addr3" on table "accounts".
126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "addr4" on table "accounts".
126026  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "addr5" on table "accounts".
126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "auto_recharge_amount" on table "accounts".
126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "auto_recharge_threshold" on table "accounts".
126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "auto_recharge" on table "accounts".
126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "category" on table "accounts".
126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "country" on table "accounts".
126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "cre_date" on table "accounts".
126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "credit" on table "accounts".
126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "credit_limit" on table "accounts".
126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "credit_msg" on table "accounts".
126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "type" on table "accounts".
126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "currency" on table "accounts".
126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "email" on table "accounts".
126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "first_date" on table "accounts".
126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "fname" on table "accounts".
126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "hot_dial" on table "accounts".
126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "last_date" on table "accounts".
126027  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "last_modified" on table "accounts".
126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "lname" on table "accounts".
126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "lead_source" on table "accounts".
126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "man_recharge" on table "accounts".
126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "man_recharge_amount" on table "accounts".
126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "name" on table "accounts".
126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "password" on table "accounts".
126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "spd_dial" on table "accounts".
126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "spd_key" on table "accounts".
126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "state" on table "accounts".
126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
table information for schema name "dbo", table name "OPENJPASEQ".
126028  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 3459509> getColumns: callingcard_users, dbo, OPENJPASEQ, null
126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "ID" on table "OPENJPASEQ".
126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "SEQUENCE_VALUE" on table "OPENJPASEQ".
126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
table information for schema name "dbo", table name "users".
126033  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 3459509> getColumns: callingcard_users, dbo, users, null
126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
column information for table "users".
126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "id" on table "users".
126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "username" on table "users".
126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "password" on table "users".
126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "enabled" on table "users".
126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing column "version" on table "users".
126041  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
sequence information for schema "dbo", sequence name "null".
126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 3459509> [2 ms] commit
126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 3459509> [0 ms] close
126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
foreign keys for schema name "null", table name "authorities".
126043  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 15855117> getImportedKeys: callingcard_users, null,
authorities
126059  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing foreign key "fk_authorities_users" on table "authorities
(username)" linking to table "users (username)".  Sequence: "1".
126059  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
foreign keys for schema name "null", table name "OPENJPASEQ".
126060  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 15855117> getImportedKeys: callingcard_users, null,
OPENJPASEQ
126061  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
foreign keys for schema name "null", table name "subscribers".
126061  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 15855117> getImportedKeys: callingcard_users, null,
subscribers
126062  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Found
existing foreign key "subscribers_users_fk" on table "subscribers (user_id)"
linking to table "users (id)".  Sequence: "1".
126062  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 15855117> [0 ms] commit
126062  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 15855117> [0 ms] close
126063  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
foreign keys for schema name "dbo", table name "accounts".
126063  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 899387> getImportedKeys: callingcard_users, dbo, accounts
126065  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
foreign keys for schema name "dbo", table name "OPENJPASEQ".
126065  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 899387> getImportedKeys: callingcard_users, dbo, OPENJPASEQ
126066  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.Schema - Reading
foreign keys for schema name "dbo", table name "users".
126066  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 899387> getImportedKeys: callingcard_users, dbo, users
126067  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 899387> [0 ms] commit
126067  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 899387> [0 ms] close
126067  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema - Existing
column "authority" on table "authorities" is incompatible with the same
column in the given schema definition. Existing column:
Full Name: authorities.authority
Type: varchar
Size: 50
Default: null
Not Null: true
Given column:
Full Name: authorities.authority
Type: varchar
Size: 255
Default: null
Not Null: false

126067  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema - Existing
column "username" on table "authorities" is incompatible with the same
column in the given schema definition. Existing column:
Full Name: authorities.username
Type: varchar
Size: 50
Default: null
Not Null: true
Given column:
Full Name: authorities.username
Type: varchar
Size: 255
Default: null
Not Null: false

126067  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema - Existing
column "account_nm" on table "subscribers" is incompatible with the same
column in the given schema definition. Existing column:
Full Name: subscribers.account_nm
Type: varchar
Size: 20
Default: null
Not Null: true
Given column:
Full Name: subscribers.account_nm
Type: varchar
Size: 255
Default: null
Not Null: false

126068  CallingCardUsersUnit  WARN   [ejbd 1] openjpa.jdbc.Schema - Existing
column "context_nm" on table "subscribers" is incompatible with the same
column in the given schema definition. Existing column:
Full Name: subscribers.context_nm
Type: varchar
Size: 50
Default: null
Not Null: false
Given column:
Full Name: subscribers.context_nm
Type: varchar
Size: 255
Default: null
Not Null: false

126068  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 7437197> [0 ms] rollback
126074  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.SQL - <t
16566280, conn 7437197> executing stmnt 8295201 CREATE TABLE dbo.accounts
(account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2 VARCHAR(255),
addr3 VARCHAR(255), addr4 VARCHAR(255), addr5 VARCHAR(255),
auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge BIT,
category BIT, country VARCHAR(255), cre_date DATE, credit REAL, credit_limit
REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email VARCHAR(255),
first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255), password
VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state VARCHAR(255),
PRIMARY KEY (account)) TYPE = innodb
126089  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.SQL - <t
16566280, conn 7437197> [15 ms] spent
126089  CallingCardUsersUnit  TRACE  [ejbd 1] openjpa.jdbc.JDBC - <t
16566280, conn 7437197> [0 ms] close
14:38:36,465 INFO  [Transaction] TX Required: setRollbackOnly() on
transaction org.apache.geronimo.transaction.manager.TransactionImpl@903331
14:38:36,465 INFO  [Transaction] TX Required: Rolling back transaction
org.apache.geronimo.transaction.manager.TransactionImpl@903331
14:38:36,487 ERROR [[default]] Servlet.service() for servlet default threw
exception
javax.ejb.EJBException: The bean encountered a non-application exception.;
nested exception is: 
	<openjpa-1.0.3-r420667:677674 nonfatal general error>
org.apache.openjpa.persistence.PersistenceException: CREATE command denied
to user 'josso'@'localhost' for table 'accounts' {stmnt 8295201 CREATE TABLE
dbo.accounts (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2
VARCHAR(255), addr3 VARCHAR(255), addr4 VARCHAR(255), addr5 VARCHAR(255),
auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge BIT,
category BIT, country VARCHAR(255), cre_date DATE, credit REAL, credit_limit
REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email VARCHAR(255),
first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255), password
VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state VARCHAR(255),
PRIMARY KEY (account)) TYPE = innodb} [code=1142, state=42000]
	at
org.apache.openejb.client.EJBInvocationHandler.convertException(EJBInvocationHandler.java:219)
	at
org.apache.openejb.client.EJBObjectHandler._invoke(EJBObjectHandler.java:157)
	at
org.apache.openejb.client.EJBInvocationHandler.invoke(EJBInvocationHandler.java:117)
	at
org.apache.openejb.client.proxy.Jdk13InvocationHandler.invoke(Jdk13InvocationHandler.java:52)
	at $Proxy103.findByUsername(Unknown Source)
	at
com.nuvoip.services.ipcalls.services.internal.UserDetailsServiceImpl.loadUserByUsername(UserDetailsServiceImpl.java:23)
	at
$UserDetailsService_11f61b0e2d0.loadUserByUsername($UserDetailsService_11f61b0e2d0.java)
	at
org.springframework.security.providers.dao.DaoAuthenticationProvider.retrieveUser(DaoAuthenticationProvider.java:83)
	at
org.springframework.security.providers.dao.AbstractUserDetailsAuthenticationProvider.authenticate(AbstractUserDetailsAuthenticationProvider.java:121)
	at
$AuthenticationProvider_11f61b0e3aa.authenticate($AuthenticationProvider_11f61b0e3aa.java)
	at
org.springframework.security.providers.ProviderManager.doAuthentication(ProviderManager.java:188)
	at
org.springframework.security.AbstractAuthenticationManager.authenticate(AbstractAuthenticationManager.java:46)
	at
$AuthenticationManager_11f61b0e2a7.authenticate($AuthenticationManager_11f61b0e2a7.java)
	at
org.springframework.security.ui.webapp.AuthenticationProcessingFilter.attemptAuthentication(AuthenticationProcessingFilter.java:82)
	at
org.springframework.security.ui.AbstractProcessingFilter.doFilterHttp(AbstractProcessingFilter.java:258)
	at
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
	at
nu.localhost.tapestry5.springsecurity.services.internal.HttpServletRequestFilterWrapper.service(HttpServletRequestFilterWrapper.java:52)
	at
$HttpServletRequestFilter_11f61b0e2c8.service($HttpServletRequestFilter_11f61b0e2c8.java)
	at
$HttpServletRequestHandler_11f61b0e2cf.service($HttpServletRequestHandler_11f61b0e2cf.java)
	at
nu.localhost.tapestry5.springsecurity.services.internal.HttpServletRequestFilterWrapper$1.doFilter(HttpServletRequestFilterWrapper.java:56)
	at
org.springframework.security.context.HttpSessionContextIntegrationFilter.doFilterHttp(HttpSessionContextIntegrationFilter.java:235)
	at
org.springframework.security.ui.SpringSecurityFilter.doFilter(SpringSecurityFilter.java:53)
	at
nu.localhost.tapestry5.springsecurity.services.internal.HttpServletRequestFilterWrapper.service(HttpServletRequestFilterWrapper.java:52)
	at
$HttpServletRequestFilter_11f61b0e2c7.service($HttpServletRequestFilter_11f61b0e2c7.java)
	at
$HttpServletRequestHandler_11f61b0e2cf.service($HttpServletRequestHandler_11f61b0e2cf.java)
	at
org.apache.tapestry5.internal.services.IgnoredPathsFilter.service(IgnoredPathsFilter.java:62)
	at
$HttpServletRequestFilter_11f61b0e2c6.service($HttpServletRequestFilter_11f61b0e2c6.java)
	at
$HttpServletRequestHandler_11f61b0e2cf.service($HttpServletRequestHandler_11f61b0e2cf.java)
	at
$HttpServletRequestHandler_11f61b0e2c5.service($HttpServletRequestHandler_11f61b0e2c5.java)
	at org.apache.tapestry5.TapestryFilter.doFilter(TapestryFilter.java:179)
	at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
	at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
	at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
	at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
	at
org.apache.geronimo.tomcat.valve.DefaultSubjectValve.invoke(DefaultSubjectValve.java:56)
	at
org.apache.geronimo.tomcat.GeronimoStandardContext$SystemMethodValve.invoke(GeronimoStandardContext.java:406)
	at
org.apache.geronimo.tomcat.valve.GeronimoBeforeAfterValve.invoke(GeronimoBeforeAfterValve.java:47)
	at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
	at
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
	at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
	at
org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:568)
	at
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
	at
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845)
	at
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
	at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
	at java.lang.Thread.run(Thread.java:613)
Caused by: <openjpa-1.0.3-r420667:677674 nonfatal general error>
org.apache.openjpa.persistence.PersistenceException: CREATE command denied
to user 'josso'@'localhost' for table 'accounts' {stmnt 8295201 CREATE TABLE
dbo.accounts (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2
VARCHAR(255), addr3 VARCHAR(255), addr4 VARCHAR(255), addr5 VARCHAR(255),
auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge BIT,
category BIT, country VARCHAR(255), cre_date DATE, credit REAL, credit_limit
REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email VARCHAR(255),
first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255), password
VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state VARCHAR(255),
PRIMARY KEY (account)) TYPE = innodb} [code=1142, state=42000]
	at org.apache.openjpa.jdbc.meta.MappingTool.record(MappingTool.java:549)
	at org.apache.openjpa.jdbc.meta.MappingTool.record(MappingTool.java:449)
	at
org.apache.openjpa.jdbc.kernel.JDBCBrokerFactory.synchronizeMappings(JDBCBrokerFactory.java:170)
	at
org.apache.openjpa.jdbc.kernel.JDBCBrokerFactory.newBrokerImpl(JDBCBrokerFactory.java:130)
	at
org.apache.openjpa.kernel.AbstractBrokerFactory.newBroker(AbstractBrokerFactory.java:188)
	at
org.apache.openjpa.kernel.DelegatingBrokerFactory.newBroker(DelegatingBrokerFactory.java:142)
	at
org.apache.openjpa.persistence.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:192)
	at
org.apache.openjpa.persistence.EntityManagerFactoryImpl.createEntityManager(EntityManagerFactoryImpl.java:56)
	at
org.apache.geronimo.persistence.CMPEntityManagerTxScoped.createEntityManager(CMPEntityManagerTxScoped.java:74)
	at
org.apache.geronimo.persistence.CMPEntityManagerTxScoped.getEntityManager(CMPEntityManagerTxScoped.java:55)
	at
org.apache.geronimo.persistence.CMPEntityManagerTxScoped.createNamedQuery(CMPEntityManagerTxScoped.java:259)
	at
com.nuvoip.services.ipcalls.business.users.CallingCardUser.findByUsername(CallingCardUser.java:76)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:585)
	at
org.apache.openejb.core.interceptor.ReflectionInvocationContext$Invocation.invoke(ReflectionInvocationContext.java:158)
	at
org.apache.openejb.core.interceptor.ReflectionInvocationContext.proceed(ReflectionInvocationContext.java:141)
	at
org.apache.openejb.core.interceptor.InterceptorStack.invoke(InterceptorStack.java:67)
	at
org.apache.openejb.core.stateless.StatelessContainer._invoke(StatelessContainer.java:210)
	at
org.apache.openejb.core.stateless.StatelessContainer._invoke(StatelessContainer.java:188)
	at
org.apache.openejb.core.stateless.StatelessContainer.invoke(StatelessContainer.java:165)
	at
org.apache.openejb.server.ejbd.EjbRequestHandler.doEjbObject_BUSINESS_METHOD(EjbRequestHandler.java:238)
	at
org.apache.openejb.server.ejbd.EjbRequestHandler.processRequest(EjbRequestHandler.java:129)
	at
org.apache.openejb.server.ejbd.EjbDaemon.processEjbRequest(EjbDaemon.java:164)
	at org.apache.openejb.server.ejbd.EjbDaemon.service(EjbDaemon.java:122)
	at org.apache.openejb.server.ejbd.EjbDaemon.service(EjbDaemon.java:84)
	at org.apache.openejb.server.ejbd.EjbServer.service(EjbServer.java:60)
	at org.apache.openejb.server.ServicePool$2.run(ServicePool.java:78)
	at org.apache.openejb.server.ServicePool$3.run(ServicePool.java:101)
	at
java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
	at
java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
	... 1 more
Caused by: java.lang.Exception:
org.apache.openjpa.lib.jdbc.ReportingSQLException: CREATE command denied to
user 'josso'@'localhost' for table 'accounts' {stmnt 8295201 CREATE TABLE
dbo.accounts (account VARCHAR(255) NOT NULL, addr1 VARCHAR(255), addr2
VARCHAR(255), addr3 VARCHAR(255), addr4 VARCHAR(255), addr5 VARCHAR(255),
auto_recharge_amount REAL, auto_recharge_threshold REAL, auto_recharge BIT,
category BIT, country VARCHAR(255), cre_date DATE, credit REAL, credit_limit
REAL, credit_msg BIT, type BIT, currency VARCHAR(255), email VARCHAR(255),
first_date DATE, fname VARCHAR(255), hot_dial INTEGER, last_date DATE,
last_modified DATE, lname VARCHAR(255), lead_source VARCHAR(255),
man_recharge INTEGER, man_recharge_amount REAL, name VARCHAR(255), password
VARCHAR(255), spd_dial INTEGER, spd_key VARCHAR(255), state VARCHAR(255),
PRIMARY KEY (account)) TYPE = innodb} [code=1142, state=42000]
	at
org.apache.openjpa.util.Exceptions.replaceNestedThrowables(Exceptions.java:242)
	at
org.apache.openjpa.persistence.PersistenceException.writeObject(PersistenceException.java:100)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:585)
	at java.io.ObjectStreamClass.invokeWriteObject(ObjectStreamClass.java:917)
	at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1339)
	at
java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1290)
	at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1079)
	at
java.io.ObjectOutputStream.defaultWriteFields(ObjectOutputStream.java:1375)
	at java.io.ObjectOutputStream.writeSerialData(ObjectOutputStream.java:1347)
	at
java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1290)
	at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1079)
	at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:302)
	at
org.apache.openejb.client.ThrowableArtifact.writeExternal(ThrowableArtifact.java:49)
	at
java.io.ObjectOutputStream.writeExternalData(ObjectOutputStream.java:1310)
	at
java.io.ObjectOutputStream.writeOrdinaryObject(ObjectOutputStream.java:1288)
	at java.io.ObjectOutputStream.writeObject0(ObjectOutputStream.java:1079)
	at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:302)
	at
org.apache.openejb.client.EJBResponse.writeExternal(EJBResponse.java:133)
	at
org.apache.openejb.server.ejbd.EjbRequestHandler.processRequest(EjbRequestHandler.java:215)
	... 9 more


bongosdude wrote:
> 
> This is strange, OpenJPA created new table that I specified in second unit
> to the database of first persistence unit.
> 
> 1. I have fun the find command, I only have one persistence.xml
> 2. There is not property set in my persistence.xml to ask openjpa to
> create table if not exists.
> 
> 
> 
> Kevin Sutter wrote:
>> 
>> On Tue, Feb 10, 2009 at 12:31 PM, bongosdude <bo...@gmail.com>
>> wrote:
>> 
>>>
>>> Kevin,
>>>
>>> I have turned on the SQL trace and did not see any hints why this
>>> happened.
>> 
>> 
>> The format of your logging property doesn't look right, so that might be
>> reason why the output doesn't give any hints.  :-)  Maybe the "tmp" is
>> ignored.  Not sure.  Try something like this:
>> 
>> <property name="openjpa.Log" value="DefaultLevel=TRACE"/>
>> 
>> This will turn on all Tracing, not just the SQL tracing.  This might help
>> explain why the extra entities and persistence units are getting
>> processed.
>> 
>> 
>> Entities in the second units are defined but there are not
>>> session API to access it yet. And I do not set any properties to
>>> create table at all. OpenJPA see that the tables in the second unit do
>>> not exists in the first unit and try to create in the first unit.
>> 
>> 
>> Very strange.  Have not experienced that.
>> 
>> 
>>>
>>> What are the work around solution?
>> 
>> 
>> Except for separating the persistence units into separate persistence.xml
>> files, I'm not sure at this point.  This is a new problem for me, so I'm
>> not
>> sure how or why you are experiencing it.
>> 
>> Kevin
>> 
>>>
>>>
>>> -B
>>> On Feb 10, 2009, at 12:57 PM, Kevin Sutter (via Nabble) wrote:
>>>
>>> > Hi,
>>> > A situation similar to this was first reported to me back in August
>>> > by the
>>> > author of an IBM Redbook (
>>> >
>>> http://www.redbooks.ibm.com/Redbooks.nsf/RedpieceAbstracts/sg247639.html?Open
>>> )
>>> > .
>>> > After I gave the "standard" answers of how this might be happening,
>>> > I never
>>> > heard back.  So, I don't know if the problem was resolved by
>>> > application
>>> > review or if they decided to live with the situation or what they
>>> > did.  You
>>> > might want to reference the Redbook to see if there's any reference
>>> > to the
>>> > situation.
>>> >
>>> > First off, the tables should only be created if you are using the
>>> > SynchronizeMappings property.  Since I don't see that in your
>>> > persistence.xml, then I don't see how the tables are getting created
>>> > automatically.  Unless you have a different version of the
>>> > persistence.xml
>>> > file that is getting picked up somehow.  Or, maybe your build
>>> > process is
>>> > invoking the MappingTool?  Not sure.  I have never experienced
>>> > anything like
>>> > that.
>>> >
>>> > As far as creating the empty tables...  My guess is that your junit
>>> > test is
>>> > (accidentally?) touching both entities, thus creating both tables.
>>> > If you
>>> > turn on the complete openjpa trace, you can see the processing of the
>>> > entities within each persistence unit.  So, either the entities are
>>> > being
>>> > specified via some property or they are being touched by your
>>> > application.
>>> > That's my guess.  The trace would give more data to go off of.
>>> >
>>> > IIRC, there is one limitation with the MappingTool and/or
>>> > SynchronizeMappings that it will only process the entities in the
>>> > first
>>> > defined persistence unit within a persistence.xml file.  But, even
>>> > that
>>> > doesn't seem to apply in this case since you are indicating that the
>>> > tables
>>> > are getting created via the second persistence unit.
>>> >
>>> > Hopefully, the trace will show who is accessing what and causing the
>>> > entity
>>> > processing and table creation.
>>> >
>>> > Good luck,
>>> > Kevin
>>> >
>>> >
>>> > On Tue, Feb 10, 2009 at 11:36 AM, bongosdude <bo...@...> wrote:
>>> >
>>> > >
>>> > > I defined two persistence units in my persistence.xml to connect
>>> > to two
>>> > > different databases (one is MySQL and other to MS SQL) like below
>>> > >
>>> > > <persistence xmlns="http://java.sun.com/xml/ns/persistence"
>>> > >             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>>> > > version="1.0"
>>> > >            
>>> xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
>>> > > http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
>>> > >    <persistence-unit name="CallingCardUsersUnit">
>>> > >        <description>Entity Beans to db1</description>
>>> > >
>>> > > <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</
>>> > provider>
>>> > >        <non-jta-data-source>db_users_notx</non-jta-data-source>
>>> > >
>>> > <class>com.xyz.services.app.model.entity.users.User</class>
>>> > >
>>> > >  <class>com.xyz.services.app.model.entity.users.UserRole</class>
>>> > >
>>> > >  <class>com.xyz.services.app.model.entity.users.UserAccount</class>
>>> > >                <properties>
>>> > >                        <property name="/tmp/openjpa.log"
>>> > value="SQL=TRACE"
>>> > > />
>>> > >                </properties>
>>> > >    </persistence-unit>
>>> > >
>>> > >    <persistence-unit name="DigittalkUnit">
>>> > >        <description>Entity Beans for db2</description>
>>> > >
>>> > > <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</
>>> > provider>
>>> > >        <non-jta-data-source>billing_notx</non-jta-data-source>
>>> > >        <class>com.xyz.services.app.model.entity.billing.BUser</
>>> > class>
>>> > >        <class>com.xyz.services.app.model.entity.billing.BAccount</
>>> > class>
>>> > >                <properties>
>>> > >                        <property name="/tmp/openjpa.log"
>>> > value="SQL=TRACE"
>>> > > />
>>> > >                </properties>
>>> > >    </persistence-unit>
>>> > >
>>> > >
>>> > > </persistence>
>>> > >
>>> > >
>>> > > When my app first starts up and runs, I need to access entity
>>> > > com.xyz.services.app.model.entity.users.User, JPA tries to load
>>> > entiry
>>> > > com.xyz.services.app.model.entity.users.User and then it tries to
>>> > create
>>> > > table BUser and BAccount in the first persistence unit. BUser and
>>> > BAccount
>>> > > are listed in second persistence unit. Also, BUser and BAccount
>>> > are mapped
>>> > > to existing tables in second persistence unit.
>>> > >
>>> > > Can someone help me since I do not understand why it happens.
>>> > Also, How can
>>> > > I turn of the auto create table.
>>> > >
>>> > > Thanks
>>> > > -B
>>> > > --
>>> > > View this message in context:
>>> > >
>>> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2303818.html
>>> > > Sent from the OpenJPA Users mailing list archive at Nabble.com.
>>> > >
>>> > >
>>> >
>>> >
>>> > This email is a reply to your post @
>>> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2303948.html
>>> > You can reply by email or by visting the link above.
>>> >
>>>
>>>
>>> --
>>> View this message in context:
>>> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2304147.html
>>> Sent from the OpenJPA Users mailing list archive at Nabble.com.
>>>
>> 
>> 
> 
> 

-- 
View this message in context: http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2304566.html
Sent from the OpenJPA Users mailing list archive at Nabble.com.


Re: Problem with multi persistence units

Posted by bongosdude <bo...@gmail.com>.
This is strange, OpenJPA created new table that I specified in second unit to
the database of first persistence unit.

1. I have fun the find command, I only have one persistence.xml
2. There is not property set in my persistence.xml to ask openjpa to create
table if not exists.



Kevin Sutter wrote:
> 
> On Tue, Feb 10, 2009 at 12:31 PM, bongosdude <bo...@gmail.com> wrote:
> 
>>
>> Kevin,
>>
>> I have turned on the SQL trace and did not see any hints why this
>> happened.
> 
> 
> The format of your logging property doesn't look right, so that might be
> reason why the output doesn't give any hints.  :-)  Maybe the "tmp" is
> ignored.  Not sure.  Try something like this:
> 
> <property name="openjpa.Log" value="DefaultLevel=TRACE"/>
> 
> This will turn on all Tracing, not just the SQL tracing.  This might help
> explain why the extra entities and persistence units are getting
> processed.
> 
> 
> Entities in the second units are defined but there are not
>> session API to access it yet. And I do not set any properties to
>> create table at all. OpenJPA see that the tables in the second unit do
>> not exists in the first unit and try to create in the first unit.
> 
> 
> Very strange.  Have not experienced that.
> 
> 
>>
>> What are the work around solution?
> 
> 
> Except for separating the persistence units into separate persistence.xml
> files, I'm not sure at this point.  This is a new problem for me, so I'm
> not
> sure how or why you are experiencing it.
> 
> Kevin
> 
>>
>>
>> -B
>> On Feb 10, 2009, at 12:57 PM, Kevin Sutter (via Nabble) wrote:
>>
>> > Hi,
>> > A situation similar to this was first reported to me back in August
>> > by the
>> > author of an IBM Redbook (
>> >
>> http://www.redbooks.ibm.com/Redbooks.nsf/RedpieceAbstracts/sg247639.html?Open
>> )
>> > .
>> > After I gave the "standard" answers of how this might be happening,
>> > I never
>> > heard back.  So, I don't know if the problem was resolved by
>> > application
>> > review or if they decided to live with the situation or what they
>> > did.  You
>> > might want to reference the Redbook to see if there's any reference
>> > to the
>> > situation.
>> >
>> > First off, the tables should only be created if you are using the
>> > SynchronizeMappings property.  Since I don't see that in your
>> > persistence.xml, then I don't see how the tables are getting created
>> > automatically.  Unless you have a different version of the
>> > persistence.xml
>> > file that is getting picked up somehow.  Or, maybe your build
>> > process is
>> > invoking the MappingTool?  Not sure.  I have never experienced
>> > anything like
>> > that.
>> >
>> > As far as creating the empty tables...  My guess is that your junit
>> > test is
>> > (accidentally?) touching both entities, thus creating both tables.
>> > If you
>> > turn on the complete openjpa trace, you can see the processing of the
>> > entities within each persistence unit.  So, either the entities are
>> > being
>> > specified via some property or they are being touched by your
>> > application.
>> > That's my guess.  The trace would give more data to go off of.
>> >
>> > IIRC, there is one limitation with the MappingTool and/or
>> > SynchronizeMappings that it will only process the entities in the
>> > first
>> > defined persistence unit within a persistence.xml file.  But, even
>> > that
>> > doesn't seem to apply in this case since you are indicating that the
>> > tables
>> > are getting created via the second persistence unit.
>> >
>> > Hopefully, the trace will show who is accessing what and causing the
>> > entity
>> > processing and table creation.
>> >
>> > Good luck,
>> > Kevin
>> >
>> >
>> > On Tue, Feb 10, 2009 at 11:36 AM, bongosdude <bo...@...> wrote:
>> >
>> > >
>> > > I defined two persistence units in my persistence.xml to connect
>> > to two
>> > > different databases (one is MySQL and other to MS SQL) like below
>> > >
>> > > <persistence xmlns="http://java.sun.com/xml/ns/persistence"
>> > >             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>> > > version="1.0"
>> > >            
>> xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
>> > > http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
>> > >    <persistence-unit name="CallingCardUsersUnit">
>> > >        <description>Entity Beans to db1</description>
>> > >
>> > > <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</
>> > provider>
>> > >        <non-jta-data-source>db_users_notx</non-jta-data-source>
>> > >
>> > <class>com.xyz.services.app.model.entity.users.User</class>
>> > >
>> > >  <class>com.xyz.services.app.model.entity.users.UserRole</class>
>> > >
>> > >  <class>com.xyz.services.app.model.entity.users.UserAccount</class>
>> > >                <properties>
>> > >                        <property name="/tmp/openjpa.log"
>> > value="SQL=TRACE"
>> > > />
>> > >                </properties>
>> > >    </persistence-unit>
>> > >
>> > >    <persistence-unit name="DigittalkUnit">
>> > >        <description>Entity Beans for db2</description>
>> > >
>> > > <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</
>> > provider>
>> > >        <non-jta-data-source>billing_notx</non-jta-data-source>
>> > >        <class>com.xyz.services.app.model.entity.billing.BUser</
>> > class>
>> > >        <class>com.xyz.services.app.model.entity.billing.BAccount</
>> > class>
>> > >                <properties>
>> > >                        <property name="/tmp/openjpa.log"
>> > value="SQL=TRACE"
>> > > />
>> > >                </properties>
>> > >    </persistence-unit>
>> > >
>> > >
>> > > </persistence>
>> > >
>> > >
>> > > When my app first starts up and runs, I need to access entity
>> > > com.xyz.services.app.model.entity.users.User, JPA tries to load
>> > entiry
>> > > com.xyz.services.app.model.entity.users.User and then it tries to
>> > create
>> > > table BUser and BAccount in the first persistence unit. BUser and
>> > BAccount
>> > > are listed in second persistence unit. Also, BUser and BAccount
>> > are mapped
>> > > to existing tables in second persistence unit.
>> > >
>> > > Can someone help me since I do not understand why it happens.
>> > Also, How can
>> > > I turn of the auto create table.
>> > >
>> > > Thanks
>> > > -B
>> > > --
>> > > View this message in context:
>> > >
>> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2303818.html
>> > > Sent from the OpenJPA Users mailing list archive at Nabble.com.
>> > >
>> > >
>> >
>> >
>> > This email is a reply to your post @
>> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2303948.html
>> > You can reply by email or by visting the link above.
>> >
>>
>>
>> --
>> View this message in context:
>> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2304147.html
>> Sent from the OpenJPA Users mailing list archive at Nabble.com.
>>
> 
> 

-- 
View this message in context: http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2304438.html
Sent from the OpenJPA Users mailing list archive at Nabble.com.


Re: Problem with multi persistence units

Posted by Kevin Sutter <kw...@gmail.com>.
On Tue, Feb 10, 2009 at 12:31 PM, bongosdude <bo...@gmail.com> wrote:

>
> Kevin,
>
> I have turned on the SQL trace and did not see any hints why this
> happened.


The format of your logging property doesn't look right, so that might be
reason why the output doesn't give any hints.  :-)  Maybe the "tmp" is
ignored.  Not sure.  Try something like this:

<property name="openjpa.Log" value="DefaultLevel=TRACE"/>

This will turn on all Tracing, not just the SQL tracing.  This might help
explain why the extra entities and persistence units are getting processed.


Entities in the second units are defined but there are not
> session API to access it yet. And I do not set any properties to
> create table at all. OpenJPA see that the tables in the second unit do
> not exists in the first unit and try to create in the first unit.


Very strange.  Have not experienced that.


>
> What are the work around solution?


Except for separating the persistence units into separate persistence.xml
files, I'm not sure at this point.  This is a new problem for me, so I'm not
sure how or why you are experiencing it.

Kevin

>
>
> -B
> On Feb 10, 2009, at 12:57 PM, Kevin Sutter (via Nabble) wrote:
>
> > Hi,
> > A situation similar to this was first reported to me back in August
> > by the
> > author of an IBM Redbook (
> >
> http://www.redbooks.ibm.com/Redbooks.nsf/RedpieceAbstracts/sg247639.html?Open
> )
> > .
> > After I gave the "standard" answers of how this might be happening,
> > I never
> > heard back.  So, I don't know if the problem was resolved by
> > application
> > review or if they decided to live with the situation or what they
> > did.  You
> > might want to reference the Redbook to see if there's any reference
> > to the
> > situation.
> >
> > First off, the tables should only be created if you are using the
> > SynchronizeMappings property.  Since I don't see that in your
> > persistence.xml, then I don't see how the tables are getting created
> > automatically.  Unless you have a different version of the
> > persistence.xml
> > file that is getting picked up somehow.  Or, maybe your build
> > process is
> > invoking the MappingTool?  Not sure.  I have never experienced
> > anything like
> > that.
> >
> > As far as creating the empty tables...  My guess is that your junit
> > test is
> > (accidentally?) touching both entities, thus creating both tables.
> > If you
> > turn on the complete openjpa trace, you can see the processing of the
> > entities within each persistence unit.  So, either the entities are
> > being
> > specified via some property or they are being touched by your
> > application.
> > That's my guess.  The trace would give more data to go off of.
> >
> > IIRC, there is one limitation with the MappingTool and/or
> > SynchronizeMappings that it will only process the entities in the
> > first
> > defined persistence unit within a persistence.xml file.  But, even
> > that
> > doesn't seem to apply in this case since you are indicating that the
> > tables
> > are getting created via the second persistence unit.
> >
> > Hopefully, the trace will show who is accessing what and causing the
> > entity
> > processing and table creation.
> >
> > Good luck,
> > Kevin
> >
> >
> > On Tue, Feb 10, 2009 at 11:36 AM, bongosdude <bo...@...> wrote:
> >
> > >
> > > I defined two persistence units in my persistence.xml to connect
> > to two
> > > different databases (one is MySQL and other to MS SQL) like below
> > >
> > > <persistence xmlns="http://java.sun.com/xml/ns/persistence"
> > >             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> > > version="1.0"
> > >             xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
> > > http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
> > >    <persistence-unit name="CallingCardUsersUnit">
> > >        <description>Entity Beans to db1</description>
> > >
> > > <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</
> > provider>
> > >        <non-jta-data-source>db_users_notx</non-jta-data-source>
> > >
> > <class>com.xyz.services.app.model.entity.users.User</class>
> > >
> > >  <class>com.xyz.services.app.model.entity.users.UserRole</class>
> > >
> > >  <class>com.xyz.services.app.model.entity.users.UserAccount</class>
> > >                <properties>
> > >                        <property name="/tmp/openjpa.log"
> > value="SQL=TRACE"
> > > />
> > >                </properties>
> > >    </persistence-unit>
> > >
> > >    <persistence-unit name="DigittalkUnit">
> > >        <description>Entity Beans for db2</description>
> > >
> > > <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</
> > provider>
> > >        <non-jta-data-source>billing_notx</non-jta-data-source>
> > >        <class>com.xyz.services.app.model.entity.billing.BUser</
> > class>
> > >        <class>com.xyz.services.app.model.entity.billing.BAccount</
> > class>
> > >                <properties>
> > >                        <property name="/tmp/openjpa.log"
> > value="SQL=TRACE"
> > > />
> > >                </properties>
> > >    </persistence-unit>
> > >
> > >
> > > </persistence>
> > >
> > >
> > > When my app first starts up and runs, I need to access entity
> > > com.xyz.services.app.model.entity.users.User, JPA tries to load
> > entiry
> > > com.xyz.services.app.model.entity.users.User and then it tries to
> > create
> > > table BUser and BAccount in the first persistence unit. BUser and
> > BAccount
> > > are listed in second persistence unit. Also, BUser and BAccount
> > are mapped
> > > to existing tables in second persistence unit.
> > >
> > > Can someone help me since I do not understand why it happens.
> > Also, How can
> > > I turn of the auto create table.
> > >
> > > Thanks
> > > -B
> > > --
> > > View this message in context:
> > >
> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2303818.html
> > > Sent from the OpenJPA Users mailing list archive at Nabble.com.
> > >
> > >
> >
> >
> > This email is a reply to your post @
> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2303948.html
> > You can reply by email or by visting the link above.
> >
>
>
> --
> View this message in context:
> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2304147.html
> Sent from the OpenJPA Users mailing list archive at Nabble.com.
>

Re: Problem with multi persistence units

Posted by bongosdude <bo...@gmail.com>.
Kevin,

I have turned on the SQL trace and did not see any hints why this  
happened. Entities in the second units are defined but there are not  
session API to access it yet. And I do not set any properties to  
create table at all. OpenJPA see that the tables in the second unit do  
not exists in the first unit and try to create in the first unit.

What are the work around solutions?

-B
On Feb 10, 2009, at 12:57 PM, Kevin Sutter (via Nabble) wrote:

> Hi,
> A situation similar to this was first reported to me back in August  
> by the
> author of an IBM Redbook (
> http://www.redbooks.ibm.com/Redbooks.nsf/RedpieceAbstracts/sg247639.html?Open) 
> .
> After I gave the "standard" answers of how this might be happening,  
> I never
> heard back.  So, I don't know if the problem was resolved by  
> application
> review or if they decided to live with the situation or what they  
> did.  You
> might want to reference the Redbook to see if there's any reference  
> to the
> situation.
>
> First off, the tables should only be created if you are using the
> SynchronizeMappings property.  Since I don't see that in your
> persistence.xml, then I don't see how the tables are getting created
> automatically.  Unless you have a different version of the  
> persistence.xml
> file that is getting picked up somehow.  Or, maybe your build  
> process is
> invoking the MappingTool?  Not sure.  I have never experienced  
> anything like
> that.
>
> As far as creating the empty tables...  My guess is that your junit  
> test is
> (accidentally?) touching both entities, thus creating both tables.   
> If you
> turn on the complete openjpa trace, you can see the processing of the
> entities within each persistence unit.  So, either the entities are  
> being
> specified via some property or they are being touched by your  
> application.
> That's my guess.  The trace would give more data to go off of.
>
> IIRC, there is one limitation with the MappingTool and/or
> SynchronizeMappings that it will only process the entities in the  
> first
> defined persistence unit within a persistence.xml file.  But, even  
> that
> doesn't seem to apply in this case since you are indicating that the  
> tables
> are getting created via the second persistence unit.
>
> Hopefully, the trace will show who is accessing what and causing the  
> entity
> processing and table creation.
>
> Good luck,
> Kevin
>
>
> On Tue, Feb 10, 2009 at 11:36 AM, bongosdude <bo...@...> wrote:
>
> >
> > I defined two persistence units in my persistence.xml to connect  
> to two
> > different databases (one is MySQL and other to MS SQL) like below
> >
> > <persistence xmlns="http://java.sun.com/xml/ns/persistence"
> >             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> > version="1.0"
> >             xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
> > http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
> >    <persistence-unit name="CallingCardUsersUnit">
> >        <description>Entity Beans to db1</description>
> >
> > <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</ 
> provider>
> >        <non-jta-data-source>db_users_notx</non-jta-data-source>
> >                 
> <class>com.xyz.services.app.model.entity.users.User</class>
> >
> >  <class>com.xyz.services.app.model.entity.users.UserRole</class>
> >
> >  <class>com.xyz.services.app.model.entity.users.UserAccount</class>
> >                <properties>
> >                        <property name="/tmp/openjpa.log"  
> value="SQL=TRACE"
> > />
> >                </properties>
> >    </persistence-unit>
> >
> >    <persistence-unit name="DigittalkUnit">
> >        <description>Entity Beans for db2</description>
> >
> > <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</ 
> provider>
> >        <non-jta-data-source>billing_notx</non-jta-data-source>
> >        <class>com.xyz.services.app.model.entity.billing.BUser</ 
> class>
> >        <class>com.xyz.services.app.model.entity.billing.BAccount</ 
> class>
> >                <properties>
> >                        <property name="/tmp/openjpa.log"  
> value="SQL=TRACE"
> > />
> >                </properties>
> >    </persistence-unit>
> >
> >
> > </persistence>
> >
> >
> > When my app first starts up and runs, I need to access entity
> > com.xyz.services.app.model.entity.users.User, JPA tries to load  
> entiry
> > com.xyz.services.app.model.entity.users.User and then it tries to  
> create
> > table BUser and BAccount in the first persistence unit. BUser and  
> BAccount
> > are listed in second persistence unit. Also, BUser and BAccount  
> are mapped
> > to existing tables in second persistence unit.
> >
> > Can someone help me since I do not understand why it happens.  
> Also, How can
> > I turn of the auto create table.
> >
> > Thanks
> > -B
> > --
> > View this message in context:
> > http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2303818.html
> > Sent from the OpenJPA Users mailing list archive at Nabble.com.
> >
> >
>
>
> This email is a reply to your post @ http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2303948.html
> You can reply by email or by visting the link above.
>


-- 
View this message in context: http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2304147.html
Sent from the OpenJPA Users mailing list archive at Nabble.com.

Re: Problem with multi persistence units

Posted by Kevin Sutter <kw...@gmail.com>.
Hi,
A situation similar to this was first reported to me back in August by the
author of an IBM Redbook (
http://www.redbooks.ibm.com/Redbooks.nsf/RedpieceAbstracts/sg247639.html?Open).
After I gave the "standard" answers of how this might be happening, I never
heard back.  So, I don't know if the problem was resolved by application
review or if they decided to live with the situation or what they did.  You
might want to reference the Redbook to see if there's any reference to the
situation.

First off, the tables should only be created if you are using the
SynchronizeMappings property.  Since I don't see that in your
persistence.xml, then I don't see how the tables are getting created
automatically.  Unless you have a different version of the persistence.xml
file that is getting picked up somehow.  Or, maybe your build process is
invoking the MappingTool?  Not sure.  I have never experienced anything like
that.

As far as creating the empty tables...  My guess is that your junit test is
(accidentally?) touching both entities, thus creating both tables.  If you
turn on the complete openjpa trace, you can see the processing of the
entities within each persistence unit.  So, either the entities are being
specified via some property or they are being touched by your application.
That's my guess.  The trace would give more data to go off of.

IIRC, there is one limitation with the MappingTool and/or
SynchronizeMappings that it will only process the entities in the first
defined persistence unit within a persistence.xml file.  But, even that
doesn't seem to apply in this case since you are indicating that the tables
are getting created via the second persistence unit.

Hopefully, the trace will show who is accessing what and causing the entity
processing and table creation.

Good luck,
Kevin


On Tue, Feb 10, 2009 at 11:36 AM, bongosdude <bo...@gmail.com> wrote:

>
> I defined two persistence units in my persistence.xml to connect to two
> different databases (one is MySQL and other to MS SQL) like below
>
> <persistence xmlns="http://java.sun.com/xml/ns/persistence"
>             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
> version="1.0"
>             xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
> http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
>    <persistence-unit name="CallingCardUsersUnit">
>        <description>Entity Beans to db1</description>
>
> <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
>        <non-jta-data-source>db_users_notx</non-jta-data-source>
>                <class>com.xyz.services.app.model.entity.users.User</class>
>
>  <class>com.xyz.services.app.model.entity.users.UserRole</class>
>
>  <class>com.xyz.services.app.model.entity.users.UserAccount</class>
>                <properties>
>                        <property name="/tmp/openjpa.log" value="SQL=TRACE"
> />
>                </properties>
>    </persistence-unit>
>
>    <persistence-unit name="DigittalkUnit">
>        <description>Entity Beans for db2</description>
>
> <provider>org.apache.openjpa.persistence.PersistenceProviderImpl</provider>
>        <non-jta-data-source>billing_notx</non-jta-data-source>
>        <class>com.xyz.services.app.model.entity.billing.BUser</class>
>        <class>com.xyz.services.app.model.entity.billing.BAccount</class>
>                <properties>
>                        <property name="/tmp/openjpa.log" value="SQL=TRACE"
> />
>                </properties>
>    </persistence-unit>
>
>
> </persistence>
>
>
> When my app first starts up and runs, I need to access entity
> com.xyz.services.app.model.entity.users.User, JPA tries to load entiry
> com.xyz.services.app.model.entity.users.User and then it tries to create
> table BUser and BAccount in the first persistence unit. BUser and BAccount
> are listed in second persistence unit. Also, BUser and BAccount are mapped
> to existing tables in second persistence unit.
>
> Can someone help me since I do not understand why it happens. Also, How can
> I turn of the auto create table.
>
> Thanks
> -B
> --
> View this message in context:
> http://n2.nabble.com/Problem-with-multi-persistence-units-tp2303818p2303818.html
> Sent from the OpenJPA Users mailing list archive at Nabble.com.
>
>