Re: Class.newInstance() Fails with InstantiationException.

2002-02-05 Thread Converge
Please unsubscribe me - Original Message - From: Bill Winspur To: Orion-Interest Sent: February 06, 2002 4:53 AM Subject: Re: Class.newInstance() Fails with InstantiationException. Thank you Stephen. That nailed it. The problem was not so obvious to me.  

ATTENTION: Recovered Email Message

2002-02-05 Thread Postmaster
ATTENTION: This email was recovered from a crashed email server. The format may appear strange, but the message, in its entirety is included. There has been no attempt to filter the contents of this message, and therefore some undesirable email may get delivered that normally might not have.

ATTENTION: Recovered Email Message

2002-02-05 Thread Postmaster
ATTENTION: This email was recovered from a crashed email server. The format may appear strange, but the message, in its entirety is included. There has been no attempt to filter the contents of this message, and therefore some undesirable email may get delivered that normally might not have.

ATTENTION: Recovered Email Message

2002-02-05 Thread Postmaster
ATTENTION: This email was recovered from a crashed email server. The format may appear strange, but the message, in its entirety is included. There has been no attempt to filter the contents of this message, and therefore some undesirable email may get delivered that normally might not have.

Re: Class.newInstance() Fails with InstantiationException.

2002-02-05 Thread Bill Winspur
Thank you Stephen. That nailed it. The problem was not so obvious to me.   Although the API doc for Class.newInstance(), does not state it explicitly, you must code a no-args constructor into the class to instantiate it using newInstance(). Replacing my 1 arg constructor with a no-arg constr

OpenJMS and external JNDI

2002-02-05 Thread Daniel Rolnick
Has anyone successfully configured OpenJMS to bind the TopicConnectionFactory into the Orion JNDI name space? Essentially, I want to be able to lookup the TopicConnectionFactory using an RMIInitialContextFactory instead of the exolab RmiJndiInitialContextFactory. If so, what config files did y

Sendemi...???

2002-02-05 Thread Ezgi Bilir
Title: Yalnýz Kalma... Yalnýzlýktan sýkýldýnýz mý? Hepimiz zaman zaman bir dosta, bir sevgiliye ya da bir dert ortaðýna ihtiyaç duymuþuzdur deðil mi ? Peki ya o dostun sizlere bir click ötede olduðunu söylersem ne dersiniz? Þimdi sizler

OpenJMS and external JNDI

2002-02-05 Thread Daniel Rolnick
Has anyone successfully configured OpenJMS or Orion to cache the TopicConnectionFactory into the Orion JNDI name space? Essentially, I want to be able to lookup the TopicConnectionFactory using an RMIInitialContextFactory instead of the exolab RmiJndiInitialContextFactory. If so, what config f

Re: EJB Sharing between applications

2002-02-05 Thread Jorge Jimenez C
Thanks Jim.   Anyway, what's the specific sintax for declaring a remote location to find an EJB within orion-web.xml. I guess it might be the "location" attribute in the ejb-mapping tag with an external jndi reference. It is posible ?   JJ - Original Message - From: Carroll,

apache + orion

2002-02-05 Thread Justen Stepka
Hello, I recently started up Orion on 127.0.0.1:8090 with apache serving up the front end. I have the proxy service working great, but I would like to get Orion to answer all .jsp request similar to how I have php setup. Is this possible? Thanks in advance. Justen Stepka

Re: Class.newInstance() Fails with InstantiationException.

2002-02-05 Thread Stephen Davidson
hj (in this case, com.wynnon.appletChannel.test.EchoingPort) does have a no-arg constructor, right? In other words, Object obj = new EchoingPort() is legal? -Steve Bill Winspur wrote: > The echoing port never gets instantiated, the attempt to instantiate, by > invoking Class.newInstance()

Orion load balancing

2002-02-05 Thread Peter Peltonen
Hi, We are planning a production environment for a J2EE application and are now wondering what kind of loads Orion can handle, say in a 2 CPU Intel with 512M RAM system? How many concurrent sessions can a box like that handle? We probably need load balancing and clustering, so I'd like to kn

RE: EJB Sharing between applications

2002-02-05 Thread Carroll, Jim
If you search the archives you will find my writup on this. It is not possible from within an Orion J2EE container (either web or ejb). Not only that, it is not possible to call EJBs in another instance of the same application (that is, more than one other REMOTE instance - you can call ONE

RE: Class.newInstance() Fails with InstantiationException.

2002-02-05 Thread Cote, Robert
I don't really know squat about them, but this sounds like it may be a classloader issue (bug?).  What do you use when you're not on Orion? -Original Message-From: Bill Winspur [mailto:[EMAIL PROTECTED]]Sent: Monday, February 04, 2002 4:47 PMTo: Orion-InterestSubject: Class.n

EJB Sharing between applications

2002-02-05 Thread Jorge Jimenez C
Hello everyone.  I'm testing orion for use in a variety of applications. Our software company have developed many J2EE components in the form of diferents applications (diferents EAR files) that interact with each other throught its EJB and JSP pages.   Reading the document at http://www.ori

Re: Class.newInstance() Fails with InstantiationException.

2002-02-05 Thread Bill Winspur
The echoing port never gets instantiated, the attempt to instantiate, by invoking Class.newInstance(), throws an InstantiationException. However, if you are asking what is the function of EchoingPort? ... it is a test stub for for the session side of an http tunneling package to support appl

Rmi-Http tunneling? Will it be fixed?

2002-02-05 Thread Lachezar Dobrev
Hi. Recently I decided to try RMI-Http tunneling, but to no avail. It hangs on any lookup for indefinite time. The rmi servlet is installed correctly (http://localhost/servlet/rmi returns "405 Method Not Allowed"). The logs show initialization, but... It hangs... Just hangs. I looked

RE: Class.newInstance() Fails with InstantiationException.

2002-02-05 Thread menonv
What exactly does it do when it gets instantiated? -Original Message-From: Bill Winspur [mailto:[EMAIL PROTECTED]]Sent: Monday, February 04, 2002 9:47 PMTo: Orion-InterestSubject: Class.newInstance() Fails with InstantiationException. I have a servlet that would instantiat