Re: Orion and Cocoon anyone

2001-03-02 Thread theis . meggerle
Try this: Rename the xerses.jar to xersesold.jar (under orion) Copy cocoons xerses.jar to the orion lib. Unpack the cocoon.jar. Change the cocoon.properties to this: processor.xsp.logicsheet.context.java =

Storing HttpServletRequest Object in Session

2001-03-02 Thread Santosh Kumar
Hi all, I tried to store the implicit request object in session. But when i tried to retrieve it. one.jsp -- ... ... request.setAttribute("ONE", "1"); request.setAttribute("TWO", "2"); .. .. session.setAttribute("request",request); .. -- forward to two.jsp two.jsp

EJBQL

2001-03-02 Thread fresnaULL
Does Orion provide support for EJBQL? Which Orion version? Is Orion full EJB 2.0 compliant? Thanks in advance

RE: need help getting started

2001-03-02 Thread Randahl Fink Isaksen
my main reason for switching was that orion is much faster than tomcat. Isn't that so? Now, where did you here that ?? Randahl But, you are right, I had the feeling that it was way over kill...I am also looking into resin, I guess that is over kill, too for functionality, but like I

Java ftp

2001-03-02 Thread John Miller
Off topic, but does anyone know a way of using Java for FTP'ing? Johnny BUY YOUR 2001 ISA AT INTERACTIVE INVESTOR'S NEW ISA CENTRE - visit http://www.iii.co.uk/isa for a choice of 400+ funds, market leading discounts and access to expert advice. FANCY A FREE ISA? Enter our competition now

RE: CMP 2.0

2001-03-02 Thread Randahl Fink Isaksen
The bug has been entered into the system as bug #349. It includes a thorough description. R. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Randahl Fink Isaksen Sent: 1. marts 2001 22:48 To: Orion-Interest Subject: RE: CMP 2.0 God point - I'll report

RE: Struts (was: I switch from X to Orion because: )

2001-03-02 Thread Manne Fagerlind
Wouldn't it have been easier to just subclass ResourceBundle or one of its subclasses: public class SerializableResourceBundle implements Serializable or am I missing something obvious? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 01 March 2001 18:51 To:

RE: need help getting started

2001-03-02 Thread Dumitru Sbenghe
You don't need to hear, you feel that; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Randahl Fink Isaksen Sent: Friday, March 02, 2001 11:23 AM To: Orion-Interest Subject: RE: need help getting started my main reason for switching was that

Re: Java ftp

2001-03-02 Thread Marcel Schutte
See http://www.savarese.org/oro/ I think that's the library that is used by the optional ftp task in Ant. Marcel - Original Message - From: "John Miller" [EMAIL PROTECTED] To: "Orion-Interest" [EMAIL PROTECTED] Sent: Friday, March 02, 2001 10:47 AM Subject: Java ftp Off topic, but

Re: EJBQL

2001-03-02 Thread Ray Harrison
The latest information in hand that I know of is that no - they do not support EJBQL - although that may have changed recently. Not sure that I know of any app server that is fully EJB2.0 compliant as yet... Cheers RHH --- fresnaULL [EMAIL PROTECTED] wrote: Does Orion provide support for

Re: configuring an application

2001-03-02 Thread Rafael Alvarez
Hello G.L., you need to put the following in your server.xml: application name="cais" path="/u/build/"/ And create an application.xml file in /u/build/META-INF ?xml version="1.0"? !DOCTYPE application PUBLIC "-//Sun Microsystems, Inc.//DTD J2EE Application 1.2//EN"

Re: EJB values into xml attributes (a little off topic, I know)

2001-03-02 Thread Falk Langhammer
Hi Randahl, - Original Message - From: "Randahl Fink Isaksen" [EMAIL PROTECTED] XMLEscaper.escape(Book.getPreface()) for all the output you take from your beans and use to generate XML really sounds like a mess to me. While we are at it: If you just *have* to do this conversion, why

RE: Java ftp

2001-03-02 Thread John Miller
Thanks lots. Nice library, it's a great help. Johnny -Original Message- From: Marcel Schutte [mailto:[EMAIL PROTECTED]] Sent: 02 March 2001 12:14 To: Orion-Interest Subject: Re: Java ftp See http://www.savarese.org/oro/ I think that's the library that is used by the optional ftp task

AW: Java ftp

2001-03-02 Thread Regele, Manfred
Multithreaded FTP-Bean (OpenSource IBM). Would not reccommend it in a EJB-Class, since it seems to be multithreaded. http://www10.software.ibm.com/developerworks/opensource/cvs/ftp/ Manfred Regele ADIG Investment GmbH 22 MethodenTools Richard-Reitzner-Allee 2 85540 Haar Tel: 089/46268-308

Re: ONCE AGAIN !!!! PK.class CMP beans in ORION

2001-03-02 Thread Dominic Hanlan
I don't know about the Roman book, I downloaded it but as I can't print it and read it on the toilet so . The O'Reilly book on EJB is excellent and covers the CMP and PK question fully. I literarily implemented my usage straight out of the book. Regards

Re: Capturing the output of a JSP page as HTML

2001-03-02 Thread Geoff Marshall
No problem, write a servelt or other JSP page that does a method='post' to the JSP in question. You will have to read the output of the page into a variable. Then you can write the variable to both a file and out.println. The only catch is you will have to have a class that can do a post! See

Re: need help getting started

2001-03-02 Thread Geoff Marshall
I'm using Orion for only JSP, Beans and Servlets. It's solid, fast, and when you're ready to move on, you don't have to move out -- -Geoff Marshall, Director of Development ... t e r r a s c o p e (415) 951-4944 54

