Core libraries

2002-02-19 Thread Ugo Cei
I've recently decided that the simplest way to start a new Cocoon project is to prepare a minimal configuration as a template and start adding to it whatever is needed. I've got the latest CVS, compiled it (WITH scratchpad) and tried to strip sitemap.xmap and cocoon.xconf to their barebones

Sun's SDK1.4 license terms

2002-02-19 Thread Enke Michael
Hi, as I see some people using SDK version 1.4: Did you guys read the license terms? Especially VERSION 1.4.X SUPPLEMENTAL LICENSE TERMS? 5. Notice of Automatic Software Updates from Sun. 6. Notice of Automatic Downloads. I refuse to use SDK 1.4 with such conditions. Has anybody more

RE: Core libraries

2002-02-19 Thread Carsten Ziegeler
Hi, you have to remove the libraries from the lib/opt directory *before* building cocoon. The resulting webapp should be runnable without any changes. Carsten -Original Message- From: Ugo Cei [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 19, 2002 9:28 AM To: [EMAIL PROTECTED]

Re: some XSLT benchmarks

2002-02-19 Thread Torsten Curdt
On Mon, 18 Feb 2002, Jacek R. Ambroziak wrote: Took me a while to recreate XSLTC driver for XSLTMark but it appears to be working now. Here are the results: Dell Inspiron 8000 Intel Pentium III (Coppermine) 900 MHz 256 MB RAM Red Hat Linux 7.1, kernel 2.4.16 magic numbers (w/ test

Finally live worldwide

2002-02-19 Thread Michael Homeijer
Hi, Finally after some time performance tuning, checking the performance of Cocoon 2, a site we build for a customer was tuned on Cocoon 1. We now have acceptable and stable performance. The site is highly dynamic because virtually everything is personalized, the data (prices, etc) that is

Re: some remnants of old JaxpParser

2002-02-19 Thread David Crossley
Carsten Ziegeler wrote: David Crossley wrote: snip/ Perhaps i did not express myself clearly. I am trying to verify that the Catalog Entity Resolver is still functioning properly after the move to Excalibur JaxpParser. When i look at the startup logs, then there is one mention

RE: some remnants of old JaxpParser

2002-02-19 Thread Carsten Ziegeler
David Crossley wrote: OK now that is a non-issue, i can say that the Entity Resolver is still happy after the move to Excalibur JaxpParser. Great to hear this! Thanks David. Carsten - To unsubscribe, e-mail: [EMAIL

CookieMatcher

2002-02-19 Thread Maciek Kaminski
Please feel free to add attached CookieMatcher into Cocoon codebase, if You find it useful. Maciek Kaminski [EMAIL PROTECTED] package org.apache.cocoon.matching; import org.apache.avalon.framework.parameters.Parameters; import org.apache.avalon.framework.logger.AbstractLoggable; import

FileWritingTransformer and Windows

2002-02-19 Thread Bert Van Kets
Has anybody been able to use the FileWriterTransformer under Windows? I'm getting file access errors from Cocoon (Could not read resource file:/C:/tomcat/webapps/cocoon/mount/editor/docs/test1.xml), althought the test1.xml file does exist! The tests 1 through 4 work perfectly under Linux. Does

RE: Generating pipeline's content to xml

2002-02-19 Thread Carsten Ziegeler
Rogier Peters wrote: Hi, I'm looking for a way to generate a pipeline's content for a given url, instead of the result of its execution. Basically I'd be asking cocoon: what pipeline would you use for this url? In other words: the url: http://localhost:8080/hello.html.sitemap

RE: FileWritingTransformer and Windows

2002-02-19 Thread Carsten Ziegeler
Hi, I'm not sure, but I think windows needs two slashes after file: - the backslashes are not required. How do you construct the whole file URI? Do you use the SourceResolver? If you for example use the relative path mount/editor/docs/test1.xml and put it into the SourceResolver.resolve method,

cvs commit: xml-cocoon2/src/java/org/apache/cocoon/environment AbstractEnvironment.java

2002-02-19 Thread cziegeler
cziegeler02/02/19 04:02:02 Modified:src/java/org/apache/cocoon/environment AbstractEnvironment.java Log: Fix for file uri handling Revision ChangesPath 1.8 +3 -3

HTTPHTMLGenerator

2002-02-19 Thread Reinhard Pötz
I had the same problem as described in bug #6520 (http://marc.theaimsgroup.com/?l=xml-cocoon-devm=101402671004632w=2). I solved this problem using the HTTPClient (commons-httpclient-20011012.jar). The use of the HTTPClient makes it possible to use the POST-paramters and HEADER-parameters of the

RE: Core libraries

2002-02-19 Thread Davanum Srinivas
Ugo, 1. Remove all libraries from optional directory before you build cocoon. 2. Remove the whole section target-language name=js found under xsp-language from cocoon.xconf. Those entries use bsf jar. Thanks, dims --- Carsten Ziegeler [EMAIL PROTECTED] wrote: Hi, you have to remove the

Re: INTEGRATING STRUTS AND COCOON

2002-02-19 Thread Piroumian, Konstantin
This question is hardly related to Cocoon, especially to cocoon-dev mail list. HI , How to map cocoon to *.xml path . Change your URL mapping for Cocoon servlet in WEB-INF/web.xml from '/' to '*.xml' (or anything you like, maybe '*.xsp'). It will be great if you could provide with some

Re: HTTPHTMLGenerator

2002-02-19 Thread Davanum Srinivas
Reinhard, Can we replace the existing HTMLGenerator with this one? The objective is that we should enhance the code with what we learn from our experiences :) Can you please check existing samples with this Generator and then post a diff to existing HTMLGenerator at Bugzilla

Re: CookieMatcher

2002-02-19 Thread Davanum Srinivas
Maciek, Is it possible to contribute a small sample that we can test with? If you can please add the sample as well as the code below at BugZilla (http://nagoya.apache.org/). The sample will help people understand how to use the CookieMatcher as well as for testing. Thanks, dims --- Maciek

Re: EmailTransformer and Mock Classes Update

2002-02-19 Thread Davanum Srinivas
Stuart, Is this a contribution? If yes, Thanks for your contribution. Can i ask you for a few more changes? 1. Test cases should be under xml-cocoon2\src\test 2. Change com.adolos.cocoon to something more that appropriate. 3. A stand-alone sample that can be used for illustration of how to use

Re: HTTPHTMLGenerator

2002-02-19 Thread reinhard_poetz
I think so ... but I havn't had the time of thinking it through. In my opinion I only have to check whether the src starts with http or not. If this is true I use my way of reading the src otherwise I will use the SourceResolver. The second thing is making it Cachable ... Maybe someone could

Portal ArrayIndexOutOfBounds error

2002-02-19 Thread Bert Van Kets
I'm getting ArrayIndexOutOfBounds errors on the portal. I log in as a guest or administrator and at different points I'm getting the error. It happens on different occasions, but most of the time whenI request the main page after the login. Here's the error: Cocoon 2 - Internal server error type

cvs commit: xml-cocoon2/src/java/org/apache/cocoon/environment AbstractEnvironment.java

2002-02-19 Thread cziegeler
cziegeler02/02/19 06:26:52 Modified:src/java/org/apache/cocoon/environment AbstractEnvironment.java Log: This should be now the correct file URI handling... Revision ChangesPath 1.9 +8 -4

RE: Portal ArrayIndexOutOfBounds error

2002-02-19 Thread Carsten Ziegeler
Hi Bert, do you have a stack trace available from the logs? Carsten -Original Message- From: Bert Van Kets [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 19, 2002 3:23 PM To: [EMAIL PROTECTED] Subject: Portal ArrayIndexOutOfBounds error I'm getting ArrayIndexOutOfBounds errors on

Re: Sun's SDK1.4 license terms

2002-02-19 Thread Berin Loritsch
Enke Michael wrote: Hi, as I see some people using SDK version 1.4: Did you guys read the license terms? Especially VERSION 1.4.X SUPPLEMENTAL LICENSE TERMS? 5. Notice of Automatic Software Updates from Sun. 6. Notice of Automatic Downloads. I refuse to use SDK 1.4 with such

DO NOT REPLY [Bug 6549] New: - [PATCH] new powered by Cocoon bitmap

2002-02-19 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6549. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6549] - [PATCH] new powered by Cocoon bitmap

2002-02-19 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6549. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6554] New: - [PATCH] new interactive target in build to help in installing the scratchpad war

2002-02-19 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6554. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6554] - [PATCH] new interactive target in build to help in installing the scratchpad war

2002-02-19 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6554. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: EmailTransformer and Mock Classes Update

2002-02-19 Thread Stuart Roebuck
Yes it is a contribution, but being rushed off my feet at the moment I didn't want to spend ages re-packaging it only to find that it wasn't suitable or of interest. If it is suitable and of interest, then can you confirm that the following would be a suitable approach re: re-packaging? 1.

DO NOT REPLY [Bug 6555] New: - Can't start first time (tomcat 4.0.2)

2002-02-19 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6555. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

Re: EmailTransformer and Mock Classes Update

2002-02-19 Thread Stuart Roebuck
Yes it is a contribution, but being rushed off my feet at the moment I didn't want to spend ages re-packaging it only to find that it wasn't suitable or of interest. If it is suitable and of interest, then can you confirm that the following would be a suitable approach re: re-packaging? 1.

DO NOT REPLY [Bug 6549] - [PATCH] new powered by Cocoon bitmap

2002-02-19 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6549. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6549] - [PATCH] new powered by Cocoon bitmap

