ERCoreBusinessLogic preferences??

2015-02-24 Thread Theodore Petrosky
I have just implemented ERCoreBusinessLogic into my D2W app and I have a problem with ERCPrefer. I am looking at my Entity List page in this case a Person. So this is a List Person page. If I change the batchsize from the default size of 10 to 18 I see in the ERCPefer table: 4 | batchSize.List

Re: looong saveChanges in a background task

2015-02-24 Thread Samuel Pelletier
OC, If you have a large number of changes (insert, update and delete), the commit can take a long time in the database server, especially if your indexes does not fit in memory. You may help the database by using a more isolated connection setting and make sure there is plenty of ram and remove

Re: framework load order????

2015-02-24 Thread Theodore Petrosky
ok I got it. I was just slow!!! I needed to create a class in my Framework that extends ERXFrameworkPrincipal: -- package com.eltek.frameworkprincipal; import org.apache.log4j.Logger; import er.corebusinesslogic.ERCoreBusinessLogic; import er.extensions.ERXFrameworkPrincipal; publi

Re: "Did not receive any response from application. It is possible that the application does not exist, or that the requested url is incorrect"

2015-02-24 Thread Chuck Hill
I don't see that one very often. IIRC, it means that it sent the request to an instance and got a null response back. That probably means the app threw an exception either very early or very late in the R-R loop. Check the app logs for exceptions. Did an instance run out of memory? Check th

"Did not receive any response from application. It is possible that the application does not exist, or that the requested url is incorrect"

2015-02-24 Thread OC
Hello there, what the $subject means and who reports it? I've googled a bit before coming here, and found (a) it seems to be a Wonder error report (https://github.com/wocommunity/wonder/blob/master/Utilities/Adaptors/Adaptor/errors.h) (b) it seems to be quite common to see with Apple own applica

Re: maven.wocommunity.org is down

2015-02-24 Thread Patrick Seiferth
Hello, the repository is down again. Can you fix it please? Thanks in advance! Greetings, Patrick Am 27.01.15 um 18:11 schrieb Henrique Prange: > Hi Dennis, > > The repository is back up. Thanks for reporting the problem. > > Cheers, > > Henrique > >> On 27/01/2015, at 13:36, Dennis Bliefernicht

Re: looong saveChanges in a background task

2015-02-24 Thread Mark Wardle
I do this a lot when importing SNOMED-CT data (which is huge) but am afraid I import in batches and saveChanges and use a new editingContext for each batch. Mark > On 23 Feb 2015, at 18:43, OC wrote: > > Hello there, > > this time, my problem -- at least I hope so -- is going to be simple and

Re: framework load order????

2015-02-24 Thread Theodore Petrosky
OK, I created a BookingFrameworkPrincipal in com.eltek.frameworkprincipal my requires list: public final static Class REQUIRES[] = new Class[] {ERCoreBusinessLogic.class, ERXExtensions.class, ERDirectToWeb.class, ERJavaMail.class}; I added the principal to my build.properties: classes.dir = bi