RE: Newer FOP to Cocoon 2.1.11

2008-02-18 Thread Kai Mütz
Lehtonen, Mika <> wrote: > I am afraid it won't help. I already increased the heap size to > 2,5/3,5g min/max, but I still can't plot any pdf including raster > out, whether the raster is at any size. It seems like something is > totally broken but I can't imagine that a user could get the whole >

RE: Newer FOP to Cocoon 2.1.11

2008-02-18 Thread Kai Mütz
he.xalan.templates.ElemLiteralResult.execute(ElemLiteralResult.java: 1376) > org.apache.xalan.transformer.TransformerImpl.executeChildTemplates(Transform erImpl.java:2400) > org.apache.xalan.templates.ElemLiteralResult.execute(ElemLiteralResult.java: 1376) > > note The full stack trace of the root cause is available in the > A

RE: Newer FOP to Cocoon 2.1.11

2008-02-13 Thread Kai Mütz
Lehtonen, Mika <> wrote: > Superb! > > ..but still too complicated for me, I'm afraid. > > Could you be more specific on compling part? I tried to compile that > code with javac (1.6.0_04) and got 73 errors. Then I "stole" the You have to compile it with the cocoon 2.1.11 libs in classpath. This s

RE: Newer FOP to Cocoon 2.1.11

2008-02-13 Thread Kai Mütz
[EMAIL PROTECTED] <> wrote: > Hi, > > this is a question, I've been reading mails about a very long time, > but haven't been still get a proper answer to it. > > So I want 0.9x or 1.xx or NG or whatever FOP to Cocoon 2.1.x because > the > 0.20.5 is so restricted. 0.94 would have all the features I

RE: help me cocoon-2.1.10-with-eXist-1.1.1.war

2007-12-13 Thread Kai Mütz
erasmo marciano <> wrote: > I have installed, > Tomcat5 and cocoon-2.1.10-with-eXist-1.1.1.war > > Where i can change the parameter of connection? Which connection do you want to configure? Can you please give us more details about your problem? Kai -

RE: can't call java method from flow

2007-07-30 Thread Kai Mütz
Try var pipeutil = new Packages.org.apache.cocoon.components.flow.util.PipelineUtil(); [EMAIL PROTECTED] <> wrote: > I try to use this method in my flowscript > var pipeutil = > cocoon.createObject(Packages.org.apache.cocoon.components.flow.uti > l.PipelineUtil); > > but I get following error: m

RE: Replacing FOP Jars

2007-07-16 Thread Kai Mütz
[EMAIL PROTECTED] <> wrote: > Hi, > I try to get FOP 0.9x working with Cocoon 2.1.9. Therefore i > added a special FopSerializer class to my build path. That works. > > But when i put the 0.93 fop libs to the > lib directory and replace the new fop.jar with the old one, i receive > an initializatio

RE: Binding Framework - Special characters

2007-06-19 Thread Kai Mütz
[EMAIL PROTECTED] <> wrote: > Kai, > > I find it very unlikely that the binding would be causing this. > More likely the roundtrip to the browser is mixing up the encodings. > > To prove my statement you could omit the form.showForm("..."); line > from your script and check the debug output (my gue

Binding Framework - Special characters

2007-06-19 Thread Kai Mütz
Hi, within an application we are using the binding framework (Cocoon 2.1.8) to bind a form to a very simple value object (which is someting similar to a bookmark, i.e. a id and a title field. The form is prefilled by application like this var code= cocoon.parameters.code; var title = cocoon.param

RE: Cocoon and FOP

2007-06-04 Thread Kai Mütz
Edward S <> wrote: > hi, > > we are using Cocoon 2.1.9 > It comes with a FOP 0.20.5 jar and the FOP components are based on > that jar. > > I found out that FOP 0.93 has a lot of different features as compared > to 0.20.5 How can we use those features in Cocoon. I have replaced the fop jar with th

RE: embedded eXist won't startup on Linux prod

2007-05-09 Thread Kai Mütz
[EMAIL PROTECTED] <> wrote: > Tried that. Still get the problem. > Servlet startup in my web.xml are as follow (and in > that order): > 1) log4j > 2) EXistServlet > 3) DatabaseAdminServlet > 4) cocoon > > I have the same configuration running without problems on debian linux with cocoon 2.1.8 and

RE: embedded eXist won't startup on Linux prod

2007-05-09 Thread Kai Mütz
Try to start eXist during application startup by declaring the DatabaseAdminServlet in web.xml and starting in before Cocoon servlet, e.g.: DatabaseAdminServlet org.exist.http.servlets.DatabaseAdminServlet configuration conf.xml basedir WEB-INF/

RE: Cocoon, Exist and offline generation

2007-04-05 Thread Kai Mütz
[EMAIL PROTECTED] wrote: > Hi All, > > I'm running into some problem trying to generate an > offline version of my site. > I uses cocoon 2.2 and my App uses a bundled Exist > database to access the data. > When generating the offline content, I get the > following error and no offline output: > >

RE: HttpSessionListener help

2007-01-12 Thread Kai Mütz
Does your app creates a session if you are invoking one of the below URLs? If no session is created, no event is fired and the sessionCreated() method is not executed. http://cocoon.apache.org/2.1/developing/webapps/index.html http://cocoon.apache.org/2.1/developing/webapps/session.html http://coc

RE: Antw: log4j config

