Re: Link Hosting:

2005-02-01 Thread Stefan Geelen
Hi, Checkout http://www.kattare.com They have 1. Jboss (check version on there website) 2. postgresql (check version on there website) 3. cocoon 2.X.X (you can install your own versoin in your own environment). Last year we moved to Tomcat, Cocoon and MSSql and we needed there support . There

RE: problem downloading large text files

2004-12-22 Thread Stefan Geelen
Rui, we had the same problem with offering a download to our customers (size: +/- 9 MB). After some days the download size was also 0. We solved the problem by - moving form 2.1.4 to 2.1.6 (new caching system used as of 2.1.5) - put the caching of for those pipelines that serves the download (

read partial an xml file in xsp

2004-12-11 Thread Stefan Geelen
Hi, I could not find how I can manage to read some nodes of an xml file in an xsp page. Can someone give an example or more information ? Regards, Stefan _ Free mail? MSN Hotmail ! http://www.msn.be/hotmail

java.net.MalformedURLException: The cocoon protocol can not be used outside an environment.

2004-12-08 Thread Stefan Geelen
Hi, we are upgrading from 2.1.4 to 2.1.6 and are having following problem: In an xsp page we have following piece of code: xsp:logic ... body= util:get-source uri=cocoon:/mail/outbox/message/; ... /xsp:logic When we run this page via the browser the xsp works

Re: cocoon.dat in cache-dir keeps growing ?

2004-04-23 Thread Stefan Geelen
There, What version of the store are you using? JISP, or JCS? I know there is a JCS issue similar to this. Let me know :) Corin -Original Message-From: Stefan Geelen [mailto:[EMAIL PROTECTED] Sent: Friday, 23 April 2004 8:47 a.m.To: [EMAIL PROTECTED

cocoon.dat in cache-dir keeps growing ?

2004-04-22 Thread Stefan Geelen
Hi, currently our new website built on Cocoon (2.1.4. with Tomcat 5.0.19 on Linux) is 3 weeks in production. Everything is running smoothly accept for one problem: Appareantly the cocoon.dat file keeps growing. It is currenty 95 MB (!) and it seems to keep growing at +/- 15 MB per week.

DatabaseUpdateAction and {session-attr:custid}

2004-04-15 Thread Stefan Geelen
Hi, I posted this question a month ago or so but did not get any reaction. I hope I've more luck now... Basically the question is: How can I passs the a session attribute toa DatabaseUpdateAction ? More info below: I have following in my sitemap: map:action name= "mod-db-upd " src=

Re: Logging in cocoon

2004-04-15 Thread Stefan Geelen
Hi Anna, I have exactly the same problem. Did you in the mean time figure out where it is written to ? Stefan - Original Message - From: Anna Bikkina [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 14, 2004 9:40 PM Subject: Logging in cocoon Hi all, I am using the

BUG in Cron Job Scheduler (was: Can Cron Job Scheduler call .xsp page?)

2004-04-09 Thread Stefan Geelen
? (or something similar so a java.lang.NullPointerException happens). Can this be bugfixed ? Regards, Stefan - Original Message - From: Stefan Geelen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 08, 2004 7:13 PM Subject: Can Cron Job Scheduler call .xsp page (2) ? Hi

Can Cron Job Scheduler call .xsp page (2) ?

2004-04-08 Thread Stefan Geelen
line in the TestCronJob.java InputStream is = null; try { is = process(pipeline); } catch (Exception e) { getLogger().error(in execution of TestCronJob, e); } Anyone any idea ? Thx Stefan - Original Message - From: Stefan Geelen

Re: Can Cron Job Scheduler call .xsp page ?

2004-04-08 Thread Stefan Geelen
line in the TestCronJob.java InputStream is = null; try { is = process(pipeline); } catch (Exception e) { getLogger().error(in execution of TestCronJob, e); } Anyone any idea ? Thx Stefan - Original Message - From: Stefan Geelen

Re: Sendmail.xsp and internal pipeline problem

2004-03-16 Thread Stefan Geelen
to Tomcat 4.0.6. Regards, Stefan - Original Message - From: Joerg Heinicke [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 9:33 PM Subject: Re: Sendmail.xsp and internal pipeline problem On 17.02.2004 09:25, Stefan Geelen wrote: Hi, I have following pipeline

Cocoon 2.1.4 and ProcessingException error with 'large' xml file ?

2004-03-05 Thread Stefan Geelen
Hi, when indexing some XML files I get this strange error: org.apache.cocoon.ProcessingException: Failed to execute pipeline.: org.apache.cocoon.ProcessingException: Cannot parse!: org.xml.sax.SAXParseException: The string -- is not permitted within comments. column: 18 line: 872 cause:

Lucene and output store-fields in search hits

2004-03-05 Thread Stefan Geelen
HI, I noteiced in the SimpleLuceneXMLIndexerImpl class that there is a store-fields parameter to define which content Quote: * p * ttlt;store-fields/gt;/tt * Sets which tags in your content are stored in Lucene as fields, * during the indexing process. Allows them to be output with

XInclude and UTF-16 encoding

2004-03-05 Thread Stefan Geelen
Hi, I build a webpage with default charset=ISO-8859-1" encoding. I need to include another .xml file built in utf-16 encoding: xi:include href="" parse="text" encoding="UTF-16" xi:fallback pExample currently unavailable/p /xi:fallback /xi:include The result is : ...

Aggregation and XInclude ? No solution yet.

2004-03-02 Thread Stefan Geelen
got the impression that neither xinclude nor cinclude would work on the output of a transformer. I worked around the problem by using a transformer which performed the include by using the document() function. Steve On 1 Mar 2004, at 23:32, Stefan Geelen wrote: Hi, I aggregate some

Aggregation and XInclude ?

2004-03-01 Thread Stefan Geelen
Hi, I aggregate some content: ... map:aggregate element="page" map:part element="topnavbar" ns="http://www.xmlmill.com/topnavbar" src=""/ map:part element="mainnavbar" ns="http://www.xmlmill.com/mainnavbar" src=""/ map:part element="content" ns="http://www.xmlmill.com/content"

Sendmail.xsp and internal pipeline problem

2004-02-17 Thread Stefan Geelen
cessed. If I change to to: map:pipeline map:match pattern="announcement/update-announcement-list" map:generate type="serverpages" src=""/ map:transform src=""/ map:serialize / /map:match /map:pipeline Note: now I call the .xsp directly (src="")

The '-' character in pseudo protocols (*not* allowed) ???

2004-02-17 Thread Stefan Geelen
After spending more than a day to find out why this was not working (in a pipeline): map:part element="content" ns="http://www.test.com/content" src=""/ note the dashes '-' in the src attribute, I found out that dashes '-' are *not* valid in a pseudo protocol Is there a reason why

Re: The '-' character in pseudo protocols (*not* allowed) ???

2004-02-17 Thread Stefan Geelen
Antonio, The configuration I use is : Tomcat 4.0.4 Cocoon 2.1.4. Windows XP Prof. Do you think upgrading to Tomcat 4.1.29 solves the problem. Was this behavior reported before ? Regards, Stefan - Original Message - From: Antonio Gallardo [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Sendmail.xsp and whitespace gives error ?

2004-02-16 Thread Stefan Geelen
Hi, following sendmail action (partially reproduced) runs fine: sendmail:send-mail sendmail:fromxsp:exprrequest.get("from")/xsp:expr/sendmail:from ... == Note that you should read the sendmail:from as one line (in case your mail program wraps it). Now, with following an Lanaguage

How to set length of Session ?

2004-02-14 Thread Stefan Geelen
can't get it done. When I ask the value in the resulting page (using xsp-session:get-max-inactive-interval/ ) it always gives me the default value of Tomcat (1800 seconds). Any suggestions ? Stefan - Original Message - From: Stefan Geelen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc

Error: Language Exception

2004-02-14 Thread Stefan Geelen
Hi, I get following compile error: org.apache.cocoon.ProcessingException: Failed to execute pipeline.: org.apache.cocoon.ProcessingException: Language Exception: org.apache.cocoon.components.language.LanguageException: Error compiling myaccount_details_xsp: ERROR 1

Error: This page is not valid page of this markup langugage (?)

2004-02-14 Thread Stefan Geelen
? Stefan - Original Message - From: Stefan Geelen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, February 14, 2004 12:37 PM Subject: Error: Language Exception Hi, I get following compile error: org.apache.cocoon.ProcessingException: Failed to execute pipeline

HELP PLEASE: Language Exception when compiling XSP page

2004-02-13 Thread Stefan Geelen
installation (probably a path like work\Standalone\localhost\yourwebappname\cocoon-files\org\apache\cocoon\www\ xmlmill\xsp\). I haven't used esql, so I don't know if that could be causing the problem. John Stefan Geelen wrote: Hi, I have following XSP page

Re: SOLVED: Language Exception when compiling XSP page

2004-02-13 Thread Stefan Geelen
-2.5.2.jar did make the error go away. Note also that I needed to place these files in to the cocoon\WEB-INF\lib dir . Regards, Stefan - Original Message - From: Stefan Geelen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, February 14, 2004 7:49 AM Subject

Language Exception when compiling XSP page

2004-02-12 Thread Stefan Geelen
Hi, I have following XSP page: - ?xml version="1.0" encoding="ISO-8859-1"?xsp:page language="java" xmlns:xsp="http://apache.org/xsp" xmlns:esql="http://apache.org/cocoon/SQL/v2" page pTEST/p/page/xsp:page When called it generates folllowing error: