CMP:Exception in thread "main" java.lang.InternalError

2000-08-10 Thread Ishpal
Hello, I am trying to access an Entity bean from a client on a seperate JVM. I can access everything and the EntityBean is also successfully deployed. The EntityBean adds a row to the table. When i call home.create(id,name,age) from the client ... I get the following Exception. Exception in thr

Servlet-chain

2000-08-10 Thread Agus Pranantoseno
Is it posible to create a servlet chain in orion. Could i used database to stored my jsp files (so it's easier to maintance versioning) and how about the auto compile feature wicth i guess using date. My idea is to used the servlet chain but i found no documentation mention about the servlet

RE: Jive

2000-08-10 Thread Neville Burnell
We are using hSQL + Orion in server mode as follows: 1) snip from data-source.xml note the line url="jdbc:HypersonicSQL:hsql://jaguar" which is the hsql "server mode" jdbc url b) start hsql using "java -cp \orion\lib\hSql.jar org.hsql.Server" Works fine & you can connect to the hsql s

Autoencode URLs

2000-08-10 Thread Joel Shellman
I noticed that autoencode URLs wasn't working for us, then realized that it's just for JSP pages. Is there any way to have URLs autoencoded if we're outputting a page straight from a servlet? Thank you, -- Joel Shellman Chief Software Architect The virally-driven B2B marketplace for outsourcing

IllegalArgumentException

2000-08-10 Thread trein
Does anybody know what causes this exception when running a client application that is trying to connect to an EJB? C:\orion\application-deployments\demo\account>java -classpath .;c: \orion\orion.jar;c:\orion\ejb.jar;c:\orion\jndi.jar AccountClient Getting initial context Looking up home Class: _

problem

2000-08-10 Thread Porfiriev Sergey
sometimes we encounterer this error in our Application: how we can fix it? (Why it happends) ( we use Stafull Session Beans with calls to Entity Beans (Table Api beans)) com.evermind.server.rmi.OrionRemoteException: Transaction was rolled back: Error preparing bean instance: java.lang.InternalEr

Re: A very interesting problem with JSP's and Finland

2000-08-10 Thread Karl Avedal
Hello, Yeah, JAX is generating some classes with "evil" names, we're fixing that. Regards, Karl Avedal "Joseph B. Ottinger" wrote: > On Fri, 28 Jul 2000, Aleksi Kallio wrote: > > > There is a very funny bug in Orion. I think it is in JSPservlet, because it >appears only when compiling jsp pag

java.lang.NullPointerException in

2000-08-10 Thread Nils Frohberg
hi, i have a very strange problem with my orion server. whenever i try to use or getServletConfig().getServletContext().getRequestDispatcher(string).forward(requ est, response) i get a java.lang.NullPointerException: 500 Internal Server Error java.lang.NullPointerException at com.eve

logging processing script/servlet

2000-08-10 Thread Steven Punte
Dear Orion Interest Group:       Does anyone have a nice servlet or JSP page     which reads in the orion log file (i.e. the one     that show traffic), and creates some decently     formatted web page for browsing activities?       Thanks in Advance:           STeve Puntee-Business Softwa

userThreads option in orion

2000-08-10 Thread Nijhawan, Sumit
HI: I am trying to start a background thread in the init method of one of my servlets in Orion. At one point, on orion start up, I got a message saying that thread was out of application scope and the orion server should be started with the -userThreads option. Does anyone know what the implica

RE: Sharing code between web-app and ejbs

2000-08-10 Thread Conrad Chan
I would rather put the shared class files into both WAR and EJB-JAR files. The major reason is potentially the WAR may be deployed in a different app server for scalibility reason. In this way you are not sharing the code but packaging the output class files into both JAR files. A simple mak

Lookups broken with "outside" JVMs ??

2000-08-10 Thread Carol_Kinnard
We are using the orion EJB server engine and orion servlet engine. When trying ot connect to the EJB server from the serlvets, lookups are fine. Wnen coming from outside orion in another JVM, the lookups FAIL with the error: koala.dynamicjava.interpreter.InterpreterException: javax.namin