2006-11-10 Thread Kai Mütz
Is it Coccon that produces these log4j warnings? I think they come from servlet container (Tomcat). Thus the log4j config file should be in the classpath of servlet container. The WEB-INF/log4j.xconf config file configures the cocoon logging. You have to add appenders and categories to it in order

RE: fo2pdf Serialzer problem

2006-10-26 Thread Kai Mütz
See https://issues.apache.org/jira/browse/COCOON-1924 You need the FOPNGSerializer delivered with current SVN Trunk (2.2-dev). It uses the new FOP API. You need at least fop-0.92 in order to work with this Serializer. Regards, Kai > -Original Message- > From: [EMAIL PROTECTED] > [mailt

RE: Binary generator

2006-09-07 Thread Kai Mütz
Are you looking for a reader?   http://cocoon.apache.org/2.1/userdocs/readers.html -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Bhavya SharmaSent: Thursday, September 07, 2006 9:24 AMTo: users@cocoon.apache.org; user@lenya.apache.org;

AW: Flowscript - authentication session data

2006-05-27 Thread Kai Mütz
If you use authentication framework all values of authentication context are returned to the sitemap. Thus you can pass those values to your flowscript. See: http://cocoon.apache.org/2.1/developing/webapps/authentication/pipeline_patt erns.html Furthermore you can use the SessionContext Input Mo

RE: Strange response.setHeader behaviour in custom reader (Cocoon 2.1.8) [SOLVED?]

2006-04-27 Thread Kai Mütz
etaz > Sent: Friday, March 24, 2006 10:39 AM > To: users@cocoon.apache.org > Subject: Re: Strange response.setHeader behaviour in custom reader > (Cocoon 2.1.8) > > > Le 22 mars 06 à 13:58, Kai Mütz a écrit : > > > The first two "ifs" are working correctly. But in cas

RE: PCL serializer help

2006-04-20 Thread Kai Mütz
provide your inputs   Sarvesh  Joerg Heinicke <[EMAIL PROTECTED]> wrote: Kai Mütz already wrote how to setup the FOPSerializer for PCL:http://marc.theaimsgroup.com/?l=xml-cocoon-users&m=114535582410724&w=4JörgOn 20.04.2006 06:51, sarvesh mulay wrote:> Hi

RE: PCL serializer help

2006-04-18 Thread Kai Mütz
I think there is no specific PCLSerializer. You should use the FOPSerializer for generating output in OCL format:   -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of sarvesh mulaySent: Tuesday, April 18, 2006 12:01 PMTo: users@cocoon.apach

RE: Strange response.setHeader behaviour in custom reader (Cocoon 2.1.8)

2006-03-24 Thread Kai Mütz
ehalf Of > Bertrand Delacretaz > Sent: Friday, March 24, 2006 10:39 AM > To: users@cocoon.apache.org > Subject: Re: Strange response.setHeader behaviour in custom reader > (Cocoon 2.1.8) > > > Le 22 mars 06 à 13:58, Kai Mütz a écrit : > > > The first two "ifs&

RE: Strange response.setHeader behaviour in custom reader (Cocoon 2.1.8)

2006-03-24 Thread Kai Mütz
Has anybody observed a similar problem and can help? Thanks in advance, Kai > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of > Kai Mütz > Sent: Wednesday, March 22, 2006 1:59 PM > To: users@cocoon.apache.org > Subject: Stran

RE: passing parameters through authentication?

2006-03-23 Thread Kai Mütz
What do you want to do with this redirect? Something like this: I think, You can not specify a parameter to a redirect. http://cocoon.apache.org/2.1/userdocs/concepts/redirection.html > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of > Fernando Mato Mi

Strange response.setHeader behaviour in custom reader (Cocoon 2.1.8)

2006-03-22 Thread Kai Mütz
Hi, we use a custom reader component similar to ResourceReader which makes use of HTTP Headers. In addition to the settings in ResourceReader I want to disable client caching by setting the "Cache-Control" header (like HTTPCacheAction does). Thus I have extended the seupHeaders() method to: priva

RE: fop 0.91 beta //Serializer

2006-03-08 Thread Kai Mütz
I have attached a simple FopSerializer class which uses the 0.91 beta API. Very similar to the one described in http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=114175770501836&w=4 but can be configured by a configuration file like the "old" FOPSerializer. > -Original Message- > From: [EMA

RE: fop 0.91 beta

2006-03-03 Thread Kai Mütz
I have implemented a simple FopSerializer class which uses the 0.91 beta API for testing purposes only. It is not tested at all. I can give it to you if you are interested. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of > Beat De Martin > Sent: Friday,

RE: XML:DB user authentification

2006-02-27 Thread Kai Mütz
You can configure the cocoon generator of eXist to use a specific user: In sitemap-component registration: In pipeline: Rgards, Kai > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of > Thom

RE: 'Hello World' for Cocoon component builders?

2005-10-17 Thread Kai Mütz
Does your Component implement the org.apache.avalon.framework.thread.ThreadSafe interface? Components I am working on at the moment are implementing this interface and are initialized at cocoon startup. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of

Authentication Framework - List of authenticated users

2005-09-29 Thread Kai Mütz
Hi, I am developing a cocoon based web application using cocoon authentication framework. I wan't to display a list of all users authenticated to cocoon via authentication framework in an "admin area". Is there a possibility to access a list of all authenticated users with valid sessions or rather