SV: user manager, principals shutdown

2002-01-10 Thread Magnus Rydin
Did you remove the permission for rmi:login? By default this goes something like: group name=users descriptionusers/description permission name=rmi:login / /group (the default administrator is also part of users) or

RE: does orionsupport startup and shut down classes

2002-01-10 Thread The elephantwalker
See answer at www.elephantwalker.com/rfa?id=301 Regards, the elephantwalker -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of meera krishnaraja bhatSent: Wednesday, January 09, 2002 5:03 PMTo: Orion-InterestSubject: does orionsupport

Re: string mappings

2002-01-10 Thread Peter Beck
Just create or alter the database table by hand. You can then assign whatever length to you varchar fields. We have disabled the autocreate-tables option in orion-application.xml and create all our tables by hand. hope that helps, Peter Morten Wilken wrote: hi all, i have a situation where i

RE: Distributing EJBs

2002-01-10 Thread Carroll, Jim
I should have mentioned that I tried this; it doesn't help. Further investigation reveals that Orion seems to save the Context that is first created in a Map using the application name as a key. Closing the context after use doesn't seem to remove it from this map. If you create a new

RE: App server debugging -- HELP

2002-01-10 Thread Carroll, Jim
I'm starting to use 'kill -3' but that again only shows the parent thread. kill -3 should dump a stack trace of all of the threads.

Re: jdbc problems

2002-01-10 Thread Erwin Alberto
You closed the Statement object before you closed the ResultSet object. Check your code and make sure that you closed the ResultSet object first before closing the Statement. This is usually found in the finally clause of your JDBC code. --- JoseMa [EMAIL PROTECTED] wrote: Hi, I've a

ORMI-HTTP Tunneling through firewall with proxy server

2002-01-10 Thread Frederick,Frank
Has anyone had any luck accessing EJBs using ORMI-HTTP tunneling when a firewall and a proxy server are being used? I've tried setting the system properties for proxySet, proxyHost, and proxyPort with no luck. After a long period of time, the client application exits with the following

Re: Simple question re caching/pooling of BMP Entity Beans

2002-01-10 Thread Curt Smith
My opinion would add; if not pooled OR not exclusive owner of data then ejbLoad exclusive owner is an orion-ejb-jar.xml propert. The default is, exclusively owns the data. curt Sergey G. Aslanov wrote: Hi Geoff Loading of beans have these stages: 1. calling ejbFindBy... to get the

Re: question about ip allocation

2002-01-10 Thread Dmitriy Serebryakov
It seems to me what IIS have some bug or intend to work wrongly with Java. If www service of IIS shutted down there are no problem to have working third party web servers (two instances of orion server) on same port but different IP addresses on same Ethernet interface. Consider you options:

RE: Simple question re caching/pooling of BMP Entity Beans

2002-01-10 Thread Geoff Soutter
Hi Sergey, Thanks for the reply. I didn't explain it very clearly did I? What I meant was: However, it appears that it goes to the database (i.e. calls _ejbLoad_ in the Entity Bean's implementation) for every call to findByPrimaryKey, regardless of whether it has previously read the instance

Name-based Virtual Hosts

2002-01-10 Thread Mark A. Richman
How can I configure name-based virtual hosts (vhosts) in Orion? I have one IP address that I need to host multiple domains on. Thanks, Mark A. Richman http://www.markrichman.com

Re: Simple question re caching/pooling of BMP Entity Beans

2002-01-10 Thread Greg Matthews
pooling definitely does work for BMP. couple of things i found that you might want to check off. 1. implement an isModified method public boolean isModified() { return false; } which orion will check to determine if ejbLoad needs to be called. we're using the value object pattern to the

Re: Simple question re caching/pooling of BMP Entity Beans

2002-01-10 Thread Stephen Davidson
Hi Guys. Having just finished solving some headaches on this topic, my comment is, what are you guys doing differently from me? One of our ex-guys was nice enough to write a mess of code to update data that an entity EJB used/stored, but rather than updating the EJB, the database was updated

ORMI-HTTP Tunneling through firewall with proxy server

2002-01-10 Thread Harini P
Hi, I have a similar problem but with a simple applet connecting to the JMS Server using ORMI-HTTP tunneling when a firewall and a proxyserver are used the client application times out when it calls start on topicConnection. Any ideas why is this happening? --- Frederick,Frank [EMAIL PROTECTED]

RE: Simple question re caching/pooling of BMP Entity Beans

2002-01-10 Thread Geoff Soutter
Hmm. Seems I am really getting myself confused. :-). I think I've got it now... I'm mistaking the db call in ejbFindByPrimaryKey with the db call in ejbLoad. Doh. So, the first time I call findByPrimaryKey, Orion calls ejbFindByPrimaryKey which goes to the database basically only to confirm the

Anyone got old orionsupport sample application client / scheduler?

2002-01-10 Thread Geoff Soutter
You can see it described in googles cache http://www.google.com/search?q=cache:4nkQslt9AjsC:www.orionsupport.com/a rticles/appclient.html+orion+application+clienthl=en If anyone has the source jar file, I'd really appreciate a copy! Cheers Geoff