Re: Storing HttpServletRequest Object in Session

2001-03-02 Thread Geoff Marshall
Because when you retrieve the request, the request is over. The object is gone. Set those values at the session level. -- -Geoff Marshall, Director of Development ... t e r r a s c o p e (415) 951-4944 54 Mint Street,

ResultSet chaching

2001-03-02 Thread Luis Javier Beltran
Hi, Does Orion do resultset caching? because althought the database data has changed it still shows me the same data it showed before adding information to the db... If it does, how can I disable it? thanks a lot! Luis Javier

Re: Capturing the output of a JSP page as HTML

2001-03-02 Thread Boris Erukhimov
We had a similar task that Andy described and solved it in almost exactly a way Geoff suggested. But if I were to approach it now, I'd rather use filter and owerwrite response object. That saves extra HTTP connection within request processing and looks more elegant anyway. ~boris Geoff

RE: EJBQL

2001-03-02 Thread Edoardo Comar
-Original Message- that may have changed recently. Not sure that I know of any app server that is fully EJB2.0 compliant as yet... have a look at what's happening here ... http://theserverside.com/home/thread.jsp?thread_id=4658

Is there an Orion Newsgroup?

2001-03-02 Thread Matt O'Donnell
The emails are great but a little difficult to manage and search through. == http://www.compoze.com = Matt O'Donnell Compoze Software, Inc. 953 Mission St. Suite 150 San Francisco, CA 94103 Internet: [EMAIL PROTECTED] Office: 415.247.9797 Fax: 415.247.0208

Re: AW: Java ftp

2001-03-02 Thread Tim Endres
There is also a nice FTP package at: http://www.gjt.org/servlets/JCVSlet/list/gjt/com/fooware/net tim. Multithreaded FTP-Bean (OpenSource IBM). Would not reccommend it in a EJB-Class, since it seems to be multithreaded. http://www10.software.ibm.com/developerworks/opensource/cvs/ftp/

Re: EJBQL

2001-03-02 Thread denis despinoy
After testing against the ejb2.0 spec It appears Orion and Weblogic are the only two considered EJB2.0 compliant so far. What are looking after in the ejb2.0 spec ? DD --- Ray Harrison [EMAIL PROTECTED] wrote: The latest information in hand that I know of is that no - they do not support

RE: EJBQL

2001-03-02 Thread Ray Harrison
Very interesting discussion. Definitely worth a look. --- Edoardo Comar [EMAIL PROTECTED] wrote: -Original Message- that may have changed recently. Not sure that I know of any app server that is fully EJB2.0 compliant as yet... have a look at what's happening here ...

Re: AW: Java ftp

2001-03-02 Thread David Morton
http://www.savarese.org/oro/products/NetComponents.html At 01:08 PM 3/2/01 -0500, you wrote: There is also a nice FTP package at: http://www.gjt.org/servlets/JCVSlet/list/gjt/com/fooware/net tim. Multithreaded FTP-Bean (OpenSource IBM). Would not reccommend it in a EJB-Class, since

Re: Storing HttpServletRequest Object in Session

2001-03-02 Thread Jeff Hubbach
Why are you trying to put the request into the session? If you're doing a jsp:forward to two.jsp, then you can still see your request. The following works... one.jsp ... request.setAttribute("ONE","1"); request.setAttribute("TWO","2"); jsp:forward page="two.jsp" / two.jsp ... One is

Default datasource.

2001-03-02 Thread James Hill
Is there a j2ee standard way to get the default datasource (that your CMP beans would be using) from a servlet or a session bean? Thanks, James

Finding my images

2001-03-02 Thread Paul G. Markovich
Hi, I have set up a web.xml file in the default-web-app directory, it reads as follows: web-app servlet servlet-nameMyApp/servlet-name servlet-classcom.testing.test/servlet-class load-on-startup1/load-on-startup servlet-mapping

RE: Orion Tutorial, Parts 1 and 2

2001-03-02 Thread Kemp Randy-W18971
That's a wonderful offer and would group all the tutorials together under one web site -- you both have created very excellent tutorials. -Original Message- From: Ernst de Haan To: Orion-Interest Sent: 3/1/01 7:30 PM Subject: Re: Orion Tutorial, Parts 1 and 2 Although I've written my

webwork/cookie issue

2001-03-02 Thread Stan Ng
I ran into an interesting bug with regards to WebWork... thanks for Jeff for sorting it out. I just wanted to see if anyone here had any advice on working around this bug? Forwarded from webwork mailing list: - Original Message - From: "Jeff Schnitzer" [EMAIL PROTECTED] To: "Stan

Re: Default datasource.

2001-03-02 Thread Jay Armstrong
James, J2EE EJB containers are not required to implement persistence mechanisms in any particular way. Because the interface between J2EE servers and EJB containers is left up to the server vendors, I do not believe that there is any "standard" way to communicate with a container to determine

ssl and com.evermind.util.User ?

2001-03-02 Thread denis despinoy
I've installed a portion of my site under SSL. this part works great and thanks to the info got from this list ! I'm now trying to get the /demo/ssl/ssl-user-registration.jsp to run but I'm faced with 2 prbs ! it seems I cannot locate 1) com.evermind.util.User ! which jar file does it live

Re: EJBQL

2001-03-02 Thread Jim Archer
Denis, this is way overstating the "compliance" of both Orion and Weblogic. Both of these servers have substantial issues with adherence to the proposed final draft. Both lack some features and implement others incorrectly or incompletely. Any examples you see that are written to demonstrate