keytool error.

2000-04-14 Thread sgee
[root@Maxsource orion]# keytool -genkey -keyalg "RSA" -keystore keystore -storepass 123456 -validity 360 keytool error: KeyPairGenerator not available I keep getting this error when I try to create my key. Can anyone offer some help? _

Please help with configuring Orion to use EJBs from JSP <-->Java Bean <--> EJB

2000-04-14 Thread Gotham Polisetty
I am trying out an application which has a JSP which uses a Java Bean which in turn uses an session EJB. ie JSP <--> Java Bean <--> session EJB The getInitialContext() method in the bean fails with the a Naming Exception Error.    I experimented with moving application-client.xml to diffe

RE: Datatype size restrictions

2000-04-14 Thread Robert Krüger
man, would I love to have an application that uses entity beans where the exception handling is the bottleneck ;-). just kidding, no offense. I would also be interested in numbers but I would suspect that there are many other issues with entity beans (or EJB in general) that affect the overall

RE: Datatype size restrictions

2000-04-14 Thread Robert Krüger
man, would I love to have an application that uses entity beans where the exception handling is the bottleneck ;-). just kidding, no offense. I would also be interested in numbers but I would suspect that there are many other issues with entity beans (or EJB in general) that affect the overall

RE: Datatype size restrictions

2000-04-14 Thread Barry Fujii
its just an option, depending on your level of usage, one method may outweigh the other. Does anyone have any current timings on how multiple levels of Exception handling cost in run time? I remember seeing a javaworld article a while back, but that was for older 1.1 versions of JDKs. Barry > -

Re: ANY ONE USING ORACLE WITH ORION SERVER

2000-04-14 Thread Eric Richardson
Here you are! Eric :-) "Sudhir A." wrote: > Hi, > Is there any one who could successfully setup the data source using oracle 8.1 > > with the latest version of Orion? > > Please post the Data Source String if possible? > > Thanks > Sudhir > > __

RE: Datatype size restrictions

2000-04-14 Thread Robert Krüger
hi, why bother with this stuff in the first place? you'll get an exception by the jdbc driver anyway. what else could you do but throw an exception if you realize that the value exceeds some limit. would you always truncate? would you like to configure if it truncates or throws an exception?

RE: Datatype size restrictions

2000-04-14 Thread Robert Krüger
hi, why bother with this stuff in the first place? you'll get an exception by the jdbc driver anyway. what else could you do but throw an exception if you realize that the value exceeds some limit. would you always truncate? would you like to configure if it truncates or throws an exception?

ANY ONE USING ORACLE WITH ORION SERVER

2000-04-14 Thread Sudhir A.
Hi, Is there any one who could successfully setup the data source using oracle 8.1 with the latest version of Orion? Please post the Data Source String if possible? Thanks Sudhir _ Get email for your site ---> http://webmail.bharat

RE: Datatype size restrictions

2000-04-14 Thread Barry Fujii
Why not put these sizes in JNDI and check them in the set*() methods? Thats another option. Barry > -Original Message- > From: Thomas Munro [mailto:[EMAIL PROTECTED]] > Sent: Friday, April 14, 2000 2:26 AM > To: Barry Fujii > Cc: [EMAIL PROTECTED] > Subject: Datatype size restrictions >

More taglibs examples

2000-04-14 Thread Donald E. Vandenbeld
I thought some of you might be interested in the site (I have no affilation with it other than a satified browser :-) ). http://www.jsptags.com/

Re: Oracle Driver seems working, but ...

2000-04-14 Thread Tamer
At 07:07 14/04/2000 -0700, you wrote: >it is done no differently (although i suggest you put >this code in a javabean). > >you load the driver, then you get a connection using >the url, then you create a statment and execute a >query.. > ok. the config seems alright. but, don't work fine. the

RE: what are the advantages of using data-sources?

2000-04-14 Thread Ariel Aramburu
You wrote > whats the advantages using orion data-sources? > where i refer "name" parameter of data-source? > the parameter name is the parameter that i must use on my jsp page? I am far from being good at java, but the reason for this list is that we all try to help each other, so I will te

