Re: orion + multi processor's X86 PC

2001-01-28 Thread Scott Stirling
SMP because they all rely on native thread implementations. Scott Stirling On 26 Jan 2001 08:42:01 +0100, PHiL wrote: Hi, We planned to go on production state of our developpement under ORION, but we don't have a clue on multiprocessors (SMP) and Orion. If we run a X86 PC server with 2

Orion and J2EE licensing

2000-12-15 Thread Scott Stirling
nd/cope with them, or even if their attitude is "we'll cross that bridge when Sun's lawyers bring us to it." Best regards, Scott Stirling West Newton, MA

RE: www.orionserver.com down again

2000-12-13 Thread Scott Stirling
That's because it was put back up in the interim. I've noticed these downtimes before too. Scott Stirling West Newton, MA -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Juan Gargiulo Sent: Wednesday, December 13, 2000 3:34 PM The site works for me

RE: Transaction across several different methods in Session beans

2000-12-13 Thread Scott Stirling
you posted. Check these lines: public void begin() { try { utx = ejbCtx.getUserTransaction().begin(); } and: public void commit() { try { ejbCtx.getUserTransaction().commit(); } Scott Stirling West Newton, MA -Original Message- From: [EMAIL

RE: Distributed Transaction without EJB.

2000-12-13 Thread Scott Stirling
of a transaction manager that supports CORBA's OTS and X/Open's JTA. I don't know if that would allow you to do what you're asking. JTS is not officially part of J2EE, so I haven't had to deal with it personally. Scott Stirling West Newton, MA -Original Message- From: [EMAIL PROTECTED] [mailto

RE: EJB2.0 Generated class uncompilable

2000-12-08 Thread Scott Stirling
Take the version you have and do: cd $ORION_HOME java -jar autoupdate.jar This will pull down the latest released build from Orion. Pretty sweet feature. Scott Stirling West Newton, MA -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Serge Knystautas

Orionserver.com down??

2000-12-05 Thread Scott Stirling
What's up with www.orionserver.com? It's been down all day. Scott Stirling West Newton, MA

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

2000-11-28 Thread Scott Stirling
requests to port 25? Orion or the mail server? The answer is whoever bound the port first. And once a process has bound to a critical port (such as a Web server binding to port 80), it usually doesn't "let go" until the process is stopped. Scott Stirling West Newton, MA ---

RE: Custom Tags Bug? Please help...

2000-11-15 Thread Scott Stirling
is that the type of this variable is the same when its set(Type t) and get(){ return Type t;} methods are called, and that you aren't mixing types with a 1.3 JVM. The 1.3 JVM is stricter about some of the JavaBean conventions. Scott Stirling -Original Message- From: [EMAIL PROTECTED

RE: DeadlockException

2000-11-14 Thread Scott Stirling
and thread B is locking resource y, etc.) you're pretty darn fortunate. Lots of times that deadlocks occur, JVMs don't detect it. Disable JIT when before you try to catch this in a stack dump, or else you won't be able to see the line numbers in the stack traces. Scott Stirling -Original Message

RE: XSLT processors

2000-10-12 Thread Scott Stirling
Oh, you caught that! I thought it might slip by after I sent it and realized it myself. Yes, I did get it right in the book. More pluses/minuses on Xerces and Xalan: Xalan Java is the XSLT processor, which was 843 KB last time I checked. It depends on Xerces by default, which was/is around

RE: HARDWARE FOR J2EE apps

2000-10-11 Thread Scott Stirling
to Postgresql? Is it free? Scott Stirling West Newton, MA -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Duffey, Kevin Sent: Wednesday, October 11, 2000 4:01 PM To: Orion-Interest Subject: RE: HARDWARE FOR J2EE apps Hi, sounds very nice but what

RE: XSLT processors

2000-10-11 Thread Scott Stirling
T http://www.cogsci.ed.ac.uk/~dmck/xslt-tutorial.html List of Books, articles and papers: http://www.oasis-open.org/cover/xsl.html#articles See in particular the free online stuff from the "XSLT Programmer's Reference," By Michael Kay. Lots of free code and examples you can download.