Re: Tomcat and CORBA

2005-01-14 Thread Tim Funk
Yes, you can create your own threads. Be aware that Tomcat may not shut down properly if your threads are non-daemon. (since the JVM does not exit while a non-daemon is running) -Tim Andreas Vombach wrote: I would like to have a servlet which offers a CORBA interface. An applet for example

Tomcat and CORBA

2005-01-13 Thread Andreas Vombach
I would like to have a servlet which offers a CORBA interface. An applet for example could then read the IOR string of the orb and connect to the interface. Unfortunately instantiating servant objects seems to block the server so I had to spawn of threads from a servlet. (??) As far as I read a