RE: Write XML from a post in a page

2006-03-03 Thread Fennell, Philip
Yves, Even better, why not set-up Saxon8 as your XSLT transformer [http://wiki.apache.org/cocoon/Saxon?highlight=%28Saxon8%29] and make use of XSLT 2's xsl:result-document href= element that allows you to write to the filesystem on the server. The transform you invoke in the pipeline uses the

Re: Generation of xml from xml applying xslt

2006-03-03 Thread Derek Hohls
Perhaps supply a copy of the resulting XML for verification here - I assume you have independently checked the cinclude pipeline that is supposed to be called? (PS Please turn off the HTML formatting in your emails; convention is to write in plain text in the mailing group) [EMAIL PROTECTED]

Re: Generation of xml from xml applying xslt

2006-03-03 Thread Warrell . Harries
Hi Arnab, I wonder why you are using the aggregate in the generation stage as you are only aggregating from a single pipeline? I'm not familiar with the dasl transformer but there is no reason that I can see why this is not used inline. For debugging purposes I would simplify this aspect and

RE: Generation of xml from xml applying xslt

2006-03-03 Thread Martijn C. Vos
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] schreef: xsl:textlt;i:include src=/xsl:textxsl:value-of select=@dasl:path/xsl:text/gt;/xsl:text This won't work. What you need is simply: i:include src=[EMAIL PROTECTED]:path}/ By using lt; and gt; you're basically saying: this is not an XML

CFORM: on-delete-row

2006-03-03 Thread Alessandro Vincelli
I have this error on save a form with repeater Internal Server Error Message: Cannot set property /rows[1]/@row-state, path does not match a changeable location Description: org.apache.cocoon.ProcessingException: Error calling continuation at

Re: CFORM: on-delete-row

2006-03-03 Thread Simone Gianni
Ciao Alessandro, althought fb:set-attribute is desgined to work with XML binding, i think you can use it also on beans, since JXPath should operate correctly making the difference transparent to the user. Anyway, in this case, it is searching for a setRow-state or for a public row-state

Re: Generation of xml from xml applying xslt

2006-03-03 Thread Warrell . Harries
Hi, Firstly, I don't understand why you are using the namespace xmlns:i if you want to use the cinclude transformer as this uses the xmlns:cinclude Secondly, I think that the declaration of xmlns:cinclude=http://apache.org/cocoon/include/1.0 in the stylesheet and the output of cinclude:include

problems in executing map:aggregate pipeline

2006-03-03 Thread rahul . manavi
Hi, I'm using cocoon 2.1.8 with JDK 1.4.2. Problem Description: I'm trying to execute a pipeline using map:aggregate map:part, which I'm describing below. While executing I'm getting HTTP ERROR 500: INTERNAL SERVER ERROR alongwith java.lang.stackOverflow Error in jetty server. can anybody

Re: Generation of xml from xml applying xslt

2006-03-03 Thread arnab . jena
Hi All, Thanks for all the support and help I recieved from all of you.It is working now. Regards, Arnab Jena Assistant Systems Engineer Tata Consultancy Services Limited Bangalore,Karnataka India Mailto: [EMAIL PROTECTED] Website: http://www.tcs.com [EMAIL PROTECTED] 03/03/2006

Stopping Jetty (was: Organizing own project in cocoon?)

