retrieving specific version of Orion

2001-05-21 Thread Vidur Dhanda
Is it possible to retrieve a specific version of Orion with autoupdate or by any other means. I need 1.5.0 and the latest is 1.5.1. Thanks. -- Vidur Dhanda Active Solutions tel: 617/566-1252 cell: 617/821-7115 [EMAIL PROTECTED] www.active-solutions-inc.com

Re: Orin cpu usage ???

2001-05-21 Thread Mark Kettner
Eddie wrote: [EMAIL PROTECTED]">Thanks peter,The javac is indeed linked to .java_wrapper, but to me it's not clear what Ishould change such that it works in classic mode. Neither do I find anythingabout that in the man pages. Doesn't anyone knows how to executejava -classic .. on a Linux box ??

RE: java.util.ConcurrentModificationException

2001-05-21 Thread Arun Jayaprakash
Hello everybody, > How are you trying to remove all of the attributes from > the session, and > could you not just call session.invalidate() ? I have a class that performs database-related functions. The object of this class is saved in the session object. Now when a user logouts, I want to clos

RE: java.util.ConcurrentModificationException

2001-05-21 Thread Ted R. Rice
Title: RE: java.util.ConcurrentModificationException A ConcurrentModificationException is thrown by a non-synchronized Collection when more than one thread tries to modify the Collection. Try synchronizing the Collection or simply calling the session.invalidate() as suggested in previou

Re: Update to 1.5.0 help please ?

2001-05-21 Thread Tim Endres
Did you remove the application deployment directory for your app? This is the first thing I do when stubs are misbehaving. tim. > I just updated to 1.5.0 as well, and everytime I start Orion it complains > about a wrapper that I can't find anymore on my machine > How do I solve this ?? (I compile

RE: Orin cpu usage ??? ->>> HANGS ->> please some help!!

2001-05-21 Thread cybermaster
I'll attach the modified version of the wrapper file - a while ago I helped a collegue to set this up to get a profiler and analyzer (OptimizeIt) to work. So there may be some other changes in it - hope this helps ... In your example, ttype=green_threads and not 'native' --peter -O

RE: Update to 1.5.0 help please ?

2001-05-21 Thread elephantwalker
Eddy, Check your update, you could have some mismatched files. The autoupdate is not bullet-proof. I have seen no problems with 1.5.0. I believe that the is a hint on the interest group in the last day about how to get a good autoupdate. Regards, the elephantwalker -Original Message-

Update to 1.5.0 help please ?

2001-05-21 Thread Eddie
I just updated to 1.5.0 as well, and everytime I start Orion it complains about a wrapper that I can't find anymore on my machine How do I solve this ?? (I compiled all the source again, and it doesn't give me any errors !!). BTW: when I start version 1.4.7 again, I don't have any problems ??!!!

Re: HTTPS-RMI ??

2001-05-21 Thread Bernard Sauterel
I made a successful implementation. I may needs your config to help you. On Ven, 18 mai 2001, Stefan Wendel <[EMAIL PROTECTED]> wrote: >Hi eveybody, > >anybody out there who ever set up HTTPS over RMI? >Seems to me that the most naive way (setting up >RMI over HTTP, install SSL for orion) is not

RE: Host header

2001-05-21 Thread Frank Eggink
Aren't you refering to virtual hosting? If so, check the docs regarding the default-website.xml. That's the file containing the settings from the top of my hat. FE On Monday, May 21, 2001 3:53 PM, Patrik Andersson [SMTP:[EMAIL PROTECTED]] wrote: > Hi, > > I was just wondering how I set up two

Re: Orin cpu usage ??? ->>> HANGS ->> please some help!!

2001-05-21 Thread Eddie
Hi cybermaster, In both the wrapper files If find something like below. What shall I change ?? I suppose the _JMS_THREADS_TYPE=native.. ! --- if [ "${vmtype}" = "classic" ]; then ttype=green_threads LD_BIND_NOW=yes export LD_BIND_NOW _JVM_THREADS_TYPE=green_threads exp

Re: Orion 1.5.0

2001-05-21 Thread Robert S. Sfeir
I got that too, and it's because the stupid autoupdater doesn't get all the files. here is what I had to do. 1- Move all the .jar files in an oldjar dir except autoupdate.jar and tools.jar 2- change server.xml and application.xml to server and application.old 3- Run the autoupdate 4- modify the

Re: finderException in home interface of CMP ??

