[equinox-dev] OSGi, RMI, stubs, and Javassist

2008-03-11 Thread Steve Marotta
Hi, I am fairly new to OSGi and Equinox, and I am having some issues. I am working on a project that began as Java Classic and became OSGi when I needed to incorporate OSGi bundles into this project. Several capabilities that once worked in Java Classic now no longer work. In particular, I am

[equinox-dev] equinox standalone problem

2008-03-11 Thread Karl Pauls
Hi, I have a problem running equinox standalone. Basically, what I am trying to do is to run equinox without a console. The set-up is as follows: equinox/ configuration/ config.ini plugins/ equinox jars ../configuration/config.ini osgi.bundles=a set of bundles that use their own

Fw: [equinox-dev] [prov] ui projects have fixes in HEAD good for I-rebuild

2008-03-11 Thread Susan Franklin McCourt
Pascal suggested I go ahead and tag and update the map file. So I did. susan - Forwarded by Susan Franklin McCourt/Beaverton/IBM on 03/11/2008 02:41 PM -

Re: [equinox-dev] equinox standalone problem

2008-03-11 Thread Thomas Watson
Hi Karl, You are running into bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=215730 With 3.4 M5 you can set the configuration property osgi.framework.activeThreadType=normal to force a non-daemon thread be started so that the VM does not exit when the framework is running. The reason you

Re: [equinox-dev] equinox standalone problem

2008-03-11 Thread Karl Pauls
Hi Karl, You are running into bug https://bugs.eclipse.org/bugs/show_bug.cgi?id=215730 :-) With 3.4 M5 you can set the configuration property osgi.framework.activeThreadType=normal to force a non-daemon thread be started so that the VM does not exit when the framework is running. The

Re: [equinox-dev] equinox standalone problem

2008-03-11 Thread Thomas Watson
Are you certain you are using the Thread.setDaemon(false) method? If you are not then the threads will inherit their daemon status from the invoking thread. If this happens to be one of the daemon framework threads then your bundle threads will be daemon also. One quick way to find out is to

Re: [equinox-dev] equinox standalone problem

2008-03-11 Thread Karl Pauls
On Tue, Mar 11, 2008 at 11:34 PM, Thomas Watson [EMAIL PROTECTED] wrote: Are you certain you are using the Thread.setDaemon(false) method? If you are not then the threads will inherit their daemon status from the invoking thread. If this happens to be one of the daemon framework threads then