Re: Oracle Driver seems working, but ...

2000-04-14 Thread Tamer
ok, but my great doubt, what i can't found on orion docs: how to refer this "database data-source" on my JSP pages. on ACCESS db I use like this: <% // register JDBC driver Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection con = DriverManager.getConnection("jdbc:o

Re: Oracle Driver is not working

2000-04-14 Thread bradley mclain
hello again, look again at the relevant lines in data-sources.xml. first, in 'connection-driver' i have com.ashna.jturbo.driver.Driver which means that i must have a classfile named 'Driver' in a directory at orion\lib\com\ashna\jturbo\driver\.. secondly, you must use the correct syntax in the

Re: Orion on Linux

2000-04-14 Thread Daniel Ockeloen
Magnus Stenman wrote: > Yes, > we're adding support for setuid after the HTTP server-sockets have been > connected, this disables the ability to add new sites on a live server among > other things though but works for some stuff. Also note that we see java > security as more important (but will o

Re: XML confusion

2000-04-14 Thread Magnus Stenman
/Magnus Stenman, the Orion team - Original Message - From: "Raymond Offiah" <[EMAIL PROTECTED]> To: "Orion-Interest" <[EMAIL PROTECTED]> Sent: Friday, April 14, 2000 12:37 PM Subject: XML confusion > Right, I've managed to get the examples running on an NT box. > > Now, if I have an a

Re: Orion on Linux

2000-04-14 Thread Magnus Stenman
Yes, we're adding support for setuid after the HTTP server-sockets have been connected, this disables the ability to add new sites on a live server among other things though but works for some stuff. Also note that we see java security as more important (but will of course support setuid for paran

Re: Orion on Linux

2000-04-14 Thread Daniel Ockeloen
Thomas Munro wrote: > Hello > > Other Java server software does exactly that. > > Except from weblogic.properties: > > # UNIX only: If running on port 80 on UNIX, enable the setUID program > #weblogic.system.enableSetUID=false > > # UNIX only: Unprivileged user to

XML confusion

2000-04-14 Thread Raymond Offiah
Right, I've managed to get the examples running on an NT box. Now, if I have an application in d:\webprogs, do I have to move it to the Orion directory for it to work, or can I use some setting in an XML file to point to it?

Re: Orion on Linux

2000-04-14 Thread Thomas Munro
Hello Other Java server software does exactly that. Except from weblogic.properties: # UNIX only: If running on port 80 on UNIX, enable the setUID program #weblogic.system.enableSetUID=false # UNIX only: Unprivileged user to setUID to after starting up # WebLogi

Re: Oracle Driver is not working

2000-04-14 Thread bradley mclain
i think your problem lies in two places in your data-source tag. class should be: "com.evermind.sql.ConnectionDataSource" and connection-driver should be something like: "com.oracle.thin.driver" or whatever the proper reference is. here is my data-source tag, which seems to work just fine. i am

Datatype size restrictions

2000-04-14 Thread Thomas Munro
Barry Yeah I've created all the Oracle tables myself, using VARCHAR(n) with sizes that seemed sensible. One thing that bothers me is that I can't really see how to control the size of the String 'declaratively'. I was thinking of maybe making a datatypes.properties file, which would specify the

Re: Entity Bean with refs to other Entity Beans?

2000-04-14 Thread Magnus Stenman
RE: Entity Bean with refs to other Entity Beans?Yes, it is an EJB standard - the CMP spec defines that a container must handle persisting: 1) primitives 2) Serializable objects 3) Entity references Persisting of Lists, Maps, Sets or persisting based on an objects properties etc (OR-mapping) is n

RE: Entity Bean with refs to other Entity Beans?

2000-04-14 Thread Mike Cannon-Brookes
1) This is an Orion addition which should be an EJB standard IMHO - it saves untold amounts of time with persisting OR relations. If you want an EJB standard approach you'll have to use something like TopLink or some other OR persistence package (which is invariably a lot slower than Orion's appro