Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » EclipseLink » missing commit
missing commit [message #794482] Thu, 09 February 2012 10:46 Go to next message
Tom Eugelink is currently offline Tom EugelinkFriend
Messages: 817
Registered: July 2009
Senior Member
I've got a batch process that creates entities but also uses native queries to do some inserts and updates. The core of the code is below:

// afboeken
EntityManager lEntityManager = getReinders().createEntityManager();
EntityManagerFinderReinders.associateWithCurrentThread(lEntityManager);
try
{
// begin a transaction
lEntityManager.getTransaction().begin();

// afboeken
WsOrder.MergeIntoOneSellorder lMergeIntoOneSellorder = WsOrder.mergeIntoOneSellorder(lProgressMonitor.progressListener);
WsOrder.cancelIncollectables();

// commit
lEntityManager.getTransaction().commit();
}
finally
{
// rollback a transaction
if (lEntityManager.getTransaction().isActive()) lEntityManager.getTransaction().rollback();
lEntityManager.close();
}


Using a proxied JDBC connection, I've captured all database interaction and extracted the inserts, updates and commits. The chronological lines are below. What causes a problem is that the EM's commit call does not commit!
The "[C......]" is the connection identifier and you can see there is no ending commit on the C26156 (while there is on the C19730547 for each sequence). So a new read on the table results in a lock timeout of the database.
I've debugged the code and I'm 100% certain that it is the same entitymanager being used and on which the commit call is executed.

[EL Config]: 2012-02-09 10:31:03.744--ServerSession(5200460)--Connection(12365668)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--connecting(DatabaseLogin(
2012-02-09 10:31:03,775 #3408356[C26156]: executeUpdate( set role javaapp1 ) returns #0: 0
2012-02-09 10:31:03,775 #2695890[C26156]: executeUpdate( set lock mode to wait 60 ) returns #0: 0
2012-02-09 10:31:03,775 #30265395[C26156]: executeUpdate( set isolation to committed read retain update locks ) returns #0: 0
[EL Config]: 2012-02-09 10:31:03.775--ServerSession(5200460)--Connection(19774731)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Connected: jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8

2012-02-09 10:32:55,958 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (0ms)
2012-02-09 10:32:55,989 #19730547[C19730547]: commit()

2012-02-09 10:32:56,036 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (16ms)
2012-02-09 10:32:56,051 #19730547[C19730547]: commit()

2012-02-09 10:32:56,114 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (0ms)
2012-02-09 10:32:56,145 #19730547[C19730547]: commit()

2012-02-09 10:32:56,909 #31323476[C26156]: executeUpdate: INSERT INTO sellorder (sellordernr, external_sellorder, tax, financialdate, transport_relationnr, to_euro, pickup_printnote, edifact_desadv_info, diskonto, address_billing, tobepaidwithin, retour, deliveryinfo, payment_agreement, checked, selldate, address_delivery, dwhmodified, wholesale, state, facture_date, reduction, inserted, delivery_date, edifact_skip, franco, packagevalue, incassodagen, billinfo_reinders, do_backorder, bez, oldsellordernr, picked, no_delivery, packaging, picklistprinted, lazylock, delivery_printnote, oldsellordernr_unique, kilos, skontodagen, edifact_desadv_send, address_reinders, edifact_invoic_info, edifact, dwhby, edifact_invoic_send, description, contactnr, sendfrom_addressnr, currencynr, enteredby_empnr, billing_addressnr, reinders_relationnr, relationnr, delivery_addressnr) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,
?, ?, ?,
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) (156ms)
2012-02-09 10:33:39,914 #24923737[C26156]: executeUpdate: INSERT INTO sellorderline (sellorderlinenr, force_fill, seqnr, backorder_amount, outlets, managestock, unmanagedamount, lazylock, price_per_unit, dwhmodified, delivery_index, comment, unbookableamount, dwhby, manual_price, reduction, backord_selllinenr, batchtype, standversionnr, sellordernr, articlenr) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) (42818ms)
2012-02-09 10:34:15,514 #24923737[C26156]: executeUpdate: INSERT INTO sellorderline (sellorderlinenr, force_fill, seqnr, backorder_amount, outlets, managestock, unmanagedamount, lazylock, price_per_unit, dwhmodified, delivery_index, comment, unbookableamount, dwhby, manual_price, reduction, backord_selllinenr, batchtype, standversionnr, sellordernr, articlenr) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) (35429ms)
2012-02-09 10:34:16,200 #6884682[C26156]: executeUpdate: update batch set batchnr = batchnr where batchnr=935021 (31ms)

2012-02-09 10:34:16,294 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (31ms)
2012-02-09 10:34:16,325 #19730547[C19730547]: commit()

2012-02-09 10:34:59,091 #26795305[C26156]: executeUpdate: insert into batchsellorderline(batchselllinenr,batchnr,sellorderlinenr,amount,dwhmodified,dwhby) values(?,?,?,?,?,?) (42703ms)

2012-02-09 10:34:59,325 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (16ms)
2012-02-09 10:34:59,356 #19730547[C19730547]: commit()

2012-02-09 10:34:59,497 #22865832[C26156]: executeUpdate: insert into article_stock_mutation(article_stock_mutationnr, articlenr, batchtypenr, storage_domainnr, amount, description, source_id, source_fk) values(1069,14545,1,1,-1,null,'SOL',12781578) (125ms)
2012-02-09 10:34:59,528 #29963414[C26156]: executeUpdate: update article_stock set amount = amount + -1 where article_stocknr = 277374 (16ms)
2012-02-09 10:34:59,840 #10253075[C26156]: executeUpdate: update batch set batchnr = batchnr where batchnr=942069 (31ms)

2012-02-09 10:34:59,902 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (0ms)
2012-02-09 10:34:59,918 #19730547[C19730547]: commit()

2012-02-09 10:35:32,878 #26795305[C26156]: executeUpdate: insert into batchsellorderline(batchselllinenr,batchnr,sellorderlinenr,amount,dwhmodified,dwhby) values(?,?,?,?,?,?) (32898ms)

22012-02-09 10:35:33,096 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (31ms)
012-02-09 10:35:33,128 #19730547[C19730547]: commit()

2012-02-09 10:35:33,221 #7962411[C26156]: executeUpdate: insert into article_stock_mutation(article_stock_mutationnr, articlenr, batchtypenr, storage_domainnr, amount, description, source_id, source_fk) values(1070,16637,51529,1,-1,null,'SOL',12781577) (62ms)
2012-02-09 10:35:33,284 #12037517[C26156]: executeUpdate: update article_stock set amount = amount + -1 where article_stocknr = 928925 (47ms)
2012-02-09 10:35:39,529 #29264254[C26156]: executeUpdate: UPDATE ws_order SET sellordernr = ?, dwhmodified = ?, sellorder_status = ? WHERE (order_id = ?) (78ms)



I've also collected the whole EclipseLink logging. A simple point to pick up would be the "UPDATE ws_order"...

[EL Finest]: 2012-02-09 10:31:02.778--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=javax.persistence.jdbc.user; value=informix
[EL Finest]: 2012-02-09 10:31:02.794--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=javax.persistence.jdbc.password; value=xxxxxx
[EL Finest]: 2012-02-09 10:31:03.354--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.target-database; value=nl.reinders.jdbc.InformixPlatform
[EL Finest]: 2012-02-09 10:31:03.354--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=javax.persistence.jdbc.driver; value=nl.reinders.jdbc.ReindersInformixAndLoggingDriver
[EL Finest]: 2012-02-09 10:31:03.354--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=javax.persistence.jdbc.url; value=jdbc:reinders:com.informix.jdbc.IfxDriver#jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8
[EL Finest]: 2012-02-09 10:31:03.354--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.jdbc.sequence-connection-pool; value=true
[EL Finest]: 2012-02-09 10:31:03.619--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.cache.shared.default; value=false
[EL Finest]: 2012-02-09 10:31:03.619--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.jdbc.native-sql; value=true
[EL Finest]: 2012-02-09 10:31:03.619--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.jdbc.cache-statements; value=true
[EL Finest]: 2012-02-09 10:31:03.619--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.allow-zero-id; value=true
[EL Info]: 2012-02-09 10:31:03.619--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--EclipseLink, version: Eclipse Persistence Services - 2.0.2.v20100323-r6872
[EL Config]: 2012-02-09 10:31:03.65--ServerSession(5200460)--Connection(33380905)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--connecting(DatabaseLogin(
[EL Config]: 2012-02-09 10:31:03.744--ServerSession(5200460)--Connection(24543166)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Connected: jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8
[EL Config]: 2012-02-09 10:31:03.744--ServerSession(5200460)--Connection(12365668)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--connecting(DatabaseLogin(
[EL Config]: 2012-02-09 10:31:03.775--ServerSession(5200460)--Connection(19774731)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Connected: jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8
[EL Config]: 2012-02-09 10:31:03.806--ServerSession(5200460)--Connection(29844194)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--connecting(DatabaseLogin(
[EL Config]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Connection(13412205)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Connected: jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequencing connected, state is Preallocation_Transaction_Accessor_State
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence oidnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence webordersnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellorderrangenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence producttypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence currencynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articletypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationsegmentnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellorderlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationframenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_group_article_nr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence deliverylinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence categorynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_inventorynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchtypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stocksnapshotentrynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchtransferlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_deliverylinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_paymentenginenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence licensenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskarticlekeywordnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstandcatnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationpricerulenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence calendarnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_articlenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence catalogentrynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articlenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence permissionnodenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standareanr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_articletype_averagenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchbuyordlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_outputlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence task_articlenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationgroup_articletypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_articletypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence rollentodonr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellorder_in_sellordernr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence wsaffiliatepricerulenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence buyorder_billnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchselllinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articlepricegroupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstand2catnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_payment_typenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationtelnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence pdaordernr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstandnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence webordersitemsnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationgroup_articlenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articlekeywordnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellordernr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence contractnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence storage_domainnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stockcountlistitemnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationgroupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence languagenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_inventoryitemnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence orderitem_id: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence rollendonenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articletypegroupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstandtoframenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionordernr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence article_stocknr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence buyordernr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_deliverynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence timeframenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_productionorder_activitynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence btwnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standversionnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskfollowupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standtypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence contactnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellorderline_retournr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationgroupstandnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standassignnr: preallocation size 10
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence type: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence buyorder_billlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskprojectnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationframecompositionnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stocksnapshotnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationgroupeannr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence deliverynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence wsreferernr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_activitynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence order_coupon_nr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationversionnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence article_stock_mutationnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence contractpaymentnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_inputlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskprioritynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence tablename: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationsalenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchtransfernr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license2countrynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence edifactordersitemsnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence catalognr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence addressnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence retournr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_inventoryordernr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence eanrangenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence contractpaymentlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchcodenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license2countrygroupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence article2articlekeywordnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence storagenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstocknr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articlekeyword_translationnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence rollentodolinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence countrycode2countrygroupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence id: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskarticlestatusnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stockcountlistnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence retourlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence edifactordersnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence contacttelnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stockcountmutationnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence wsaffiliatenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence translationnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence employeenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence guid: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence tasknr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence licensegroupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskstatusnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence translation2nr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_linenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence licensegrouparticletypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence order_id: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchcountnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellexpectlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stockcountnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchcreditnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_payment_detailnr: preallocation size 25
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence countrygroupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence pdaorderlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence groupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_paymentnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence countrycodenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstandtypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_stand_exceptionnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence messagenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence rollendonelinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence reservationnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articleusesarticlenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_payment_printednr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationaliasnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellexpectnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sleevestypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence buyorderlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standmaterialnr: preallocation size 1
[EL Info]: 2012-02-09 10:31:04.242--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--reinders_url=jdbc:reinders:com.informix.jdbc.IfxDriver#jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8_user=informix login successful
[EL Finer]: 2012-02-09 10:31:04.32--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Grouppermissions_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.32--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Weborders_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.32--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Sellorderrange_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Producttype_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Currency_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Articletype_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationSegment_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VRelationArticle_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Sellorderline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationframe_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.LicenseGroupArticle_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Deliveryline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationcat_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VRelationContactinfo_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationInventory_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchtype_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StocksnapshotEntry_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchtransferline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ProductionorderDeliveryline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.LicensePaymentengineNone_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.License_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Task2Articlekeyword_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationstandCat_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationPricerule_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Calendar_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationArticle_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Catalogentry_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Sellordercat_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Article_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Permissionnode_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StandArea_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batch_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationArticletypeAverage_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchbuyorderline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ProductionorderOutputline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.TaskArticle_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationgroupArticletype_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationArticletype_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Rollentodo_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Addresstype_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.SellorderInSellorder_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.WsAffiliatePricerule_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.BuyorderBill_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relation_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchsellorderline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ArticlePricegroup_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VArticle_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationstandToCat_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.LicensePaymentType_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationtel_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Pdaorder_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationstand_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VStandversion_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Webordersitems_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationgroupArticle_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Articlekeyword_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Sellorder_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Contract_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.TSellstandrefill_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StorageDomain_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StockcountListitem_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationgroup_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Language_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationInventoryitem_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.WsOrderitem_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Rollendone_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ArticletypeGroup_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationstandToFrame_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Productionorder_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ArticleStock_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Sellorder2Cat_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Catsubscription_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Article2Storage_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Buyorder_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ProductionorderDelivery_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Timeframe_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Webimagedownload_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationProductionorderActivity_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Btwcategory_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Employee2Group_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Standversion_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Taskfollowup_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StandType_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Contact_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.TSellstandinifill_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Producttype2Contract_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.SellorderlineRetour_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Stand_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationgroupstand_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Standassign_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Delivery2Buyorder_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Websort_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.BuyorderBillline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Taskproject_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationframeComposition_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Stocksnapshot_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationgroupean_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Delivery_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.WsReferer_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ProductionorderActivity_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.WsOrderCoupon_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VStandcurfut_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Weblightbox_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.TBatch_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationversion_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ArticleStockMutation_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Contractpayment_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ProductionorderInputline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Webdisclaimer_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Taskpriority_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Articlealias_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Cleaneduntil_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relstandsale_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchtransfer_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.License2Country_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Edifactordersitems_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Catalog_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Address_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VStandassignlastcurfut_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Retour_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationInventoryorder_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Eanrange_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Contractpaymentline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchcode_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.License2Countrygroup_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.TSellmoneycalc_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Article2Articlekeyword_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Storage_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relstandstock_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ArticlekeywordTranslation_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VSellmoney_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Article2Articlecat_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Me
Re: missing commit (workaround) [message #794527 is a reply to message #794482] Thu, 09 February 2012 11:59 Go to previous messageGo to next message
Tom Eugelink is currently offline Tom EugelinkFriend
Messages: 817
Registered: July 2009
Senior Member
> So a new read on the table results in a lock timeout of the database.

I've worked around the problem by simply committing myself:

lEntityManager.createNativeQuery("commit").executeUpdate();
lEntityManager.getTransaction().commit();

But naturally this should not be necessary.

Tom
Re: missing commit (workaround) [message #795728 is a reply to message #794527] Fri, 10 February 2012 21:27 Go to previous messageGo to next message
Chris Delahunt is currently offline Chris DelahuntFriend
Messages: 1389
Registered: July 2009
Senior Member
Apparently the post was truncated as the log is missing the statements you mention. Can you post the log somewhere else, or make it smaller and post the relevant bits? Particularly the parts where that connection is used.
Re: missing commit (workaround) [message #795978 is a reply to message #795728] Sat, 11 February 2012 07:06 Go to previous messageGo to next message
Tom Eugelink is currently offline Tom EugelinkFriend
Messages: 817
Registered: July 2009
Senior Member
On 2012-02-10 22:27, Chris Delahunt wrote:
> Apparently the post was truncated as the log is missing the statements you mention. Can you post the log somewhere else, or make it smaller and post the relevant bits? Particularly the parts where that connection is used.

Hm, it seems the post is pretty complete to me.
- If you search for "update ws_order", you'll find the first line pretty near the top containing "[C26156]" showing that it was done via connection with hashcode 26156. Above that line are the other SQL statements and their connections. (This is all better readable without wordwrapping.)
- The third line in which you will find this text is pretty near the end, containing "ClientSession(10595825)--Connection(19774731)" and it is part of the Eclipselink log. About 10 lines further down you will find that it did do a Eclipselink commit, but the database commit is missing.

Tom
Re: missing commit (workaround) [message #797501 is a reply to message #795978] Mon, 13 February 2012 15:17 Go to previous messageGo to next message
Chris Delahunt is currently offline Chris DelahuntFriend
Messages: 1389
Registered: July 2009
Senior Member
Last line I see is "2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Me "
So something is missing. You can try uploading the log as an attachement.

Regards,
Chris
Re: missing commit (workaround) [message #797528 is a reply to message #797501] Mon, 13 February 2012 15:45 Go to previous messageGo to next message
Chris Delahunt is currently offline Chris DelahuntFriend
Messages: 1389
Registered: July 2009
Senior Member
Also, you might want to try a more recent version. I haven't found any issues fixed that directly relate to this issue, but it would rule out any code refactoring if you were using a later build.
Re: missing commit (workaround) [message #797535 is a reply to message #797528] Mon, 13 February 2012 15:53 Go to previous messageGo to next message
Tom Eugelink is currently offline Tom EugelinkFriend
Messages: 817
Registered: July 2009
Senior Member
On 2012-02-13 16:45, Chris Delahunt wrote:
> Also, you might want to try a more recent version. I haven't found any issues fixed that directly relate to this issue, but it would rule out any code refactoring if you were using a later build.

Attached is my original post. It can also be downloaded from http://home.tbee.org/stuff/missingcommit.txt

Unfortunately I'm not able to upgrade to a higher version, because of a known issue with the embedded ASM.
https://bugs.eclipse.org/bugs/show_bug.cgi?id=358287

This same bug also prevents me from upgrading to Java 7, because Java 7 requires 2.3.0.
https://bugs.eclipse.org/bugs/show_bug.cgi?id=339388

Tom


I've got a batch process that creates entities but also uses native queries to do some inserts and updates. The core of the code is below:

// afboeken
EntityManager lEntityManager = getReinders().createEntityManager();
EntityManagerFinderReinders.associateWithCurrentThread(lEntityManager);
try
{
// begin a transaction
lEntityManager.getTransaction().begin();

// afboeken
WsOrder.MergeIntoOneSellorder lMergeIntoOneSellorder = WsOrder.mergeIntoOneSellorder(lProgressMonitor.progressListener);
WsOrder.cancelIncollectables();

// commit
lEntityManager.getTransaction().commit();
}
finally
{
// rollback a transaction
if (lEntityManager.getTransaction().isActive()) lEntityManager.getTransaction().rollback();
lEntityManager.close();
}


Using a proxied JDBC connection, I've captured all database interaction and extracted the inserts, updates and commits. The chronological lines are below. What causes a problem is that the EM's commit call does not commit!
The "[C......]" is the connection identifier and you can see there is no ending commit on the C26156 (while there is on the C19730547 for each sequence). So a new read on the table results in a lock timeout of the database.
I've debugged the code and I'm 100% certain that it is the same entitymanager being used and on which the commit call is executed.

[EL Config]: 2012-02-09 10:31:03.744--ServerSession(5200460)--Connection(12365668)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--connecting(DatabaseLogin(
2012-02-09 10:31:03,775 #3408356[C26156]: executeUpdate( set role javaapp1 ) returns #0: 0
2012-02-09 10:31:03,775 #2695890[C26156]: executeUpdate( set lock mode to wait 60 ) returns #0: 0
2012-02-09 10:31:03,775 #30265395[C26156]: executeUpdate( set isolation to committed read retain update locks ) returns #0: 0
[EL Config]: 2012-02-09 10:31:03.775--ServerSession(5200460)--Connection(19774731)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Connected: jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8

2012-02-09 10:32:55,958 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (0ms)
2012-02-09 10:32:55,989 #19730547[C19730547]: commit()

2012-02-09 10:32:56,036 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (16ms)
2012-02-09 10:32:56,051 #19730547[C19730547]: commit()

2012-02-09 10:32:56,114 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (0ms)
2012-02-09 10:32:56,145 #19730547[C19730547]: commit()

2012-02-09 10:32:56,909 #31323476[C26156]: executeUpdate: INSERT INTO sellorder (sellordernr, external_sellorder, tax, financialdate, transport_relationnr, to_euro, pickup_printnote, edifact_desadv_info, diskonto, address_billing, tobepaidwithin, retour, deliveryinfo, payment_agreement, checked, selldate, address_delivery, dwhmodified, wholesale, state, facture_date, reduction, inserted, delivery_date, edifact_skip, franco, packagevalue, incassodagen, billinfo_reinders, do_backorder, bez, oldsellordernr, picked, no_delivery, packaging, picklistprinted, lazylock, delivery_printnote, oldsellordernr_unique, kilos, skontodagen, edifact_desadv_send, address_reinders, edifact_invoic_info, edifact, dwhby, edifact_invoic_send, description, contactnr, sendfrom_addressnr, currencynr, enteredby_empnr, billing_addressnr, reinders_relationnr, relationnr, delivery_addressnr) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) (156ms)
2012-02-09 10:33:39,914 #24923737[C26156]: executeUpdate: INSERT INTO sellorderline (sellorderlinenr, force_fill, seqnr, backorder_amount, outlets, managestock, unmanagedamount, lazylock, price_per_unit, dwhmodified, delivery_index, comment, unbookableamount, dwhby, manual_price, reduction, backord_selllinenr, batchtype, standversionnr, sellordernr, articlenr) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) (42818ms)
2012-02-09 10:34:15,514 #24923737[C26156]: executeUpdate: INSERT INTO sellorderline (sellorderlinenr, force_fill, seqnr, backorder_amount, outlets, managestock, unmanagedamount, lazylock, price_per_unit, dwhmodified, delivery_index, comment, unbookableamount, dwhby, manual_price, reduction, backord_selllinenr, batchtype, standversionnr, sellordernr, articlenr) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) (35429ms)
2012-02-09 10:34:16,200 #6884682[C26156]: executeUpdate: update batch set batchnr = batchnr where batchnr=935021 (31ms)

2012-02-09 10:34:16,294 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (31ms)
2012-02-09 10:34:16,325 #19730547[C19730547]: commit()

2012-02-09 10:34:59,091 #26795305[C26156]: executeUpdate: insert into batchsellorderline(batchselllinenr,batchnr,sellorderlinenr,amount,dwhmodified,dwhby) values(?,?,?,?,?,?) (42703ms)

2012-02-09 10:34:59,325 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (16ms)
2012-02-09 10:34:59,356 #19730547[C19730547]: commit()

2012-02-09 10:34:59,497 #22865832[C26156]: executeUpdate: insert into article_stock_mutation(article_stock_mutationnr, articlenr, batchtypenr, storage_domainnr, amount, description, source_id, source_fk) values(1069,14545,1,1,-1,null,'SOL',12781578) (125ms)
2012-02-09 10:34:59,528 #29963414[C26156]: executeUpdate: update article_stock set amount = amount + -1 where article_stocknr = 277374 (16ms)
2012-02-09 10:34:59,840 #10253075[C26156]: executeUpdate: update batch set batchnr = batchnr where batchnr=942069 (31ms)

2012-02-09 10:34:59,902 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (0ms)
2012-02-09 10:34:59,918 #19730547[C19730547]: commit()

2012-02-09 10:35:32,878 #26795305[C26156]: executeUpdate: insert into batchsellorderline(batchselllinenr,batchnr,sellorderlinenr,amount,dwhmodified,dwhby) values(?,?,?,?,?,?) (32898ms)

22012-02-09 10:35:33,096 #7072651[C19730547]: executeUpdate: UPDATE sequence SET seq_count = seq_count + ? WHERE seq_name = ? (31ms)
012-02-09 10:35:33,128 #19730547[C19730547]: commit()

2012-02-09 10:35:33,221 #7962411[C26156]: executeUpdate: insert into article_stock_mutation(article_stock_mutationnr, articlenr, batchtypenr, storage_domainnr, amount, description, source_id, source_fk) values(1070,16637,51529,1,-1,null,'SOL',12781577) (62ms)
2012-02-09 10:35:33,284 #12037517[C26156]: executeUpdate: update article_stock set amount = amount + -1 where article_stocknr = 928925 (47ms)
2012-02-09 10:35:39,529 #29264254[C26156]: executeUpdate: UPDATE ws_order SET sellordernr = ?, dwhmodified = ?, sellorder_status = ? WHERE (order_id = ?) (78ms)



I've also collected the whole EclipseLink logging. A simple point to pick up would be the "UPDATE ws_order"...

[EL Finest]: 2012-02-09 10:31:02.778--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=javax.persistence.jdbc.user; value=informix
[EL Finest]: 2012-02-09 10:31:02.794--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=javax.persistence.jdbc.password; value=xxxxxx
[EL Finest]: 2012-02-09 10:31:03.354--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.target-database; value=nl.reinders.jdbc.InformixPlatform
[EL Finest]: 2012-02-09 10:31:03.354--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=javax.persistence.jdbc.driver; value=nl.reinders.jdbc.ReindersInformixAndLoggingDriver
[EL Finest]: 2012-02-09 10:31:03.354--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=javax.persistence.jdbc.url; value=jdbc:reinders:com.informix.jdbc.IfxDriver#jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8
[EL Finest]: 2012-02-09 10:31:03.354--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.jdbc.sequence-connection-pool; value=true
[EL Finest]: 2012-02-09 10:31:03.619--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.cache.shared.default; value=false
[EL Finest]: 2012-02-09 10:31:03.619--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.jdbc.native-sql; value=true
[EL Finest]: 2012-02-09 10:31:03.619--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.jdbc.cache-statements; value=true
[EL Finest]: 2012-02-09 10:31:03.619--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--property=eclipselink.allow-zero-id; value=true
[EL Info]: 2012-02-09 10:31:03.619--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--EclipseLink, version: Eclipse Persistence Services - 2.0.2.v20100323-r6872
[EL Config]: 2012-02-09 10:31:03.65--ServerSession(5200460)--Connection(33380905)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--connecting(DatabaseLogin(
[EL Config]: 2012-02-09 10:31:03.744--ServerSession(5200460)--Connection(24543166)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Connected: jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8
[EL Config]: 2012-02-09 10:31:03.744--ServerSession(5200460)--Connection(12365668)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--connecting(DatabaseLogin(
[EL Config]: 2012-02-09 10:31:03.775--ServerSession(5200460)--Connection(19774731)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Connected: jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8
[EL Config]: 2012-02-09 10:31:03.806--ServerSession(5200460)--Connection(29844194)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--connecting(DatabaseLogin(
[EL Config]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Connection(13412205)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Connected: jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequencing connected, state is Preallocation_Transaction_Accessor_State
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence oidnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence webordersnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellorderrangenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence producttypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence currencynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articletypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationsegmentnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellorderlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationframenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_group_article_nr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence deliverylinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence categorynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_inventorynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchtypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stocksnapshotentrynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchtransferlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_deliverylinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_paymentenginenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence licensenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskarticlekeywordnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstandcatnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationpricerulenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence calendarnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_articlenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence catalogentrynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articlenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence permissionnodenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standareanr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_articletype_averagenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchbuyordlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_outputlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence task_articlenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationgroup_articletypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_articletypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence rollentodonr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellorder_in_sellordernr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence wsaffiliatepricerulenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence buyorder_billnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchselllinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articlepricegroupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstand2catnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_payment_typenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationtelnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence pdaordernr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstandnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence webordersitemsnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationgroup_articlenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articlekeywordnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellordernr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence contractnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence storage_domainnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stockcountlistitemnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationgroupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence languagenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_inventoryitemnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence orderitem_id: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence rollendonenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articletypegroupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstandtoframenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionordernr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence article_stocknr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence buyordernr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_deliverynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence timeframenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_productionorder_activitynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence btwnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standversionnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskfollowupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standtypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence contactnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellorderline_retournr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationgroupstandnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standassignnr: preallocation size 10
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence type: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence buyorder_billlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskprojectnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationframecompositionnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stocksnapshotnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationgroupeannr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence deliverynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence wsreferernr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_activitynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence order_coupon_nr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationversionnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence article_stock_mutationnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence contractpaymentnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_inputlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskprioritynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence tablename: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationsalenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchtransfernr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license2countrynr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence edifactordersitemsnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence catalognr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence addressnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence retournr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_inventoryordernr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence eanrangenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence contractpaymentlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchcodenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license2countrygroupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence article2articlekeywordnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence storagenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstocknr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articlekeyword_translationnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence rollentodolinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence countrycode2countrygroupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence id: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskarticlestatusnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stockcountlistnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence retourlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence edifactordersnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence contacttelnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stockcountmutationnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence wsaffiliatenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence translationnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence employeenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence guid: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence tasknr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence licensegroupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence taskstatusnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence translation2nr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence productionorder_linenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence licensegrouparticletypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence order_id: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchcountnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellexpectlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence stockcountnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence batchcreditnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_payment_detailnr: preallocation size 25
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence countrygroupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence pdaorderlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence groupnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_paymentnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence countrycodenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationstandtypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relation_stand_exceptionnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence messagenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence rollendonelinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence reservationnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence articleusesarticlenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence license_payment_printednr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence relationaliasnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sellexpectnr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence sleevestypenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence buyorderlinenr: preallocation size 1
[EL Finest]: 2012-02-09 10:31:03.853--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--sequence standmaterialnr: preallocation size 1
[EL Info]: 2012-02-09 10:31:04.242--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--reinders_url=jdbc:reinders:com.informix.jdbc.IfxDriver#jdbc:informix-sqli://localhost:9088/reinders:INFORMIXSERVER=ol_informix;DB_LOCALE=en_us.utf8_user=informix login successful
[EL Finer]: 2012-02-09 10:31:04.32--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Grouppermissions_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.32--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Weborders_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.32--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Sellorderrange_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Producttype_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Currency_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Articletype_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationSegment_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VRelationArticle_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Sellorderline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationframe_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.LicenseGroupArticle_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Deliveryline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationcat_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VRelationContactinfo_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationInventory_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchtype_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StocksnapshotEntry_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchtransferline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ProductionorderDeliveryline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.LicensePaymentengineNone_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.335--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.License_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Task2Articlekeyword_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationstandCat_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationPricerule_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Calendar_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationArticle_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Catalogentry_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Sellordercat_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Article_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Permissionnode_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StandArea_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batch_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationArticletypeAverage_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchbuyorderline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ProductionorderOutputline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.TaskArticle_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationgroupArticletype_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationArticletype_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.351--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Rollentodo_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Addresstype_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.SellorderInSellorder_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.WsAffiliatePricerule_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.BuyorderBill_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relation_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchsellorderline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ArticlePricegroup_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VArticle_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationstandToCat_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.LicensePaymentType_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationtel_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Pdaorder_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationstand_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VStandversion_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.366--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Webordersitems_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationgroupArticle_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Articlekeyword_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Sellorder_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Contract_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.TSellstandrefill_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StorageDomain_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StockcountListitem_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationgroup_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Language_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationInventoryitem_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.WsOrderitem_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.382--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Rollendone_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ArticletypeGroup_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationstandToFrame_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Productionorder_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ArticleStock_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Sellorder2Cat_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Catsubscription_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Article2Storage_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Buyorder_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ProductionorderDelivery_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Timeframe_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Webimagedownload_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationProductionorderActivity_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Btwcategory_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Employee2Group_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Standversion_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Taskfollowup_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.397--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.StandType_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Contact_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.TSellstandinifill_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Producttype2Contract_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.SellorderlineRetour_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Stand_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationgroupstand_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Standassign_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Delivery2Buyorder_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Websort_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.BuyorderBillline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Taskproject_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationframeComposition_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Stocksnapshot_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.413--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationgroupean_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Delivery_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.WsReferer_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ProductionorderActivity_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.WsOrderCoupon_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VStandcurfut_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Weblightbox_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.TBatch_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relationversion_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ArticleStockMutation_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Contractpayment_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.ProductionorderInputline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.475--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Webdisclaimer_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Taskpriority_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Articlealias_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Cleaneduntil_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Relstandsale_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchtransfer_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.License2Country_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Edifactordersitems_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Catalog_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Address_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.VStandassignlastcurfut_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Retour_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.RelationInventoryorder_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Eanrange_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Contractpaymentline_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Batchcode_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.License2Countrygroup_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.TSellmoneycalc_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.491--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.Article2Articlekeyword_] not found during initialization.
[EL Finer]: 2012-02-09 10:31:04.506--ServerSession(5200460)--Thread(Thread[SwingWorker-pool-2-thread-1,5,main])--Canonical Metamodel class [nl.reinders.bm.
Re: missing commit (workaround) [message #800163 is a reply to message #797535] Thu, 16 February 2012 19:25 Go to previous messageGo to next message
Chris Delahunt is currently offline Chris DelahuntFriend
Messages: 1389
Registered: July 2009
Senior Member
Hello Tom,

As bug 358287 seems to have to do with weaving, I would first suggest seeing if disabling the agent/weaving affects this issue. If it still occurs, then try your test case on the latest EclipseLink version without weaving. This is the easiest way to progress since it quickly rules out any of the changes made since 2.0.2 as resolving your issue. If it does resolve the issue, then its a matter of seeing when the change was made and if it is in a version prior to bug 358287.

Otherwise, it will take debugging or a small reproducable test case issolating the issue to get to the bottom of it. Looking at the recent code though, I am not sure how it can be avoiding the commit statement without marking it for rollback.

Best Regards,
Chris
Re: missing commit (revisiting) [message #818893 is a reply to message #800163] Mon, 12 March 2012 08:48 Go to previous messageGo to next message
Tom Eugelink is currently offline Tom EugelinkFriend
Messages: 817
Registered: July 2009
Senior Member
I'm revisiting this thread because I have similar issues in other places in the application. (In fact I have problems with the unclosed transactions blocking other transactions.)

ATM I've disabled weaving (no -javaagent), using Eclipselink 2.3.0 on Java 1.6.0_17, but the commit still is not occurring. I've added an explicit commit to my EM wrapper on every commit call as a work around. (And vice versa on rollback.)

createNativeQuery("commit").executeUpdate();

I've recaptured the log (http://aeryn.tbee.org/stuff/missingcommit2.txt) mixing Eclipselink's output with my JDBC logger.
Note that the commit on line 974 is NOT done by Eclipselink, but by my work around.
Is there any way I can provide you with data, beside the detailed logs, that can help determine why there is no commit executed?

Is there some kind of condition being checked in the commit method of EL's transaction whether or not to do a commit?
If so, can I get a snapshot build with that condition disabled (aka commit always, like my patch)?

Tom
Re: missing commit (revisiting) [message #824351 is a reply to message #818893] Mon, 19 March 2012 15:11 Go to previous message
Tom Eugelink is currently offline Tom EugelinkFriend
Messages: 817
Registered: July 2009
Senior Member
I've upgraded to EL 2.3.3-M1 losing the ability to weave using -javaagent because of the class loader issues.

It seems that this version of EL does do the commit. I'll keep the extra commit in the wrapper for now, until I have time to properly test it.

Tom
Previous Topic:MySQLIntegrityConstraintViolationException when updating @ManyToMany @JoinTable @OrderColumn
Next Topic:application freeze
Goto Forum:
  


Current Time: Sat Apr 20 03:03:33 GMT 2024

Powered by FUDForum. Page generated in 0.03668 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top