aggregate takes too much time

2004-10-11 Thread [EMAIL PROTECTED]
Hi all, Aggregating xml in cocoon takes too much time. I try to aggregate 10 xml files ( from filesystem: file:/// ) It takes about 4-7 seconds just to aggregate w/o transforming :( Any other faster way to aggregate contents? -- Indonesia Cocoon: idcocoon-subscribe @ yahoogroups.com

Re: aggregate takes too much time

2004-10-11 Thread Jan Hoskens
Have you tried different options? Besides the sitemap aggregation there are also some include transformators available: the XInclude and CInclude may do the same as the aggregation. Kind regards, Jan [EMAIL PROTECTED] wrote: Hi all, Aggregating xml in cocoon takes too much time. I try to

Re: aggregate takes too much time

2004-10-11 Thread [EMAIL PROTECTED]
XInclude is faster, but after several requests it slows down (don't know why) CInclude is as slow as map:aggregate. On Mon, 11 Oct 2004 08:30:01 +0200, Jan Hoskens [EMAIL PROTECTED] wrote: Have you tried different options? Besides the sitemap aggregation there are also some include

Re: SVG serializer problem

2004-10-11 Thread Anna Afonchenko
Thanks Andreas. It is probably an IE issue, because the pipeline with **.htm worked from Mozilla. But I really need it to work from IE as well! Is there any way to enforce it? Thank you very much. Anna - Original Message - From: Andreas Hartmann [EMAIL PROTECTED] To: [EMAIL PROTECTED]

CForms: event chaining

2004-10-11 Thread Scott Yeadon
If I have a listener against a button (button A), and when that button is selected I want to force another event (e.g. to simulate the actions caused by another button on the same form being pressed, can I do this from within the button A listener (using Java)? Thanks. Scott.

Re: aggregate takes too much time

2004-10-11 Thread Jan Hoskens
Are you using very large documents? Do you have other pipeline structures in between the aggregation or afterwards that may slow things down? Why do you need to aggregate more than 10 documents at a time? (Not sure I can help, but more info may be usefull for other readers too ;-) Kind Regards,

Re: aggregate takes too much time

2004-10-11 Thread [EMAIL PROTECTED]
no simple aggregation of several local xml files. and one transformation I use profiler, the transformation takes 412 ms. serialization takes 20 ms. On Mon, 11 Oct 2004 09:06:14 +0200, Jan Hoskens [EMAIL PROTECTED] wrote: Are you using very large documents? Do you have other pipeline

Re: SVG serializer problem

2004-10-11 Thread Andreas Hartmann
Anna Afonchenko wrote: Thanks Andreas. It is probably an IE issue, because the pipeline with **.htm worked from Mozilla. But I really need it to work from IE as well! Is there any way to enforce it? Sorry, but I have no idea. Maybe Google knows more? -- Andreas Thank you very much. Anna -

Tomcat exits when opening cForms site

2004-10-11 Thread Michael Häger
Hello, i am having the following problem. I open a cForms site, and from this site I want to redirect to another cForms site. But this is not possible. Each time I press the button on the first page to redirect to the second site I get an infinite loop and mostly Tomcat exits. I recognize

Spring Petstore sample now hosted on Cocoondev.org

2004-10-11 Thread Ugo Cei
FYI, I've just uploaded the Spring Petstore sample that was on the wiki (at http://wiki.apache.org/cocoon/SpringPetstore ) to the Cocoondev site at http://new.cocoondev.org/main/g1/43 Thanks to Steven for the support, Ugo -- Ugo Cei - http://beblogging.com/ smime.p7s Description:

Lucene Term Highlighting

2004-10-11 Thread Mirko Görgen
Hi Does anybody tried out to do a term highlighting using Lucene? I tried to get the Term Highlighter found on the Lucene Sandbox area. But unfortunatly it doesn´t work. For my understanding I have to add the jar file and to extend to xsp lucene example. There is no comment to change s.th. on the

AW: Embedding fonts using fo2pdf serializer

2004-10-11 Thread Westemeyer, Sebastian, VF-DE
Well, I believe that I have tried all combinations of absolute and relative paths, with and without file:///. Still it does not work. Very strange... So I might have to fall back on FOP generating without cocoon. Could the font itself be the reason it does not work? -Ursprüngliche

RE: XML not well formed after transformation - xmlns:%@$#^@#=%@$#^@#

2004-10-11 Thread Bart Molenkamp
Thanks for your reply Lars, but I don't think that I can send input and stylesheets, because I can't find the source of the problem yet, and otherwise I've to upload quite some sources... I'll try to write the scenario down: I want to create reports with Cocoon, in various formats (e.g. HTML, XML

Ghent on Monday (CGT2004)

2004-10-11 Thread robby . pelssers
Where are you guys coming together this evening?? Any pub recommended?? Kind regards, Robby Pelssers -Original Message- From: Steven Noels [mailto:[EMAIL PROTECTED] Sent: 07 October, 2004 17:19 To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: Ghent on Sunday On 07 Oct 2004, at

RE: Ghent on Monday (CGT2004)

2004-10-11 Thread Jeroen Reijn
Robby, we are starting at: Upon popular demand, we meet again at the Amadeus spare rib restaurant. The Amadeus is situated in the middle of gastronomic Ghent: the Patershol. Amadeus Sparerib Restaurant Plotersgracht 8 9000 Ghent t. +32 9 225 13 85 We gather around 19:00 at

Re: multivalue list - set a value greater than 1000

2004-10-11 Thread Paul Joseph
Derek, thank you. This is the solution I wound up using. --Paul --- Derek Hohls [EMAIL PROTECTED] wrote: Paul You need to overwrite the default behaviour on the binding which inserts a ',' as the separator for each set of a thousand in the number e.g. 15,000,000 for fifteen million.

Re: aggregate takes too much time

2004-10-11 Thread Emmanuel Charpentier
Ever used xpathdirectorygenerator? http://cocoon.apache.org/2.1/userdocs/generators/xpathdirectory-generator.html It could be another solution to pit against aggregates manu On Mon, Oct 11, 2004 at 02:25:34PM +0700, [EMAIL PROTECTED] wrote: no simple aggregation of several local xml

Re: how to persist a Collection property to postgresql using jdo

2004-10-11 Thread Paul Joseph
I am using OJB/JDO from Apache/Sun. I am using a postrgesql database. I do have an enhanced class with the following method: class MyClass { Vector collToPersist; void setCollToPersist(Vector collToPersist) { this.collToPersist = collToPersist; } Vector getCollToPersist()

Re: AW: Embedding fonts using fo2pdf serializer

2004-10-11 Thread Christofer Dutz
To solve this problem I have usually added the TTF to the JREs font directory (jre\lib\fonts) I tried several different ways of using custom fonts. This one was the only one that worked well and with good performance. Hope this helps and that nobody recomended this recently, since I missed the

Re: aggregate takes too much time

2004-10-11 Thread Christoph Gaffga
we also had a problem with slow aggregates. We solved it by changing the Aggregator so it works in a multithraded mode. I don't know if it increases the perfomcance in your case because you are only aggregating simple xml files from the filesystem. But in our case (the aggragated parts are not

AW: Weblogic 8.1 and Cocoon 2.1.4 again

2004-10-11 Thread Alexandre Victoor
I have managed to run XSLTC in Weblogic 8.1 by setting to true the flag prefer-web-inf-classes in weblogic.xml. For those who know Websphere, this is the equivalent of classloader mode PARENT_LAST. This option ensures that the xerces/xalan used are the ones shipped with Cocoon. Regards Alex

Re: how does one use JDO to run ALTER TABLE sql command?

2004-10-11 Thread Luca Garulli
JDO API doesn't allow schema updating. If you want to make it, you had to use a direct SQL command. -- bye, Luca Garulli www.OrienTechnologies.com On Sun, 19 Sep 2004 18:09:09 -0700 (PDT), Paul Joseph [EMAIL PROTECTED] wrote: hmm...interesting...Thank you for your reply. We use JDO a lot

Re: aggregate takes too much time

2004-10-11 Thread Ralph Goers
Why not submit this as a patch? Then we can all see it. Christoph Gaffga wrote: we also had a problem with slow aggregates. We solved it by changing the Aggregator so it works in a multithraded mode. I don't know if it increases the perfomcance in your case because you are only aggregating simple

again about the sitemap....

2004-10-11 Thread Roberto
hi there, well reading the mail in the mailist Im feeling bad to ask this question that are really easy nothing for you I guess, but Im still a newbie still need to understand some basic stuff. What is not very clear for me is: there is a main sitemap.xmap puted under

xalan version of cocoon2.1.5.1

2004-10-11 Thread Janvier Majirus FANSI
Hi all, I use cocoon version 2.1.5.1. could anyone know, please the version of xalan supported here. I want to use dynamic extension provided by EXSLT (exslt.org) and supported by xalan version 2.4.1. I thank all of you in advance. regards majirus

Re: aggregate takes too much time

2004-10-11 Thread Christoph Gaffga \(triplemind.com\)
I didn't wanted to send a patch for that. The code is poorly documented nor tested under many circumtances, old license, etc. etc. It was just a workaround for a problem we had. But we use it in production environment with about 350.000 pages a day. So, for my usecase it's stable. And if you

RE: xalan version of cocoon2.1.5.1

2004-10-11 Thread Sascha-Matthias Kulawik
There is version 1.6.2 used. Regards, Sascha -Original Message- From: Janvier Majirus FANSI [mailto:[EMAIL PROTECTED] Sent: Monday, October 11, 2004 4:47 PM To: [EMAIL PROTECTED] Subject: xalan version of cocoon2.1.5.1 Hi all, I use cocoon version 2.1.5.1. could anyone know,

JDK 1.5 and Cocoon

2004-10-11 Thread Roger Powell
Im trying to set up Tomcat, Cocoon, Xindice, and Forrest but Ive only got as far as Cocoon (which I set up OK on a different computer, same OS, about a year ago). Does Cocoon compile under JDK 1.5? (I get errors of the sort: as of release 1.5, enum is a key word and may not be used as

EXSLT extension function within cocoon2.1.5.1 and xalan 2.6.0

2004-10-11 Thread Janvier Majirus FANSI
Hi all, I used cocoon2.1.5.1. when i maked the test to know if xalan 2.6.0 implemented the exslt set module, cocoon return unknow xpath error. My stylesheet contains these lines: xmlns:set=http://exslt.org/set; exclude-result-prefixes=set function-available('set:has-same-node'). should anyone

No function nor continuation given in map:call function

2004-10-11 Thread beyaNet
Hi, I am getting the above mentioned error and I don't understand why. The problem is occurring because a continuation id is not being generated when I call the page login.xml: http://www,beyarecords.com/login.xml now the funny thing about this error message is it is intermittent. It also seems

RE: XForms/DENG passing parameters to Cocoon?

2004-10-11 Thread Lars Huttar
Upayavira wrote: You send me a patch, I'll commit it. How's that sound? Sounds good. What do I edit, the view source output from http://cocoon.apache.org/2.1/userdocs/generators/request-generator.html? I looked at the cocoon/docs/xdocs/userdocs/generators/request-generator.xml

calling an applet

2004-10-11 Thread Craig Christophersen
I am having trouble calling an applet from an xsl. In my sitemap map:read what should be the mime-type? Craig Christophersen(406)496-6421[EMAIL PROTECTED]

Re: calling an applet

2004-10-11 Thread Aurélien DEHAY
Craig Christophersen wrote: I am having trouble calling an applet from an xsl. In my sitemap map:read what should be the mime-type? http://wiki.apache.org/cocoon/ServingStaticFiles Rgds. -- Aurélien DEHAY http://logicielslibres.info Passer pour un idiot aux yeux d'un imbécile est une

Re: SVG serializer problem

2004-10-11 Thread J.Pietschmann
Anna Afonchenko wrote: It is probably an IE issue, because the pipeline with **.htm worked from Mozilla. But I really need it to work from IE as well! Is there any way to enforce it? IEx is known to ignore advice from the server. This is quite hardwired at least up to IEx 5.5, and there is no

Re: AW: Embedding fonts using fo2pdf serializer

2004-10-11 Thread J.Pietschmann
Christofer Dutz wrote: To solve this problem I have usually added the TTF to the JREs font directory (jre\lib\fonts) I tried several different ways of using custom fonts. This one was the only one that worked well and with good performance. That's strange because to FOP PDF renderer doesn't (and

Re: AW: Embedding fonts using fo2pdf serializer

2004-10-11 Thread J.Pietschmann
Westemeyer, Sebastian, VF-DE wrote: Well, I believe that I have tried all combinations of absolute and relative paths, with and without file:///. Still it does not work. It worked for me. Could the font itself be the reason it does not work? If it works for the FOP CLI, it should work in Cocoon

Re: AW: Embedding fonts using fo2pdf serializer

2004-10-11 Thread Christofer Dutz
Well I can't realy say what the difference was. As with a lot of problems where you do a lot of testing and trying, I can't realy say what was the change that mande the deiffernece. As far as I know adding it to the JRE always helped me. I didn't bother trying to find out why, I was just glad

Can't get the xml declaration in the output

2004-10-11 Thread IceT
Hello, Every time I output something with Cocoon, it omits the xml-declaration. Can anybody help me? I'm using the latest release of Cocoon, with J2sdk 1.42, windows XP, IExplorer and Mozzila This is my sitemap: ?xml version=1.0 encoding=UTF-8? map:sitemap

Re: Can't get the xml declaration in the output

2004-10-11 Thread [EMAIL PROTECTED]
IceT wrote: Hello, Every time I output something with Cocoon, it omits the xml-declaration. Can anybody help me? Looks like it doesn't use your xml serializer at all. Does cocoon send mimetype text/xml as you've configured the xml serializer? You can check it with Firefox =Tools =Info. If