SessionBean create method returns null

2001-05-24 Thread Tim McCune
Title: SessionBean create method returns null





-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Calling create() on my session bean's home interface is returning
null.  I added a debug statement to the session bean's ejbCreate()
method, and it never shows up in Orion's console.  No exceptions
showing up anywhere.  Any suggestions on how I can even begin to try
to figure out what the problem is?


-BEGIN PGP SIGNATURE-
Version: PGPfreeware 6.5.3 for non-commercial use 


iQA/AwUBOw37qtUPOr8a7vy5EQJDKQCg8UsbGC0NXQTQxGpuo77rWysEn3wAnisc
kCcSnCT0ZHLRlnFcRc40TOxq
=Uaoz
-END PGP SIGNATURE-





RE: StackOverflowError

2001-05-24 Thread Tim McCune

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I went back and retraced my steps to try to figure this out.  I have
a jar inside my ear file that contains an application-client.xml, so
I wondered if that might be causing some kind of infinite loop in
Orion.  Copying this jar into Orion's lib directory fixed the
problem.  Don't quite know why, but then again, this whole experience
with Orion is turning into one big exercise in trial and error. :( 
So now I'm on to the next problem, but I'll start a new thread...

> -Original Message-
> From: Tim McCune [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, May 24, 2001 9:08 PM
> To: Orion-Interest
> Subject: RE: StackOverflowError
> 
> 
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
> 
> I'm not getting any other error messages from either Orion or my
> client JVM, although the CPU is chugging like crazy for a bit
> before the StackOverflowError.  My ejbCreate method is one line
> long,
> basically
> public void ejbCreate(String s) {
>   this.s = s;
> }
> 
> Nothing fancy, and no JCE involved.
> 
> > -Original Message-
> > From: Adam Cassar [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, May 24, 2001 4:23 PM
> > To: Orion-Interest
> > Subject: Re: StackOverflowError
> > 
> > 
> > 
> > Hi Tim,
> > 
> > I had this problem a while back and I ended up tracing it back to
> > the java crypto extensions. Are you getting a whole bunch of
> > errors from your VM? What is your session bean doing?
> > 
> > 
> > On 24 May 2001 01:18:12 -0600, Tim McCune wrote:
> > > -BEGIN PGP SIGNED MESSAGE-
> > > Hash: SHA1
> > > 
> > > I finally got Orion to deploy my app tonight, but my client
> > > throws a StackOverflowError the first time I try to create a
> > > session bean. 
> > >  
> > > Exception in thread "main" java.lang.StackOverflowError
> > > at com.evermind.server.rmi.ba.invokeMethod(JAX)
> > > at com.evermind.server.rmi.a1.invoke(JAX)
> > > at com.evermind.server.rmi.a2.invoke(JAX)
> > > at __Proxy1.create(Unknown Source)
> > >  
> > > This happens the first time I try it after starting Orion. 
> > > Subsequent runs give a NoClassDefFoundError instead until I
> > > restart Orion:
> > >  
> > > Exception in thread "main" java.lang.NoClassDefFoundError
> > > at com.evermind.server.rmi.ba.invokeMethod(JAX)
> > > at com.evermind.server.rmi.a1.invoke(JAX)
> > > at com.evermind.server.rmi.a2.invoke(JAX)
> > > at __Proxy1.create(Unknown Source)
> > >  
> > > Any suggestions would be appreciated.  Thanks.
> > > 
> > > -BEGIN PGP SIGNATURE-
> > > Version: PGPfreeware 6.5.3 for non-commercial use 
> > <http://www.pgp.com>
> > > 
> > > iQA/AwUBOwy1YtUPOr8a7vy5EQLulwCgsMBtTm68RAFb7VyGekR/7IQUeLQAn2cS
> > > cwL0zbBiWzaXhujRrP6hRrlQ
> > > =WlHP
> > > -END PGP SIGNATURE-
> > 
> > -- 
> > 
> > Adam Cassar
> > Technical Development Manager
> > ___  
> > NetRegistry http://www.netregistry.au.com
> > Tel: +61 2 9641 8609 | Fax: +61 2 9699 6088
> > PO Box 270 Broadway NSW 2007 Australia
> > 
> > 
> 
> -BEGIN PGP SIGNATURE-
> Version: PGPfreeware 6.5.3 for non-commercial use
> <http://www.pgp.com>  
> 
> iQA/AwUBOw3MMdUPOr8a7vy5EQL80QCeKnwmSR4hrjLD8XyVdMwN+m6b3m4AoJOr
> WRxdqdco+4lDPHabv7v6oKzI
> =H23a
> -END PGP SIGNATURE-
> 

-BEGIN PGP SIGNATURE-
Version: PGPfreeware 6.5.3 for non-commercial use <http://www.pgp.com>

iQA/AwUBOw35N9UPOr8a7vy5EQJVFwCfac71voIuUaQxyOMGEj22sU2LBf0AoJDI
ey8j6OYc0QmM09H0dY0psAEy
=q0xE
-END PGP SIGNATURE-




RE: StackOverflowError

2001-05-24 Thread Tim McCune

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I'm not getting any other error messages from either Orion or my
client JVM, although the CPU is chugging like crazy for a bit before
the StackOverflowError.  My ejbCreate method is one line long,
basically
public void ejbCreate(String s) {
this.s = s;
}

Nothing fancy, and no JCE involved.

> -Original Message-
> From: Adam Cassar [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, May 24, 2001 4:23 PM
> To: Orion-Interest
> Subject: Re: StackOverflowError
> 
> 
> 
> Hi Tim,
> 
> I had this problem a while back and I ended up tracing it back to
> the java crypto extensions. Are you getting a whole bunch of errors
> from your VM? What is your session bean doing?
> 
> 
> On 24 May 2001 01:18:12 -0600, Tim McCune wrote:
> > -BEGIN PGP SIGNED MESSAGE-
> > Hash: SHA1
> > 
> > I finally got Orion to deploy my app tonight, but my client
> > throws a StackOverflowError the first time I try to create a
> > session bean. 
> >  
> > Exception in thread "main" java.lang.StackOverflowError
> > at com.evermind.server.rmi.ba.invokeMethod(JAX)
> > at com.evermind.server.rmi.a1.invoke(JAX)
> > at com.evermind.server.rmi.a2.invoke(JAX)
> > at __Proxy1.create(Unknown Source)
> >  
> > This happens the first time I try it after starting Orion. 
> > Subsequent runs give a NoClassDefFoundError instead until I
> > restart Orion:
> >  
> > Exception in thread "main" java.lang.NoClassDefFoundError
> > at com.evermind.server.rmi.ba.invokeMethod(JAX)
> > at com.evermind.server.rmi.a1.invoke(JAX)
> > at com.evermind.server.rmi.a2.invoke(JAX)
> > at __Proxy1.create(Unknown Source)
> >  
> > Any suggestions would be appreciated.  Thanks.
> > 
> > -BEGIN PGP SIGNATURE-
> > Version: PGPfreeware 6.5.3 for non-commercial use 
> <http://www.pgp.com>
> > 
> > iQA/AwUBOwy1YtUPOr8a7vy5EQLulwCgsMBtTm68RAFb7VyGekR/7IQUeLQAn2cS
> > cwL0zbBiWzaXhujRrP6hRrlQ
> > =WlHP
> > -END PGP SIGNATURE-
> 
> -- 
> 
> Adam Cassar
> Technical Development Manager
> ___  
> NetRegistry http://www.netregistry.au.com
> Tel: +61 2 9641 8609 | Fax: +61 2 9699 6088
> PO Box 270 Broadway NSW 2007 Australia
> 
> 

-BEGIN PGP SIGNATURE-
Version: PGPfreeware 6.5.3 for non-commercial use <http://www.pgp.com>

iQA/AwUBOw3MMdUPOr8a7vy5EQL80QCeKnwmSR4hrjLD8XyVdMwN+m6b3m4AoJOr
WRxdqdco+4lDPHabv7v6oKzI
=H23a
-END PGP SIGNATURE-




StackOverflowError

2001-05-24 Thread Tim McCune
Title: StackOverflowError





-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


I finally got Orion to deploy my app tonight, but my client throws a
StackOverflowError the first time I try to create a session bean.
 
Exception in thread "main" java.lang.StackOverflowError
    at com.evermind.server.rmi.ba.invokeMethod(JAX)
    at com.evermind.server.rmi.a1.invoke(JAX)
    at com.evermind.server.rmi.a2.invoke(JAX)
    at __Proxy1.create(Unknown Source)
 
This happens the first time I try it after starting Orion. 
Subsequent runs give a NoClassDefFoundError instead until I restart
Orion:
 
Exception in thread "main" java.lang.NoClassDefFoundError
    at com.evermind.server.rmi.ba.invokeMethod(JAX)
    at com.evermind.server.rmi.a1.invoke(JAX)
    at com.evermind.server.rmi.a2.invoke(JAX)
    at __Proxy1.create(Unknown Source)
 
Any suggestions would be appreciated.  Thanks.


-BEGIN PGP SIGNATURE-
Version: PGPfreeware 6.5.3 for non-commercial use 


iQA/AwUBOwy1YtUPOr8a7vy5EQLulwCgsMBtTm68RAFb7VyGekR/7IQUeLQAn2cS
cwL0zbBiWzaXhujRrP6hRrlQ
=WlHP
-END PGP SIGNATURE-





NoClassDefFound errors

2001-05-20 Thread Tim McCune
Title: NoClassDefFound errors





-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


I'm trying to set up Orion, but when I deploy my app into it, Orion
throws a NoClassDefFound error.  The class that Orion can't find is
located in a jar, and is referenced from the Class-Path manifest
entry of my app jar.  The path to the jar is relative:
Class-Path: lib/foo.jar
and I placed this "lib" directory under the "applications" directory,
which is where my app jar is located.  This same setup works fine
with JBoss.  Does Orion not read the classpath from the manifest? 
Any suggestions would be appreciated.  Thanks.
 
- --Tim


-BEGIN PGP SIGNATURE-
Version: PGPfreeware 6.5.3 for non-commercial use 


iQA/AwUBOwh+3tUPOr8a7vy5EQIKqwCcCO9GCaZ+bVK9OcEpYdWz0PCbKEEAoK/p
ssIy+FaUddqNV7CWKPbyv8yI
=UwE6
-END PGP SIGNATURE-