2001-05-21 Thread Eddie
I understand your point and I completely agree that it's illogical. That's why I started testing around and found out that it's not necessary to throw a finderexception in case of a "return collection". Like I see it now: I finderException is never thrown in case of a collection as it always retur

Orion and Security (2)

2001-05-21 Thread Doug Pham
Hi All, I posted an email about Orion and Security a few days ago and got some great response. Let me go into a little more details and see if what I am doing will work accordingly? 1. The security model I need is to all a user to log in once but can use multiple applications within tha

Query Datasource Info

2001-05-21 Thread cmp user
Hi I am trying to query datasource information using the following C:\temp\orion>java -jar admin.jar ormi://localhost:88 admin welcome -dataSourceInfo I get the following errors Error: javax.naming.NamingException: Lookup error: java.io.StreamCorruptedExcept ion: Caught EOFException while readin

RE: Orin cpu usage ??? ->>> HANGS ->> please some help!!

2001-05-21 Thread cybermaster
Did max-instances solve the problem? Anyway, in some applications on Linux/Unix you have to change #DEFAULT_THREADS_FLAG=green to: DEFAULT_THREADS_FLAG=native in two places relative to JAVA_HOME: ./bin/.java_wrapper and jre/bin/.java_wrapper. --peter -Original Message- From

Re: finderException in home interface of CMP ??

2001-05-21 Thread Joni Suominen
Joni Suominen wrote: > > Eddie wrote: > > > > To me it's a bit unclear when I need to throw a FinderException in the > > finder methods in the Home interface with CMP. ? > > Now I only throw a finderException in case of > > - the findByPrimareyKey (otherwise orion complaints), > > - and in case o

Re: finderException in home interface of CMP ??

2001-05-21 Thread Joni Suominen
Eddie wrote: > > To me it's a bit unclear when I need to throw a FinderException in the > finder methods in the Home interface with CMP. ? > Now I only throw a finderException in case of > - the findByPrimareyKey (otherwise orion complaints), > - and in case of a single return object (orion doesn

Re: SSL Question: Possibly Offtopic

2001-05-21 Thread Markus Holmberg
AFAIK, it is not possible. The certificate needs to be sent out before the web server has had a chance to decide which certificate is appropriate (based on the HTTP Host header, which comes in after the encryption already has started). Markus On Mon, May 21, 2001 at 08:56:50AM -0500, John McGow

Re: SSL Question: Possibly Offtopic

2001-05-21 Thread James Fairbairn
> Is there some SSL limitation that only allows 1 Certificate per IP > address? Yes, or at least that's my understanding. The SSL negotiation is done before the Host: header can be sent. James

Orion 1.5.0

2001-05-21 Thread James Fairbairn
Just updated to 1.5.0, and now I get a NoSuchMethodError as follows: Exception in thread "main" java.lang.NoSuchMethodError: org.xml.sax.Attributes: method getQName(I)Ljava/lang/String; not found at org.apache.crimson.tree.AttributeSet.createAttributeSet2(AttributeSet .java:174) a

Upgrading from 1.3.8 to 1.4.5 - (de-)serializing errors

2001-05-21 Thread Jonas Lundberg
We have encountered some serious problems when upgrading from Orion 1.3.8 to 1.4.5.   The problems occurs when our business layer is about to return data to the presentation layer. The data is fetched in the datalayer via a callable statement. The callable statement and the connection is c

Re: Orin cpu usage ???

2001-05-21 Thread Eddie
Thanks travis, I will play around with that. Eddie - Original Message - From: tlk <[EMAIL PROTECTED]> To: Orion-Interest <[EMAIL PROTECTED]> Sent: Monday, May 21, 2001 3:46 PM Subject: Re: Orin cpu usage ??? > Hi Eddie, > > You may want to try profiling with -nojit specified. > Remot

finderException in home interface of CMP ??

2001-05-21 Thread Eddie
To me it's a bit unclear when I need to throw a FinderException in the finder methods in the Home interface with CMP. ? Now I only throw a finderException in case of - the findByPrimareyKey (otherwise orion complaints), - and in case of a single return object (orion doesn't complain, but gives "st

RE: Object as a parameter in a CMP-Finder

2001-05-21 Thread Raymond Schulz
Title: RE: Object as a parameter in a CMP-Finder Hi again, in the documentation of the orion-ejb-jar.xml-Descriptor i found following line, where an array is declared as a finder parameter: int[] But how i can access the single integer fields of this array in the query? In this way? f

