Re: Package private member access between JARs and WARs

2000-05-05 Thread Eric Richardson
Hi Gordon, This code is valid. Both ctors and the setName method have default access which means they can be called by other classes in the same package. The only thing that's off limits is the private var. So I agree and this is strange unless I'm missing something in the EJB spec. Maybe someone

Re: 'shutdown' method not found when running shutdown.jar

2000-05-05 Thread Magnus Stenman
Title: BUG: 'shutdown' method not found when running shutdown.jar Hi, shutdown.jar should have been removed from the distro, it was left there by mistake. The jar to use is admin.jar (same syntax but append -shutdown).   Hope it helps.   /Magnus Stenman, the Orion team     - Original Me

Specifying application deployment directory

2000-05-05 Thread Gordon Tyler
Title: Specifying application deployment directory When one specifies a deployment directory in server.xml for an application, the orion-ejb-jar.xml file which is placed in that directory does not propogate the values of location attributes of entity-deployment or session-deployment tags from

BUG: 'shutdown' method not found when running shutdown.jar

2000-05-05 Thread Gordon Tyler
Title: BUG: 'shutdown' method not found when running shutdown.jar This bug is new in version 1.0RC1. When executing the following to shudown the orion server running on my machine: java -jar shutdown.jar ormi://localhost admin *** shutdown I get the following error: Error: java.lang.No

Package private member access between JARs and WARs

2000-05-05 Thread Gordon Tyler
Title: Package private member access between JARs and WARs I'm having a problem with Orion that I don't get with the Sun J2EE RI, regarding the use of package private members in one class by another class in the same package (i.e. com.x.y) but in different JARs or WARs. Say that I have a valu