Re: Debugging CMP sql

2000-11-29 Thread Tommy Essebo
At 13:43 2000-11-28 -0600, you wrote: Is there any way to force orion to log all the SQL it generates? I made a change to one of my CMP beans to add some new columns, and now Oracle is reporting an "Invalid column" error when I do a findAll. This one should be a no-brainer, but I've checked the

Error:no default cmt-datasources

2000-11-29 Thread tasneem
Hi everybody Please help me solve this error I have a problem running my ejb application I have an already prepared .ear file and i want to run it in orionserver. I have made the necessary changes in server,principal,datasource and default-web-site xml files but when i start my orion server

Re: Running two instances of Orion on the same IP and port

2000-11-29 Thread Joe Walnes
Setup the first instance of Orion as usual. Setup the 2nd instance of Orion on a different port. Use TunnelServlet in Orion 1 to forward requests to Orion 2 for necessary vhosts. -Joe Walnes At 21:46 28/11/2000, you wrote: Orioners, Has anyone ever tried to run two instances of Orion on the

Re: Running two instances of Orion on the same IP and port

2000-11-29 Thread Sven van 't Veer
Larry Velez wrote: I know that binding a second IP to the box and having the second Orion listen on that IP would probably work. Is there an obvious reason that the way I am attempting always gives me an "Error starting HTTP server: Address already in use" error on the second instance?

Creating zones in orion server

2000-11-29 Thread Pradeep
Hello Sir, I have been using Orion server for my application and have been successfully deploying many applications. But i am facing a problem in segregating the servlets into different zones, Like for example The servlets in the web-inf/classes directory can be accessed with the URL

Is it possible to share session between a SSL and a non SSL version of the same application ?

2000-11-29 Thread Ismael Blesa Part
I have one application where I want to change from SSL to nonSSL an vice-cersa. Is it possible to share the session object between these two. Thanks

Re: Creating zones in orion server

2000-11-29 Thread Christian Sell
Pradeep, the best thing you can do to yourself is read the servlet 2.2 specification. There is a whole chapter (#10) on "mapping requests to servlets". Basically what you need is a servlet mapping, which is specified in the web application deployment descriptor - Original Message -

RE: Running two instances of Orion on the same IP and port

2000-11-29 Thread Russ White
Title: Running two instances of Orion on the same IP and port Larry, Orion is acting just as it should. You cannot have to two servers bind to the same port (This could create all sorts of problems). There is no web server I am aware of that will do this. That being said, all you really

RE: Error:no default cmt-datasources

2000-11-29 Thread Juan Lorandi (Chile)
your datasource, if using CMP, mustn't be Access... Use any DB with transactional support JP -Original Message-From: tasneem [mailto:[EMAIL PROTECTED]]Sent: MiƩrcoles, 29 de Noviembre de 2000 6:54To: Orion-InterestSubject: Error:no default cmt-datasources Hi everybody

RE: Creating zones in orion server

2000-11-29 Thread Russ White
One other solution: create a second web app that uses a different servlet directory directive. like so: in application.xml add: module web web-urienseek/web-uri context-root/enseek/context-root /web /module in orion-application.xml add: library

Problems with an identity (autoincrement) field.

2000-11-29 Thread fresnaULL
Hi, I've made an entity cmp which map a database table which has an identitiy (autoincrement) field as primary key. When I do a home.create(primary_key) I get the following error: [Microsoft][ODBC SQL Server Driver][SQL Server] Cannot insert explicit value for identity column in table when

Re: Turbine with Orion?

2000-11-29 Thread Daniel G. Koulomzin
I have gotten Orion to work with Turbine, so I know its possible. But I haven't documented anything. -Dan David Kenzik wrote: Neal Kaiser said... > I'm getting ready to set this up (Turbine and Velocity) with Orion. > Before I pull my hair out figuring it out, I wanted to see if anyone has >

Trying again - problems with connections

2000-11-29 Thread theis . meggerle
Hi everybody! As I didn't get any response on my last mail I'am trying again. So here is the same mail. I have just finished a sessionbean (via a servlet) which connects to a database and reads a specified table. Everything works fine the first time a run my servlet. But the second time, I

Using JSP to write/append PDF's

2000-11-29 Thread John Miller
Does anyone have any experience of this? Any information or resources you could think of would be very helpful. Thanks lots, Johnny

RE: Using JSP to write/append PDF's

2000-11-29 Thread Russ White
The best advice I could give you would be to check out Cocoon and FOP from the Apache project. http://xml.apache.org/cocoon/index.html http://xml.apache.org/fop/index.html -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of John MillerSent:

Re: Problems with an identity (autoincrement) field.

2000-11-29 Thread Boris Gertsberg
You can't use identity columns with EJBs as a primary keys if you use create method, you have to set primary key property during the call of create method.However, in this mailing list I saw ingenious hack to use finder method as a replacement of create.So basicly you never call create method but

Re: Orion slow startup

2000-11-29 Thread Rafael Alvarez
Hello scott, Check how many EJB are being deployed. Orion slows down startup when it's deploying EJB, because it involves generating the java sources of the skel and stub for the home and remote, and compiling them. -- Best regards, Rafaelmailto:[EMAIL PROTECTED]

RE: Orion slow startup

2000-11-29 Thread scott . elmer
I don't think so. Unless it comes configured that way. How do you check if you are using SSL? I forgot to mention that I'm on Windows 95. Scott Ismael Blesa Part [SMTP:[EMAIL PROTECTED]] wrote: Maybe you are using SSL. [EMAIL PROTECTED] wrote: I've been experiencing

Re: How can I use an BLOB datatype

2000-11-29 Thread Ron Siewert
I'm investigating that myself. I want to get it to work for serializing an entity object's dependent objects to a database. From what I can tell, you need to implement interface Serializable on the object(s) you want to persist. In java.sql api docs, you'll see classes named ObjectOutputStream,

RE: How can I use an BLOB datatype

2000-11-29 Thread Tim Drury
In CMP, the output streams should be created for you. The database config xml file should provide a mapping of a Serializable object to a BLOB/Image/etc. If this is done, the object will be serialized before insertion automatically. -tim -Original Message- From: Ron Siewert

Orion with iPlanet 4.1

2000-11-29 Thread Widmer K at BT
Has anyone got Orion working with iPlanet 4.1 Web Server ? if so, how did you configure the Web Server to run Orion and vice versa.

Re: Error:no default cmt-datasources

2000-11-29 Thread tasneem
Thanks juan But my datasource is SQL 7.0 still i am getting this error - Original Message - From: Juan Lorandi (Chile) To: Orion-Interest Sent: Wednesday, November 29, 2000 6:16 PM Subject: RE: Error:no default cmt-datasources your datasource, if

Single Sign On

2000-11-29 Thread Gerald Gutierrez
Does Orion do any sort of single sign-on for multiple applications deployed on the same application server? If so, how can one get this working?