[EMAIL PROTECTED] wrote:
> 
> Hello,
> 
> How to test Jetspeed localy (I know.. it not the way jetpeed is intended to work :-)
> 
> I try to point the portlets towards the two .rss files that are in the distrib 
>(jetspedd.rss and bookmarjs.rss) and
> I get a "could not parse the following url :
> http://localhost:8080/content/xml/rss/jetspedd.rss
> 
> Java.net.unknowHostException : C:
> at java.net.InetAddres.getAllByName0(InetAddress.java:577) ...
> 

First make sure you can access the URL 

http://localhost:8080/content/xml/rss/jetspeed.rss

from a browser. 
If you can't you're web server configuration (or the above URL) needs to be
modified, among the possible incorrect values in the server (the port, the
/content/ mapping, etc...)


The unknownHostException is caused by the caching system which uses
URLs in the form:
        file://<cache_dir>/chached_file

If you tempdir begins with a drive letter (like c:), the JVM tries to contact
the 'c:' host and fails.

FIX: in the JetSpeed properties file either don't use drive letters
(cache=/temp/cache)
or prefix the letter with a / (cache=/e:/temp/cache)

This needs to be documented in the properties file.

--
Rapha�l Luta - [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]

Reply via email to