2002-02-19 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6549. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6549] - [PATCH] new powered by Cocoon bitmap

2002-02-19 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6549. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6549] - [PATCH] new powered by Cocoon bitmap

2002-02-19 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6549. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6549] - [PATCH] new powered by Cocoon bitmap

2002-02-19 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6549. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6549] - [PATCH] new powered by Cocoon bitmap

2002-02-19 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6549. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

esql thread unsafe - bug

2002-02-19 Thread Szymon Stasik
Hi, I've discovered serious bug in esql logicsheet while using it with cocoon-1.8.3. However the same bug seems to exists in cocoon2. The problem is that while node stack logic variables (xspParentNode, xspCurrentNode, xspNodeStack) are defined inside populateDocument method, similar objects

Re: [FYI] Cocoon 0.9

2002-02-19 Thread Stefano Mazzocchi
Steven Noels wrote: -Original Message- From: Stefano Mazzocchi [mailto:[EMAIL PROTECTED]] Sent: maandag 18 februari 2002 14:23 To: Apache Cocoon Subject: [FYI] Cocoon 0.9 I was looking for some old pictures in my archive CDs and found the very first release of Apache

Re: Finally live worldwide

2002-02-19 Thread Stefano Mazzocchi
Michael Homeijer wrote: Hi, Finally after some time performance tuning, checking the performance of Cocoon 2, a site we build for a customer was tuned on Cocoon 1. We now have acceptable and stable performance. The site is highly dynamic because virtually everything is personalized, the