RE: Orion on SCO UnixWare 7

2000-08-10 Thread Holmes, George (TWIi London)
Title: RE: Orion on SCO UnixWare 7 Thomas, Thanks, this was the work-a-round I hit on a couple of hours ago.  I think the main issue lies with SCO's implementation of the JIT compiler. George GEORGE HOLMES TWI Interactive Media House Burlington Lane LONDON W4 2TH ENGLAND TEL: +44 208

Re: support email-address problem

2000-08-10 Thread Karl Avedal
Hello Gary, Yeah, seems there was a short problem with a mail server that made you get that error, nothing to worry about. As you guessed that alias is forwarded to many addresses, one of the addresses was a personal address for me, and the ISP had a temporary problem that caused the error. We g

Re: Orion on SCO UnixWare 7

2000-08-10 Thread Thomas Munro
George, What do you get if you start the virtual machine with -Djava.compiler="" on the command line? -- Thomas Munro <[EMAIL PROTECTED]> http://www.gi-technology.com/ GI Technology (Paris) On Thu, 10 Aug 2000, Holmes, George (TWIi London) wrote: > Hi, > > Has anyone had any experience run

classpath

2000-08-10 Thread Flemming Seerup
hi!   I'm using Orion Server to execute Servlets and JSPs. How do I specify which classpath an application should use. I know the default classpath is WEB-INF/classes, but during development I'd like the application to use d:\javaclasses   any ideas?   Flemming

RE: Sharing code between web-app and ejbs

2000-08-10 Thread Mike Cannon-Brookes
If you just put all your classes in the EJB-JAR file, they can be 'seen' from the WAR (no need to worry about the classes dir)   That's the way I do it. Probably not the best way, but it works.   Mike    -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf O

Re: A very interesting problem with JSP's and Finland

2000-08-10 Thread Jason von Nieda
The Orion folks use a code obfuscator on Orion so, many of the classes are named things like fi, ab, ac, aa, gg and so on. Although, I am surprised the compiler would complain about this. Don't really have an answer sadly. - Original Message - From: "Aleksi Kallio" <[EMAIL PROTECTED]> To:

support email-address problem

2000-08-10 Thread Gary Shea
I attempted to send mail to [EMAIL PROTECTED], and got back the following error. Notice from the transacript that the address has been rewritten to be sent to '[EMAIL PROTECTED]', so with any luck he's just one of several recipients to which the mail is being forwarded... Sorry to send this to t

Orion and Cloudscape

2000-08-10 Thread JavierG
Hi all: Can I make Orion and Clouscape run in the same VM? In that case, how? Wrapping Cloudscape in a servlet and running it within Orion? Any particular measure I should take in that case? All suggestions would be very welcome. Thanks J.

Re: A very interesting problem with JSP's and Finland

2000-08-10 Thread Joseph B. Ottinger
On Fri, 28 Jul 2000, Aleksi Kallio wrote: > There is a very funny bug in Orion. I think it is in JSPservlet, because it appears >only when compiling jsp pages. I have the package fi.infomates in import clause, >which leads to the following error: > > Ambigious name: > fi is both a clas

A very interesting problem with JSP's and Finland

2000-08-10 Thread Aleksi Kallio
There is a very funny bug in Orion. I think it is in JSPservlet, because it appears only when compiling jsp pages. I have the package fi.infomates in import clause, which leads to the following error: Ambigious name: fi is both a class and a package After a long search I succeeded to l

Sharing code between web-app and ejbs

2000-08-10 Thread August Linnman
Hello everyone!   This is maybe not orion-specific (off-topic) but may be relevant anyway.   How can you in a manageable way include "library" code, i e common code in an EAR which should be accessible from both the WAR and the EJB-JAR, and also preferably be put in the same EAR. The only way

