SQL Server - Autoincrement Primary Keys

2000-11-14 Thread Chris Miller
Hi all, This is possibly more of a generic EJB question, although maybe not since Orion has to implement the persistence... I was wondering if it is possible to use CMP beans against an existing SQL-Server database that has autoincrement primary keys. It's not possible to insert a value for the

Re: JBuilder4.0

2000-11-09 Thread Chris Miller
Egor, On the 'run' tab in Project Properties, put a -classic parameter into the VM Parameters field and you should be OK. - Original Message - From: Savotchkin Egor To: Orion-Interest Sent: Thursday, November 09, 2000 9:54 AM Subject: JBuilder4.0 Hi

Re: custom user management

2000-10-17 Thread Chris Miller
There should be a tutorial arriving for this 'shortly', however in the meantime this should be enough to get you going: Implement the UserManager, User, and Group classes. (for example, MyUserManager, MyUser, MyGroup). The UserManager probably just needs to look like this for now: public class

Re: custom user management

2000-10-17 Thread Chris Miller
ocumented under what attribute name). Hints? Am I missing something? thanks, Christian -Original Message- From: Chris Miller [EMAIL PROTECTED] To: Orion-Interest [EMAIL PROTECTED] Date: Dienstag, 17. Oktober 2000 16:44 Subject: Re: custom user management There should be

Re: JBuilder + Orion

2000-10-17 Thread Chris Miller
JBuilder debugging - basically you need to go into project properties and set: Run-Application-Main class = com.evermind.server.ApplicationServer and VM parameters to: -classic -Duser.dir=c:\orion You'll have to include a few jars in the required libraries, eg orion.jar, ejb.jar, maybe some

Re: New batch of documentation

2000-09-28 Thread Chris Miller
Karl and the rest of the Orion team, I just want to say thank you vey much for this update, it looks good (and will keep myself and many others busy for a while I suspect ;-). One small thing I noticed, this link is broken (or perhaps just hasn't been uploaded yet):

Re: cmt-datasource/ejb-datasource

2000-09-07 Thread Chris Miller
Try using the EJB JDBC url (ie 'ejb-location' from your data-sources.xml) rather than the standard 'location'. At least, this worked for me (I think I've got other problems related to my JDBC setup, but that's another story). - Original Message - From: "Tom Klaasen" [EMAIL PROTECTED] To:

Re: JBuilder 4

2000-09-06 Thread Chris Miller
I'd tend to agree with Sven. My experiences with JBuilder 3.5 and Orion have been very positive, so I can't see why there would be any regressions with 4.0. But give people a chance to get hold of the thing and try it first! :-) - Original Message - From: "Sven van 't Veer" [EMAIL

OrionCMTConnection not closed

2000-08-29 Thread Chris Miller
I have a BMP bean (3rd party, but I have the source code) that writes to a database. The write is fine and gets committed seemingly without problems. Once I continue surfing around the site however Orion then throws the following exception: OrionCMTConnection not closed, check your code!

Re: Transaction problems...

2000-08-22 Thread Chris Miller
I'm just guessing, but have you tried setting exclusive-write-access="false" in your orion-ejb-jar.xml file? It sounds like Orion is doing some optimisation to speed things up because it thinks it has exclusive write access to the database - but your triggers are going behind Orion's back without

Ecommerce sites using Orion

2000-08-16 Thread Chris Miller
We're developing a fairly large ecommerce solution for a client, and there is a little bit of concern that we're breaking new ground (which I think we are, in a good way) and that Orion hasn't been proven in this area. It's not a major issue, and we'll be running the site with Orion regardless,

Re: 1.20 Changelog

2000-08-15 Thread Chris Miller
Jeroen, Matt made a patch for that to Jive a couple of days ago, and I submitted another update to him as well that should tackle the problem. So hopefully from the next beta of Jive the problem should disappear. If you want to fix Jive right now, fully-qualify all the instances of the 'Tree'

Jive

2000-08-09 Thread Chris Miller
Has anyone here used Jive (www.coolservlets.com/jive) with Orion (1.1.37)? I've just tried to set it up, and hit a problem because the orion/lib/hsql.jar file contains a class called 'Tree'. Jive also has a class called this, and when I try to use it in a JSP page, Orion finds Hypersonic's Tree

Re: Jive

2000-08-09 Thread Chris Miller
m: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Chris Miller Sent: Wednesday, August 09, 2000 15:13 To: Orion-Interest Cc: [EMAIL PROTECTED] Subject: Jive Has anyone here used Jive (www.coolservlets.com/jive) with Orion (1.1.37)? I've just tried to set it up, and hit a p

Re: Jive

2000-08-09 Thread Chris Miller
ers of hSQL as well. People shouldn't be putting classes with such generic names in the default package. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Chris Miller Sent: Wednesday, August 09, 2000 8:13 AM To: Orion-Interest Cc: [EMAIL PROTEC

Re: Jive

2000-08-09 Thread Chris Miller
es. If you want to blame Java, fine. Go for it. If you want to blame hsql, fine. Go for it. In either case, blame is deserved (well, mostly for hsql, but hey.) Orion is doing nothing to the classpath to make it behave oddly. The solution is to fix hsql.jar, really, not modify orion or jive. On Wed, 9

Re: config tool

2000-07-18 Thread Chris Miller
You can also start the console with: java -jar orion.jar -console2 - Original Message - From: "Dave Smith" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, July 18, 2000 6:07 AM Subject: RE: config tool If you have a late version (2.1.20+)

Re: Creation Of WAR Files?

2000-07-14 Thread Chris Miller
In relation to this - up until now I have been using ant to build/deploy my EAR file. Works fine, but slow. So I've tried to get Orion working live against my source code. A couple of questions: How do EJB's fit into all of this? At the moment, I'd actually prefer to keep them in the EAR file,