Re: Application startup time

2014-05-08 Thread Ingenieurbüro Birnfeld - Oliver Birnfeld
Hi, What? Already May? ... ;-) Sorry for my very late response. I was involved in some non-WO projects and totally lost focus. AFAIK, NSLegacyBundle is not open sourced so we had to fix it by re-implementing setClassNames with Javassist... if you're interested, I can post the fix. Yes, I

Re: Application startup time

2014-05-08 Thread Alexis Tual
Hi, sorry for the late response, here’s the fix attached. Apply the patch in your Application class : public static void main(String[] argv) { NSLegacyBundleMonkeyPatch.apply(); WOInject.init(com.myapp.Application, argv); } I haven’t tested it without woinject, that may

Re: Application startup time

2014-05-02 Thread Ângelo Andrade Cirino
Hi Oliver, Did you manage to solve your problem? I agree that an article on embedded WO would be delightful to read, please let us know if you decide to write it. Good luck, Angelo Em 27/03/2013, à(s) 13:03, Ingenieurbüro Birnfeld - Oliver Birnfeld o.birnf...@ingenieurbuero-birnfeld.de

Re: Application startup time

2014-04-28 Thread Paul Dunkler
on large array (thanks jvisualvm) AFAIK, NSLegacyBundle is not open sourced so we had to fix it by re-implementing setClassNames with Javassist... if you're interested, I can post the fix. would love to get the fix. Would be nice to get a faster application startup time as we are dealing

Re: Application startup time

2013-03-27 Thread Ingenieurbüro Birnfeld - Oliver Birnfeld
Hi, jstack does not show that the app is waiting for something special, subsequent calls of jstack during the delay do always show different states. Mostly I see calls to java.lang.ClassLoader.* and java.util.zip.Inflater.*. I guess, the app is loading the framework classes from the

Application startup time

2013-03-26 Thread Ingenieurbüro Birnfeld - Oliver Birnfeld
Dear list members, First of all a little introduction of myself. I'm new to the list and in fact even new to WO, even though I made some little projects with WO about ten years ago. Since then my focus is the development of embedded systems. In the past I was used to processors with really

Re: Application startup time

2013-03-26 Thread Jesse Tayler
you go for it! I'd love to see a post. WO has always had poor startup performance, so I'm not certain about your troubles, but I love the idea! On Mar 26, 2013, at 7:45 AM, Ingenieurbüro Birnfeld - Oliver Birnfeld o.birnf...@ingenieurbuero-birnfeld.de wrote: Dear list members, First

Re: Application startup time

2013-03-26 Thread Chuck Hill
Hi Oliver, On 2013-03-26, at 4:45 AM, Ingenieurbüro Birnfeld - Oliver Birnfeld wrote: Dear list members, First of all a little introduction of myself. I'm new to the list and in fact even new to WO, even though I made some little projects with WO about ten years ago. Welcome back! :-)

Re: Application startup time

2013-03-26 Thread Ingenieurbüro Birnfeld - Oliver Birnfeld
Hi Chuck, Thank you for your suggestions, I will give jstack a try when I'm back in office. And yes, you are right, the application is somehow heath-related. It's some kind of self-service automat for reserved medicals if clients are not able to pick them up before closing time. Oliver