RE: Trying to build the latest Jetspeed

2000-10-25 Thread Peter Donald

At 11:36  25/10/00 +1000, you wrote:
At 11:05  24/10/00 -0700, you wrote:
Anyone able to access
:pserver:[EMAIL PROTECTED]:/products/cvs/jetspeed for the last few
days? I couldn't login with anon.

Nope - haven't been able to access it for a while. I thought it was just me
thou ;)

I can do updates (ie update a current tree) but can not get new module or
login again - very odd.

bleh - ignore this. I realized the client I was trying to use was adding an
extra space at end of module name ;( Once I removed that it was fine ;)

Cheers,

Pete

*--*
| "Nearly all men can stand adversity, but if you want |
| to test a man's character, give him power."  |
|   -Abraham Lincoln   |
*--*


--
--
Please read the FAQ! http://java.apache.org/faq/
To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Archives and Other:  http://java.apache.org/main/mail.html
Problems?:   [EMAIL PROTECTED]




Re: portlet - security proxy?

2000-10-25 Thread Anbunidhi Mahalingam

As of now,  we do not have the facility to check the credentials in the
portlet.  But it is in the proposal list in CVS.Please do check
http://www.working-dogs.com/jetspeed/cvsweb/index.cgi/jetspeed/docs/proposal

Though Turbine supports it is just for portal. Not for portlet.. So once the
proposal is implemented we can do it.


Anbunidhi Mahalingam




- Original Message -
From: "Ivanova, Jordanka" [EMAIL PROTECTED]
To: "'JetSpeed'" [EMAIL PROTECTED]
Sent: Tuesday, October 24, 2000 9:58 PM
Subject: portlet - security proxy?


 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 have any links or info please
 email. Thanks,
 Dannie


 --
 --
 Please read the FAQ! http://java.apache.org/faq/
 To subscribe:[EMAIL PROTECTED]
 To unsubscribe:  [EMAIL PROTECTED]
 Archives and Other:  http://java.apache.org/main/mail.html
 Problems?:   [EMAIL PROTECTED]





--
--
Please read the FAQ! http://java.apache.org/faq/
To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Archives and Other:  http://java.apache.org/main/mail.html
Problems?:   [EMAIL PROTECTED]




Wrong Cocoon Pointer

2000-10-25 Thread Thomas Michael Schwarz

Hello,
my Example Cocoon Portlet wants to read from the following wrong path, how can i
correct this ?

/f:/jakarta-tomcat/webapps/jetspeed-system/cache\file..fjakarta-tomcat.webapps.jetspeed-system.cache\http..localhost..8080..content..dynamic..indexxml

Greetings
Thomas



--
--
Please read the FAQ! http://java.apache.org/faq/
To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Archives and Other:  http://java.apache.org/main/mail.html
Problems?:   [EMAIL PROTECTED]




2 Problems

2000-10-25 Thread Mamei Marco

Hi,
I spent the last week trying to configure Jetspeed and I realised that the
problem was that I was behind a proxy!!!
Is it possible to fetch external URLs from behind a proxy? (it it a jetspeed
or a proxy problem ?)

Up to now I downloaded the jetspeed1.2b1 from jetspeed site, but now I would
like to download the current code and then build it.
I downloaded wincvs, but I can't use it!

Can you teach me how to get the code and build it

Thank you VERY much
Marco


--
--
Please read the FAQ! http://java.apache.org/faq/
To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Archives and Other:  http://java.apache.org/main/mail.html
Problems?:   [EMAIL PROTECTED]




Localization

2000-10-25 Thread SHINOHARA


How do you do !
Recently, I could view my own RSS pages in Japanese characters
bihind fierewall.
However, I cound not view my own Cocoon pages in Japanese characters
while I could do those independently for portlets function.
Hope that helps,
Kunitake Shinohara



--
--
Please read the FAQ! 
To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Archives and Other:  
Problems?:   [EMAIL PROTECTED]



Re: JSP portlet

2000-10-25 Thread Rogier Schaaf

Christian,

I tried your implementation of EcsJSPElement (together with a JspPortlet
that gets its content from a JSP). All looks to be working allright, however
I see that the content of the JSP appears on top of my Jetspeed home page
and not in it's Portlet box. Also the JSP element that gets constructed
appears "empty"?

I'm not familiar with ECS. Do you have any idea what it is I am doing wrong?

Thanks,
Rogier

- Original Message -
From: "Christian Sell" [EMAIL PROTECTED]
To: "JetSpeed" [EMAIL PROTECTED]
Sent: Wednesday, October 25, 2000 02:33
Subject: Re: JSP portlet


 I have done something similar a while ago. Basically, I implemented an
 EcsElement, which I returned from the Portlet.getContent(). At the end of
 the message you find the code for the Ecs class, which has been adapted
for
 this list, it probably does not compile as is. The getContent() may look
 like this:

 public ConcreteElement getContent() {

 return new EcsJSPElement(rundata, url);
 }

 You could also define the EcsJSPElement as an anonymous inner class in the
 above method.

 Hope this helps,
 Christian


 import org.apache.ecs.GenericElement;
 import org.apache.ecs.Element;

 import java.io.IOException;
 import java.io.OutputStream;
 import java.io.PrintWriter;
 import java.io.OutputStreamWriter;

 /**
 * encapsulates a JSP within the context of ECS
 * HTML-generation. I dont particularily like this.
 */
 public class EcsJSPElement extends GenericElement
 {
  private String theUrl;
  private Rundata rundata;

 public Element addElementToRegistry(Element element)
  {return element;}
 public Element addElementToRegistry(String element)
  {return null;}
 public Element removeElementFromRegistry(Element element)
  {return element;}
 public Element removeElementFromRegistry(String element)
  {return null;}
 public boolean registryHasElement(Element element)
  {return false;}
 public boolean registryHasElement(String element)
  {return false;}

  public EcsJSPElement(Rundata rundata, String urlString)
  {
   this.theUrl = urlString;
   this.rundata = rundata;
  }
 public void output(OutputStream out)
 {
 output(new PrintWriter(out));
 }

 /**
 Add element to the designated PrintWriter.
 */
 public void output(PrintWriter out)
 {
 ServletContext ctx = rundata.getServletContext();
 RequestDispatcher dispatcher = ctx.getRequestDispatcher(url);
 try
 {
 // include the JSP. Maybe flush first?

  dispatcher.include(rundata.getRequest(),
 rundata.getResponse());
 } catch (Exception e) {
 String message = "JSPPortlet: Could not include the following
 URL:  " + url + " : " + e.getMessage();
 Log.error( message, e );
 out.print(message);
 }
 }
 }




 --
 --
 Please read the FAQ! http://java.apache.org/faq/
 To subscribe:[EMAIL PROTECTED]
 To unsubscribe:  [EMAIL PROTECTED]
 Archives and Other:  http://java.apache.org/main/mail.html
 Problems?:   [EMAIL PROTECTED]





--
--
Please read the FAQ! http://java.apache.org/faq/
To subscribe:[EMAIL PROTECTED]
To unsubscribe:  [EMAIL PROTECTED]
Archives and Other:  http://java.apache.org/main/mail.html
Problems?:   [EMAIL PROTECTED]