CastorTranformer

2002-02-19 Thread Thorsten Mauch
Hi I wrote a Castor Transfomer it Marshals a java bean from the Session or the Sitemap into a series of SAX events. So it can replace a element with marshalled object. I wan't to ask if you want this Transformer as a conribution ?

cvs commit: xml-cocoon2/src/documentation/xdocs livesites.xml

2002-02-19 Thread crossley
crossley02/02/19 15:19:13 Modified:src/documentation/xdocs livesites.xml Log: Added entry for www.sun-catalogue.com C1 Revision ChangesPath 1.10 +1 -0 xml-cocoon2/src/documentation/xdocs/livesites.xml Index: livesites.xml

RE: [FYI] Cocoon 0.9

2002-02-19 Thread Steven Noels
Stefano wrote: At that time there were four independent projects doing server side XSLT (that I know of, at least) 1) docproc 2) javalobby's project (don't remember the name, but was used to generate the javalobby home page) 3) IBM alphaworks XSLT servlet (later discontinued) 4) Cocoon

Re: Finally live worldwide

2002-02-19 Thread David Crossley
OK Michael, it has been added to livesites.xml --David Stefano Mazzocchi wrote: Michael Homeijer wrote: Hi, Finally after some time performance tuning, checking the performance of Cocoon 2, a site we build for a customer was tuned on Cocoon 1. We now have acceptable and stable

