RE: Trying to build the latest Jetspeed

2000-10-24 Thread Tang, Bill
Anyone able to access :pserver:[EMAIL PROTECTED]:/products/cvs/jetspeed for the last few days? I couldn't login with anon. bill -- -- Please read the FAQ! http://java.apache.org/faq/ To subscribe:[EMAIL PROTECTED] To

Re: Trying to build the latest Jetspeed

2000-10-24 Thread jon
it should work just fine. maybe try jservpub/jserpub -jon Anyone able to access :pserver:[EMAIL PROTECTED]:/products/cvs/jetspeed for the last few days? I couldn't login with anon. bill -- -- Please read the FAQ!

JSP portlet

2000-10-24 Thread David Sean Taylor
Im trying to write a JspPortlet. My approach is flawed, and Im wondering if anyone else has discovered a way for this to work. Im using a RequestDispatcher, and the problem is that the JSP writes its output directly to the Response So the JSP output cannot be incorporated into ECS since (i

Re: JSP portlet

2000-10-24 Thread Rogier Schaaf
Hmm, I got stuck pretty much the same way you did. Would be VERY neat if we could make this thing work... This problem has been running around my brain for the last couple of days! Regards, Rogier - Original Message - From: "David Sean Taylor" [EMAIL PROTECTED] To: [EMAIL PROTECTED]

portlet - security proxy?

2000-10-24 Thread Ivanova, Jordanka
I am looking for information on how portlet can authenticate user for remote service using the same credentials that he/she logged with in the portal. Like a portlet that connects to email/web space site and retrieves the data given the password and id are identical with the portal's. If you

Re: JSP portlet

2000-10-24 Thread SCHAECK
How to use JSPs within Jetspeed is a very relevant question. I can imagine the following "workaround" to use JSPs together with ECS: You could write a class that implements the interface HTTPServletResponse and uses an output stream that writes to a buffer. You may get the content out of the

RE: JSP portlet

2000-10-24 Thread David Sean Taylor
Christian thank you very much. Plugged your code in and got that working in about 10 minutes! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Christian Sell Sent: Tuesday, October 24, 2000 5:33 PM To: JetSpeed Subject: Re: JSP portlet I have done