Orion 1.5.0 and erronous home interfaces ?

2001-05-21 Thread Udo Christ
Hi, i just got 1.5.0 when autoupdating orion. This version suddenly has problems compiling the home interfaces due to missing transaction instance variables in the generated code. The application im trying to deploy was deploying/working under 1.4.8. Anybody else encountered that sor

Host header

2001-05-21 Thread Patrik Andersson
Title: Host header Hi, I was just wondering how I set up two different web applications (in different applications) to use the HTTP Host header to share ip address aswell as port. ie: www.acme.org -> the-host:80 www.gunnar.se -> the-host:80

SSL Question: Possibly Offtopic

2001-05-21 Thread John McGowan
Is it possible to set up two different sites using Orion with only 1 IP address, and set up SSL for each of them. I didn't have any problems setting up the two non-secure virtual hosts, but when I tried to setup up SSL virtual hosts, I couldn't get the server to send the right Certificates. Is t

subscribe orion-interest

2001-05-21 Thread Satish Kale
subscribe orion-interest

RE: simple questions

2001-05-21 Thread Kemp Randy-W18971
Sure. You just need to be aware of what the tool does and what Jbuilder does, and separate the functionality. Fortunately, a great tutorial exists for how to use the tool with Orion and Oracle (notice you could substitute any database, such as instantdb, mysql, postgresql, sapdb, firebird, et

Re: java.util.ConcurrentModificationException

2001-05-21 Thread Johan Fredriksson
I suppose you use session.invalidate(); and then try to remove any values from the session? Well, you can't. The session is marked for deletion and therefore you get the ConcurrentModificationException. session.invalidate() should be enough... Johan - Original Message - From: "Arun Ja

Re: Orin cpu usage ???

2001-05-21 Thread Lachezar Dobrev
> Thanks peter, > > The javac is indeed linked to .java_wrapper, but to me it's not clear what I > should change such that it works in classic mode. Neither do I find anything > about that in the man pages. Doesn't anyone knows how to execute > java -classic .. on a Linux box ?? > > Eddie Not

RE: java.util.ConcurrentModificationException

2001-05-21 Thread Simon Knott
How are you trying to remove all of the attributes from the session, and could you not just call session.invalidate() ? This can occur if, for example, you get the attribute names out of the session in an enumeration, remove one of them from the session with a removeAttribute and then try and int

RE: PetStore - Session State in a Cluster

2001-05-21 Thread Marcel Schutte
My guess is you stumbled upon a mismatch between the servlet and jsp specifications: a container needs some way to decide when to replicate a session to a cluster. In Orion and Weblogic this is done when session.setAttribute() is called. This works fine for things like the SessionServlet. In jsp'

Re: Orin cpu usage ??? ->>> HANGS ->> please some help!!

2001-05-21 Thread Eddie
Thanks peter.. again :) I looked at it and it gives some more information. But I think I also have to play around witht he max-instances to control the number of bean instances, as I notices that other people had the same problem and solved it like that. Eddie - Original Message - From:

Re: Orin cpu usage ???

2001-05-21 Thread Eddie
Thanks peter, The javac is indeed linked to .java_wrapper, but to me it's not clear what I should change such that it works in classic mode. Neither do I find anything about that in the man pages. Doesn't anyone knows how to execute java -classic .. on a Linux box ?? Eddie - Original Messag

Object as a parameter in a CMP-Finder

2001-05-21 Thread Raymond Schulz
Title: Object as a parameter in a CMP-Finder Hi, is it possible to declare a java-Object as a finder parameter? The container should have access on this object by java-methods. For example I would like to do following in orion-ejb-jar.xml: ...             TarifBean    

PetStore - Session State in a Cluster

2001-05-21 Thread Christopher G. Chelliah
Hi, I have the (J2EE Blueprint) PetStore application clustered on two Orion instances running on the same machine. When I connect through the LoadBalancer, I can see my session state get replicated across the two nodes. When I kill the primary node, the load balancer automatically connects me

java.util.ConcurrentModificationException

2001-05-21 Thread Arun Jayaprakash
Hello everybody, I recently switched over from Apache Tomcat v3.2.1 to Orion v1.4.5. I deployed an application (that I had developed with Tomcat) using Orion and did the necessary configuring. The application works fine until the point when I logout. Tomcat never gave any trouble, but Orion keeps