Re: [FYI] Cocoon 0.9

2002-02-19 Thread Stefano Mazzocchi
Steven Noels wrote: Stefano wrote: At that time there were four independent projects doing server side XSLT (that I know of, at least) 1) docproc 2) javalobby's project (don't remember the name, but was used to generate the javalobby home page) 3) IBM alphaworks XSLT servlet

Re: [RT] Cocoon subcomponent object model (was: Re: is cocoon symmetry a holy grail?)

2002-02-19 Thread Stefano Mazzocchi
Sorry, took me a while to respond. Nicola Ken Barozzi wrote: From: Vadim Gritsenko [EMAIL PROTECTED] I have another one, it provides different functionality but it features similar approach. As I don't have a name for this (multiplexer?), here is the diagram: -

Re: AW: some XSLT benchmarks

2002-02-19 Thread Stefano Mazzocchi
Jacek R. Ambroziak wrote: Stefano, A new xmdrivers.jar is attached with an updated drived for XSLTC. You can now run your tests again. Ok, ran the tests on my laptop, same hardware/software/condition as before. Results: Xalan 2.3 XSLTC --- Sun 1.3.1 [1]118,09

Re: AW: some XSLT benchmarks

2002-02-19 Thread Berin Loritsch
Stefano Mazzocchi wrote: Jacek R. Ambroziak wrote: Ideal should for the XSLTC engine to recognize the JVM it runs in (via system properties) and tune the generated bytecode on the running JVM. I assume this could give some 20/30% more speed improvement, but it's a potentially harmful thing

Re: AW: some XSLT benchmarks

2002-02-19 Thread Jacek Ambroziak
Stefano, that is cool! Except for the mysterious 'dbonerow'. I will attempt to fix it an in general I am going continue to follow my original vision to make XSLTC a good technology for people to actually use. You are right, there are multiple 'goto's' in the generated bytecodes (although the

Re: AW: some XSLT benchmarks

2002-02-19 Thread Jacek Ambroziak
--- Berin Loritsch [EMAIL PROTECTED] wrote: Stefano Mazzocchi wrote: Jacek R. Ambroziak wrote: Anyway, seriously, XSLTC *is* a solution to the XSLT bottleneck problem. My question is this: how does it _scale_. I would like to see the *same* tests with 100 threads each

Re: AW: some XSLT benchmarks

2002-02-19 Thread Berin Loritsch
Jacek Ambroziak wrote: --- Berin Loritsch [EMAIL PROTECTED] wrote: Stefano Mazzocchi wrote: Jacek R. Ambroziak wrote: Anyway, seriously, XSLTC *is* a solution to the XSLT bottleneck problem. My question is this: how does it _scale_. I would like to see the *same* tests with 100

RE: AW: some XSLT benchmarks

2002-02-19 Thread MORAVEK Peter
Results: Xalan 2.3 XSLTC XT MSXML 3.0 And what about SAXON and MSXML 4.0 ? How are the results of the benchmarks with these two transformers ? Thanks Peter - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

howto make use of default database add, delete, update action for mutilple table at a time

2002-02-19 Thread marco
I have a user input form and which is used to add/update/delete records in serveral tables. I found a sample that came with cocoon, but it is simple example that only one table is handled at a time. How can I make use the default DatabaseAddAction, DatabaseUpdateAction, DatabaseDeleteAction to