2006-03-03 Thread Fernando.Matomira
If Jetty is started with with cocoon:run, how is it stopped afterwards? -Original Message- From: g[R]eK [mailto:[EMAIL PROTECTED] Sent: Thursday, March 02, 2006 7:00 PM To: [EMAIL PROTECTED] Subject: Re[2]: Organizing own project in cocoon? Witaj Fernando! W Twoim liście datowanym 2

Re: problems in executing map:aggregate pipeline

2006-03-03 Thread Jason Johnston
The sitemap runs matchers in order of appearance, and internal cocoon:/ calls run all pipelines, not just internal-only ones. So with the sitemap you pasted below, each of your map:part/s is first matched by the pattern=*/*. This forms an infinite loop. You should move your internal-only

Re: problems in executing map:aggregate pipeline

2006-03-03 Thread holger . willenborg
Rahul, looks correct to me. To narrow down the error cause: Try the following to figure out if it's in the aggregation or in the transformation: map:match pattern=*/* map:aggregate element=page map:part src="" element=header / map:part src="" element=subheader / map:part src=""

Re: fop 0.91 beta

2006-03-03 Thread Beat De Martin
Thanx for your answer. Is there anybody working on it ? Cheers Beat De Martin --- Ursprüngliche Nachricht --- Von: Antonio Fiol Bonnín [EMAIL PROTECTED] An: users@cocoon.apache.org Betreff: Re: fop 0.91 beta Datum: Wed, 1 Mar 2006 11:13:02 +0100 No. The API is really different. I

Re: CForms multivalue field breaks if used within union widget with AJAX enabled??

2006-03-03 Thread Ralph Rauscher
Antonio Gallardo wrote: Ralph Rauscher wrote: Yes, there is a sample. The datasource chooser in the cforms samples section shows the problem. When switching union cases, the values are being remembered when using a cocoon 2.1.8. Using 2.1.9-dev values entered (or values initially loaded

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,

accessing another servlet from cocoon pipeline

2006-03-03 Thread Fansi
Hi all, I am developping a web application which interacts with eXist xml database. I have set a pipeline that updates my database by executing an XUpdate document. What i need is to check some properties of the database after the updates. map:match pattern="update" map:generate src=""/

Re: Existing XSP not found by Cocoon (only on Linux)

2006-03-03 Thread Jakob Fix
Well, it's been quite a number of months that I didn't have time to look at this problem, but I just wanted to let the mailing list know that I've just solved this problem, and that it had nothing to do with the XSP files, but with the sitemap.xmap file. A very embarassing and stupid typing

RE: Generation of xml from xml applying xslt

2006-03-03 Thread Martijn C. Vos
[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] schreef: Hi, Firstly, I don't understand why you are using the namespace xmlns:i if you want to use the cinclude transformer as this uses the xmlns:cinclude It doesn't matter if you use cinclude or i as prefix, as long as the real namespace is

Migrating Cocoon site for static presentation

2006-03-03 Thread J.D. Williams
I have a Cocoon webapp that is nothing more than a way of presenting XML-based documentation based on an arbitrary DTD. I use Cocoon instead of another way of building the HTML output because it works better than any other method I have tried. The important thing is the DTD. It is required as

problem running consecutive transformers

2006-03-03 Thread Fansi
Hi all, I have wrote a pipeline in which there are two consecutives transformers. my pipeline is thus: map:pipeline match="majirus" map:generate src=""/ map:transform type="xmldb"/ map:transform type="csysec"/ !-- csysec is my proper transformer -- map:serialize/ /map:pipeline

Re: accessing another servlet from cocoon pipeline

2006-03-03 Thread Giacomo Pati
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Fri, 3 Mar 2006, Fansi wrote: Date: Fri, 3 Mar 2006 16:00:17 +0100 (CET) From: Fansi [EMAIL PROTECTED] Reply-To: users@cocoon.apache.org To: users@cocoon.apache.org Subject: accessing another servlet from cocoon pipeline Hi all, I am

[FLOW] sendPageAndWait continuation storage

2006-03-03 Thread Bruyn Bill
When a continuation is created by sendPageAndWait, where is it stored? Can I access it with flowscript or in the sitemap? I have a scenario similar to the 'flowscript continuation from external reply' problem discussed recently. What I'm trying to do is iterate over a list, and for each item in

Re: Migrating Cocoon site for static presentation

2006-03-03 Thread Fady Albashiti
Hi, i have the same problem/plan and after asking the list, martin has sent this link (i ll try it tomorrow): http://www.mail-archive.com/users@cocoon.apache.org/msg31015.html if you find more, tell me please Fady J.D. Williams wrote: I have a Cocoon webapp that is nothing more than a way

Re: Need help w/ entity resolution

2006-03-03 Thread Mark Lundquist
On Feb 23, 2006, at 12:30 AM, Josep A. Frau wrote: You can use the entity catalog to map public DTD entities to file system files. http://cocoon.apache.org/2.1/userdocs/concepts/catalog.html Well, that's just the thing... I know how to use the entity catalog, and in fact it works fine — as

Re: [FLOW] sendPageAndWait continuation storage

2006-03-03 Thread Simone Gianni
Hi Bruyn, there is a continuation input module, that you can use inside the sitemap to pass any continuation information to any object (an xsl, a flow, a custom object of yours). For example, to pass the continuation id as a parameter to an XSLT you can simply write : map:transform

RE: [FLOW] sendPageAndWait continuation storage

2006-03-03 Thread Bruyn Bill
Just what I was looking for. Thanks, Simone! BTW, if I wanted to pass my bizData from flow to the sitemap and then into another pipeline, I could just: map:parameter name=obj value={flow-attribute:bizData}/ (or something like that anyway) - right? -Original Message- From: Simone

namespaces in root element of xsp generated page

2006-03-03 Thread Simon Stanlake
Hi, I've got an xsp page that I would like to have generate xml that looks like the following... root xmlns:foo="http://www.foo.com" datahello/data /root Problem is i'd like to have the foo namespace be dynamic, ie: come from a form variable or database or something. I can add dynamic

Re: [FLOW] sendPageAndWait continuation storage

2006-03-03 Thread Simone Gianni
Bruyn Bill wrote: Just what I was looking for. Thanks, Simone! BTW, if I wanted to pass my bizData from flow to the sitemap and then into another pipeline, I could just: map:parameter name="obj" value="{flow-attribute:bizData}"/ (or something like that anyway) - right? Yeah, right,