Problems in create an EntityBean with orion and hypersonic DB

2000-08-10 Thread Yossi Shmulevitch
hi all!! I'm trying to connect through a client already deployed entity bean. I'm getting this error message(in the server log): java.sql.SQLException: User not found: ADMIN at org.hsql.Trace.getError(Trace.java:124) at org.hsql.Trace.getError(Trace.java:115) at org.hsql

Re: JSP on Win98

2000-08-10 Thread Dave Smith
If Jikes is in your system path then the patch to Jikes is not needed in server.xml (otherwise it is of course). If you say to use Jikes, the the inline compiler is not used (and everything goes a lot quicker). JSP compilation and EJB deployment is about 10-15 times faster with Jikes. "Su, Yi" w

Download Ok: Startup Ok: How to stop?

2000-08-10 Thread John Pashley
I've downloaded the freebee and started the server. Everything seems to work ok. Q: How to stop the server after starting with java -jar orion.jar? Brgds John Pashley Information must be free --- Remember When ... A computer was something on TV fro

Orion on SCO UnixWare 7

2000-08-10 Thread Holmes, George (TWIi London)
Title: Orion on SCO UnixWare 7 Hi, Has anyone had any experience running Orion on UnixWare 7?  I have deployed live apps on Windows NT 4, but am having trouble getting Orion to run on SCO. I have JDK 1.2 for SCO installed and get an error message pertaining to a problem with the JIT compile

Re: webapp design: how to handle connection pooling

2000-08-10 Thread Dave Smith
Connections obtained through a datasource ar closed to indicate that they are available for re-use. The actual underlying connection to the database is not closed. Joe Peer wrote: > Hi everybody, > > thank you for your responses! > > i forgot to say that i am already using orion's connection poo

RE: webapp design: how to handle connection pooling

2000-08-10 Thread J.T. Wenting
you do have to release the connections back to the pool, usually with a free(Connection) command or similar. the pool then handles closing the actual Connection for you. Maybe Orion's implementation wants the Connection to be closed outside the pool, but this seems illogical to me. Jeroen T. Went

RE: webapp design: how to handle connection pooling

2000-08-10 Thread J.T. Wenting
> > Option 2 is better when you are dealing with application servers, > especialy > with Orion. Orion has a very easy built-in connection pooling capability. > > When you suggest this method, I assume you are talking about an Orion > specific mechanism correct? This is convenient if Orion is the

Problems on HP-UX (HotSpot, JMS)

2000-08-10 Thread Olli Pöyry
I have two problems with Orion on HP-UX 11.0 and JDK 1.2.2. 1) Orion starts only with java flag -classic that turns of HotSpot. Otherwise core dump. 2) The JMS demos work fine on Win2000, but on HP-UX ends with a terrible signal something low level exception and a core dump. Any clues

startup

2000-08-10 Thread Khan Kamran
Title: startup Hi All , I want to run a servlet at startup of orion server for one of my application. Please tell me how to achieve it? Thanks Kamran

Re: Jive

2000-08-10 Thread Karl Avedal
Hello, I just mailed the hsql people to ask if they could move their classes in the default package to org.hsql to avoid collisions with Jive, however, we can't force them to do so, I'll get back with the feedback on this. Regards, Karl Avedal Matt Adam Tucker wrote: > Jospeh, > > Thanks for t

Re: webapp design: how to handle connection pooling

2000-08-10 Thread Joe Peer
Hi everybody, thank you for your responses! i forgot to say that i am already using orion's connection pooling capability (i never thought i would give up my old connection pooling package, but orion made it possible ;=) the reason why i wrote the original message to this list was that i knew i

RE: JSP on Win98

2000-08-10 Thread Su, Yi
Hi, Jeroen, Thank you very much. This does clarify a lot on my understanding. Another question that I'm having is, since tools.jar contains the inline Java compiler, what should I do if I want to specify jikes as my compiler. I notice that in server.xml there is an option, but it doesn't tell t