Re: xinclude problem

2002-03-11 Thread Stefano Bonnin
Yes I taje a look at this address. I *believe* that my application is equal to this example. I have written xi:include xsp:attribute name=hrefxsp:expr/xsp:expr/xsp:attribute /xi:include and I have tried also with xi:include href=example.xml/ but the error is always the same. Perhaps

Re: xinclude problem

2002-03-11 Thread Stefano Bonnin
OK OK There was an error in the included xml document. Thanks - Original Message - From: Stefano Bonnin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 11, 2002 10:17 AM Subject: Re: xinclude problem Yes I taje a look at this address. I *believe* that my application is

RE: AW: Compression in HTML Serializer ?

2002-03-11 Thread Bert Van Kets
The best solution would be to add JTidy in the HTML serializer. This way the HTML is optimized in a decent fashion, according to the W3C rules. Since JTidy is already included in Cocoon for the HTML file generator, can someone, with a little more programming experience than m,e set me in the

How are mime type working in C2 ?

2002-03-11 Thread TREGAN Fabien
something I do not understand about mime-type in C2 (the problème only appears with C2, but maybe it's not C2 related ?) I use IE 5.5, and I use 2 serializers (default configuration) : in xmap: map:serializer name=svg2jpeg src=org.apache.cocoon.serialization.SVGSerializer

Invalid XML character

2002-03-11 Thread Stefano Bonnin
Hi, in my C2 application I include (with Xinclude) an XML file inside another one. I get the following error: An invalid XML character (Unicode: 0xf9) was found in the value of attribute text. This is the file: ?xml version=1.0? message-type normal mess id=INTRO1 text=Login: / mess

RE: Invalid XML character

2002-03-11 Thread Luca Morandini
Stefano, the ù of più is not an UTF-8 characte; use the following declaration instead: ?xml version=1.0 encoding=iso-8859-1? Best regards, - Luca Morandini GIS Consultant [EMAIL PROTECTED]

Combining XSP files in Cocoon2

2002-03-11 Thread Alex McLintock
Can you merge multiple XSP files in Cocoon 2 into one page? I basically want to produce a single PDF with each page from the website appearing in it. The FAQ says I can try this map:pipelines map:pipeline internal-only=true map:match pattern=one map:generate src=docs/one.xml/ map:serialize

Re: Problem with encoding non-english request parameters

2002-03-11 Thread yuryx
Thanx for all! For solved this problem just use: String par=new String(request.getParameter(text1).getBytes(ISO-8859-1),KOI8-R); Regards. Yury. yuryx wrote: Hi all! I had the following problem: In my cocoon's page I had invalid encoding my non-english characters from request. with

JDK 1.4, cocoon 2.0.2-dev, tomcat 4.0.3

2002-03-11 Thread snpe
Hello, I have installed cocoon 2.0.2-dev with tomcat 4.0.3 (I have compiled all with jdk 1.4). Cocoon need X server too (documentation tell no for jdk1.4) Can I start cocoon without X server with 1.4 regards peco - Please

Cocoon 2.0.2dev, oracle 8

2002-03-11 Thread snpe
Hello, I have tried Cocoon 2.0.2-dev, tomcat 4.0.3 and jdk1.4 I have tried connection in oracle. Next xsp is fine : ?xml version=1.0 encoding=ISO-8859-1? !-- CVS: $Id: esql.xsp,v 1.4 2002/02/09 06:21:57 vgritsenko Exp $ -- xsp:page language=java xmlns:xsp=http://apache.org/xsp;

Re: JDK 1.4, cocoon 2.0.2-dev, tomcat 4.0.3

2002-03-11 Thread Claas Thiele
Can I start cocoon without X server with 1.4 Yes, start the JVM with following argument: -Djava.awt.headless=true see also: http://java.sun.com/j2se/1.4/docs/guide/awt/AWTChanges.html#headless Claas Thiele -- Technological Strategy VIRBUS AG Fon +49(0)341-979-7430 Fax +49(0)341-979-7409

Re: Cocoon xindice: SAX problem

2002-03-11 Thread Matthias Brunner
On Monday, 11. March 2002 01:25, Vadim Gritsenko wrote: Is there anything wrong with passing contentHandler to other functions? It is Ok as long as you do not have any start/end Document calls. EmbeddedXMLPipe will help you with this. Thanks! This works. Best regards! -- Matthias

Reccomended nightly CVS snapshot?

2002-03-11 Thread von Schwerdtner, Thomas (GXS, FPI)
Title: Reccomended nightly CVS snapshot? Hey, Is there any perticular CVS snapshot that anyone would reccomend, or any that it would be reccomended to stay away from? I'm aware of the disclaimers that go along with using CVS snapshots, but I want to know if any are know to be a bit more

cocoon with POI

2002-03-11 Thread Niket Anand
Hi all, I have to show xml data asreport in MS-EXCEL. Does cocoon-2.0 provide POI serializer? Pls give sites name or examples. Thanks, Niket

Re: AW: Compression in HTML Serializer ?

2002-03-11 Thread Nicola Ken Barozzi
From: Bert Van Kets [EMAIL PROTECTED] The best solution would be to add JTidy in the HTML serializer. This way the HTML is optimized in a decent fashion, according to the W3C rules. Since JTidy is already included in Cocoon for the HTML file generator, can someone, with a little more

Re: AW: Tutorial application error

2002-03-11 Thread bartek
FK Thank You, Bartek, FK Your answer gives a way to insert an employee. FK But what's wrong with the tutorial application - it should be possible FK to insert an employee via web-browser, isn't it? FK Yours, FK Felix Kugel Strange, I have tomcat 4.0.3, cocoon 2.0.1 on w2k and I haven't

Re: JDK 1.4, cocoon 2.0.2-dev, tomcat 4.0.3

2002-03-11 Thread Olivier Rossel
Claas Thiele wrote: Can I start cocoon without X server with 1.4 Yes, start the JVM with following argument: -Djava.awt.headless=true see also: http://java.sun.com/j2se/1.4/docs/guide/awt/AWTChanges.html#headless Claas Thiele It is very important that such informations are available on the

RE: How are mime type working in C2 ?

2002-03-11 Thread Vadim Gritsenko
From: TREGAN Fabien [mailto:[EMAIL PROTECTED]] something I do not understand about mime-type in C2 (the problème only appears with C2, but maybe it's not C2 related ?) I use IE 5.5, and I use 2 serializers (default configuration) : in xmap: map:serializer name=svg2jpeg

RE: Combining XSP files in Cocoon2

2002-03-11 Thread Vadim Gritsenko
From: Alex McLintock [mailto:[EMAIL PROTECTED]] Can you merge multiple XSP files in Cocoon 2 into one page? Ahem... After reading all this... Are you sure you want to merge *sources* of XSP pages, and not *results*??? Vadim I basically want to produce a single PDF with each page from the

RE: Problem with encoding non-english request parameters

2002-03-11 Thread Vadim Gritsenko
RTFM http://xml.apache.org/cocoon/userdocs/xsp/request.html: 8 xsp-request:get-parameter Gets the value of the named request parameter. This is a value from the request string (e.g., ?fruit=apple) or from POSTed form data. If the parameter has more than

Re: Combining XSP files in Cocoon2

2002-03-11 Thread Conny Pemfors
Hi do you know how I get cocoon to work on a tomcat Apache/ Sun solaris server I have installed all the java classes that is needed but it doesn't work. /Conny - Original Message - From: Vadim Gritsenko [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 11, 2002 2:40 PM

RE: cocoon with POI

2002-03-11 Thread Vadim Gritsenko
CVS version of Cocoon: Yes. Examples are provided too. Vadim -Original Message- From: Niket Anand [mailto:[EMAIL PROTECTED]] Sent: Sunday, March 10, 2002 9:11 AM To: [EMAIL PROTECTED] Subject: cocoon with POI Hi all, I have to show xml data as report in MS-EXCEL. Does cocoon-2.0

Re: cocoon with POI

2002-03-11 Thread Conny Pemfors
do you know how to get the cocoon to work with Tomcat, it doesn't want to start: /cocoon/ /Conny - Original Message - From: Vadim Gritsenko [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 11, 2002 2:45 PM Subject: RE: cocoon with POI CVS version of Cocoon: Yes. Examples

Re: Cocoon 2.0.1 and Sun JDK 1.4

2002-03-11 Thread Allan Kamau
I've been trying to get Cocoon 2.0.1 to run with Sun's JDK 1.4 on both RH Linux 7.2 and Win2000 without success. I get several inconsistant errors on Win2000 running TC 4.0.3 I get the error below. Cocoon 2 - Internal server error

Re: cocoon with POI

2002-03-11 Thread Niket Anand
I have downloaded poi-1.0.2.tar.gz.I installed as per given in README document. I copied the mount folder in $TOMCAT/webapps/cocoon directory .I copied the hssf-serializer.jar into TOMCAT/webapps/cocoon/WEB-INF/lib. Now after restarting the server and tried to run hello.xls sample , I am getting

RE: cocoon with POI

2002-03-11 Thread Andrew C. Oliver
Hi all, I have to show xml data as report in MS-EXCEL. Does cocoon-2.0 provide = POI serializer? Pls give sites name or examples. Thanks, Niket Hi Niket, No Cocoon 2.0 does not provide the HSSF Serializer however if you download the latest nightly build, its in there with examples.

RE: Cocoon 2.0.1 and Sun JDK 1.4

2002-03-11 Thread Vadim Gritsenko
From: Allan Kamau [mailto:[EMAIL PROTECTED]] I've been trying to get Cocoon 2.0.1 to run with Sun's JDK 1.4 on both RH Linux 7.2 and Win2000 without success. I get several inconsistant errors on Win2000 running TC 4.0.3 I get the error below. There are number of steps to be done to make

RE: cocoon with POI

2002-03-11 Thread Vadim Gritsenko
From: Andrew C. Oliver [mailto:[EMAIL PROTECTED]] Hi all, I have to show xml data as report in MS-EXCEL. Does cocoon-2.0 provide = POI serializer? Pls give sites name or examples. Thanks, Niket Hi Niket, No Cocoon 2.0 does not provide the HSSF Serializer however if you

Re: cocoon with POI

2002-03-11 Thread Niket Anand
Thanks Vadim, I overcame the problem that I was facing. I missed to put log4j.jar in lib directory, that why I was getting that error. and also thanks to Andy for his comments. - Original Message - From: Vadim Gritsenko [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent:

Re: JDK 1.4, cocoon 2.0.2-dev, tomcat 4.0.3

2002-03-11 Thread Alex McLintock
Someone asked: Can I start cocoon without X server with 1.4 At 12:31 11/03/02, Claas Thiele wrote: Yes, start the JVM with following argument: -Djava.awt.headless=true see also: http://java.sun.com/j2se/1.4/docs/guide/awt/AWTChanges.html#headless If my memory serves me correctly you still

RE: AW: Compression in HTML Serializer ?

2002-03-11 Thread SANSONE, AARON M [Non-Pharmacia/1000]
FYI, we are using Apache 1.3.9, with MOD_GZIP running Cocoon under the JRun servlet engine and we are seeing 85%-95% compression ratios! We are returning large data sets to the user so needless to say this is a huge performance boost for us. -Aaron -Original Message- From: Alex

RE: JDK 1.4, cocoon 2.0.2-dev, tomcat 4.0.3

2002-03-11 Thread Vadim Gritsenko
From: Olivier Rossel [mailto:[EMAIL PROTECTED]] Claas Thiele wrote: Can I start cocoon without X server with 1.4 Yes, start the JVM with following argument: -Djava.awt.headless=true see also: http://java.sun.com/j2se/1.4/docs/guide/awt/AWTChanges.html#headless Claas

Re: Problem with encoding non-english request parameters

2002-03-11 Thread yuryx
Vadim Gritsenko wrote: RTFM http://xml.apache.org/cocoon/userdocs/xsp/request.html: 8 xsp-request:get-parameter Gets the value of the named request parameter. This is a value from the request string (e.g., ?fruit=apple) or from POSTed form data. If the

Re: [C2.0.1] esql:group/eqsl:member

2002-03-11 Thread Christian Joelly
Hello! On Fri, Mar 08, 2002 at 10:19:28AM +0100, Christian Haul wrote: On 07.Mar.2002 -- 09:08 AM, Christian Joelly wrote: when i add esql:group/esql:member to my xsp page then the loop fetching the results from the resultset changes to an endless loop, till i get an

Cocoon and Xindice idiots guide?

2002-03-11 Thread Alex McLintock
Would it be possible for someone to put together an idiots guide to using Xindice with Cocoon2? I am seeing conflicting advice in the mailing lists, docs, and website and it is really confusing me. (Hence I am not in a position to write the idiots guide myself :-( Assume I don't care about

Re: [C2] esql:group, esql:member

2002-03-11 Thread Tim Myers
Hey Chris Just a heads up. I'm going to submit two patches in the near future for esql. One is to fix the footer behavior-- since the footer occurs after the comparison, if you put an esql:get-??? in the footer it returns data for the next row. it should return data for the most recent row.

Re: [C2.0.1] esql:group/eqsl:member

2002-03-11 Thread Tim Myers
Chris Haul, it can't be a connection pool problem-- the whole idea of esql:group/esql:member is to do everything with one query. The endless loop is almost certainly happening while xalan is transforming the code (recursive application of one of the templates). The problem with not keeping

Re: Cocoon and Xindice idiots guide?

2002-03-11 Thread Conny Pemfors
I give up, it's impossible /Conny - Original Message - From: Alex McLintock [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 11, 2002 4:37 PM Subject: Cocoon and Xindice idiots guide? Would it be possible for someone to put together an idiots guide to using Xindice with

Re: [C2] esql:group, esql:member

2002-03-11 Thread Torsten Curdt
wait a minute Hey Chris Just a heads up. I'm going to submit two patches in the near future for esql. One is to fix the footer behavior-- since the footer occurs after the comparison, if you put an esql:get-??? in the footer it returns data for the next row. it should return data

RE: Cocoon and Xindice idiots guide?

2002-03-11 Thread Vadim Gritsenko
From: Alex McLintock [mailto:[EMAIL PROTECTED]] Would it be possible for someone to put together an idiots guide to using Xindice with Cocoon2? I am seeing conflicting advice in the mailing lists, docs, and website and it is really confusing me. (Hence I am not in a position to write the

Re: [C2] esql:group, esql:member

2002-03-11 Thread Tim Myers
Hey Torsten, The other patch will allow looping to be controlled completely from the outside of esql. This just entails exposing next-row and is more rows? functionality through the logic sheet. Also, the esql:get-??? calls will have to be made available to descendents of

Re: [C2.0.1] esql:group/eqsl:member

2002-03-11 Thread Christian Joelly
Hello! On Mon, Mar 11, 2002 at 10:52:21AM -0500, Tim Myers wrote: Christian Joelly, can you post an example? is the xsp page enough for you? if some other thing is usefull for you let me know. If you post your code, i'll transform it manually and see where the recursion is happening.

Re: [C2.0.1] esql:group/eqsl:member

2002-03-11 Thread Tim Myers
It's a bug in esql:results/esql:row-results template. If you want to reproduce the bug, all you need is an esql:group that is a child of a subquery. esql.xsl line 672 xsl:template match=esql:results//esql:row-results ? xsl:variable name=group select=.//esql:group/ --- here's the

Testing VoxML

2002-03-11 Thread Paul Pattison
Hi everyone, I was wondering if there is a client/emulator that I can download so that I can easily try out VoxML? Paul - Please check that your question has not already been answered in the FAQ before posting.

Re: AW: Compression in HTML Serializer ?

2002-03-11 Thread Nicola Ken Barozzi
From: SANSONE, AARON M [Non-Pharmacia/1000] [EMAIL PROTECTED] FYI, we are using Apache 1.3.9, with MOD_GZIP running Cocoon under the JRun servlet engine and we are seeing 85%-95% compression ratios! We are returning large data sets to the user so needless to say this is a huge performance

RE: Testing VoxML

2002-03-11 Thread Vadim Gritsenko
From: Paul Pattison [mailto:[EMAIL PROTECTED]] Hi everyone, I was wondering if there is a client Motorola phones/ /emulator Motorola ADK. Vadim that I can download so that I can easily try out VoxML? Paul -

RE: AW: Compression in HTML Serializer ?

2002-03-11 Thread Luca Morandini
Nicola, which Tomcat filter does it ? Could you point me to the relevant doc ? Moreover, could it make sense to use this filter and bypass the web-server completely, even for static contents ? Best regards and... thank you :) - Luca

Re: AW: Compression in HTML Serializer ?

2002-03-11 Thread Nicola Ken Barozzi
From: Luca Morandini [EMAIL PROTECTED] Nicola, which Tomcat filter does it ? Could you point me to the relevant doc ? Look in the Tomcat docs, it should be there. Moreover, could it make sense to use this filter and bypass the web-server completely, even for static contents ? It depends

write xml files with forms included with FileWriter to disk

2002-03-11 Thread Erik Stunkat
Hi, I want to build a web application with forms included. Now some users gonna fill the forms and press Submit or whatever. Is it possible to use FileWriter to save the new files on disk? thanks! erik stunkat - Please check

Jetty and Cocoon2, help?

2002-03-11 Thread Skansen
Hello, I have been tracking this list for a while and is just starting to use coocoon2. My problem is that i'm not able to get cocoon2 running with jetty. I think i'm missing som jar or have configuered the parser wrong. Can anbody help me or should i give tomcat a try instead. regards

RE: Jetty and Cocoon2, help?

2002-03-11 Thread Vadim Gritsenko
I've seen this with Tomcat 4.0.2... Try adding extra-classpath and removing xml jars from the cocoon's WEB-INF as described in cocoon + tomcat 4.02+ installation instructions - published here on the list with the prefix [SOLUTION]. It may help. Regards, Vadim -Original Message- From:

Re: Jetty and Cocoon2, help?

2002-03-11 Thread Skansen
Thank for the prompt reply I've not found the [solution] thread yout refer to and not the insatalltion insturcitons either. I did find a lot about 4.02 and cocoon but i didn't give me any clue. I dont follow you on: * add extra-classpath * removing xml jars could your explain a bit more,

RE: Jetty and Cocoon2, help?

2002-03-11 Thread von Schwerdtner, Thomas (GXS, FPI)
Title: RE: Jetty and Cocoon2, help? Thank for the prompt reply I've not found the [solution] thread yout refer to and not the insatalltion insturcitons either. [SOLUTION] thread starts here: http://www.mail-archive.com/cocoon-users@xml.apache.org/msg08784.html

RE: Relationship between pipelines and match nodes

2002-03-11 Thread Vadim Gritsenko
From: Peter Robins [mailto:[EMAIL PROTECTED]] On Saturday 09 Mar 2002 4:10 pm, Vadim Gritsenko wrote: map:pipeline/ has two things which could be customized: - @internal-only=true: makes whole map:pipeline inaccessible from outside world, meaning that I can access it by a redirect

RE: AW: Compression in HTML Serializer ?

2002-03-11 Thread Luca Morandini
Nicola, ahem... I wasn't able to find such a filter :( Could you be so kind as to find it and share your findings with me (oops... us) ? Best regards, - Luca Morandini GIS Consultant [EMAIL PROTECTED]

RE: Jetty and Cocoon2, help?

2002-03-11 Thread Vadim Gritsenko
You are on the right path. From the core.log: --- WARN(2002-03-11) 21:17.41:210 [core.xslt-processor](/cocoon/) SocketListener-0/TraxErrorHandler: Error in TraxTransformer: jar:file:/C:/CVS2/Jetty/webapps/cocoon/WEB-INF/lib/cocoon-2.0.2-dev.jar!

RE: Jetty and Cocoon2, help?

2002-03-11 Thread von Schwerdtner, Thomas (GXS, FPI)
Title: RE: Jetty and Cocoon2, help? PS If you have Saturdday/Sunday's CVS version of Cocoon - update it. I build the 20020310231733 (for the sake of your eyes - Sunday 10th, 23:17:33) snapshot late last night...if everything seems to be working on my end, should I worry about the above

RE: Jetty and Cocoon2, help?

2002-03-11 Thread Vadim Gritsenko
No :) That's in regard to error he got. Vadim -Original Message- From: von Schwerdtner, Thomas (GXS, FPI) [mailto:[EMAIL PROTECTED]] Sent: Monday, March 11, 2002 3:56 PM To: '[EMAIL PROTECTED]' Subject: RE: Jetty and Cocoon2, help? PS If you have Saturdday/Sunday's CVS version of

strating error

2002-03-11 Thread Ajay Acharya
I ma getting following error when I am trying run the cocoon. Cocoon 2 - Internal server error type fatal message The sitemap handler's sitemap is not available. Please check logs for the exact error.

RE: strating error

2002-03-11 Thread Vadim Gritsenko
Hi, The sitemap handler's sitemap is not available. Please check logs for the exact error. ^^ Regards, Vadim From: Ajay Acharya [mailto:[EMAIL PROTECTED]] I ma getting following error when I am trying run the cocoon. Cocoon 2 -

Problems with Cacheable

2002-03-11 Thread Jozsa Kristof
Hi, I have a custom Generator, which pulls XML data from EJBs. I'd like to make this generator cacheable, based on the url. I've added the following to my Generator: - implemented Cacheable - wrote generateKey(), which uses HashUtil.hash(URL+parameter1+param2) to generate the cache key -

problem with automount system

2002-03-11 Thread Je vous site
hello, I'am testing the automount system (C2, Tomcat 4). I had a set of pages that work under a directory and I try to migrate it under /cocoon/mount. I thougth, i have made the changes needed in the pipeline section of the local xmap. It does't work, I have an exception, not a 404. My error

Re: Jetty and Cocoon2, help?

2002-03-11 Thread Skansen
I've found the empty pipeline and corrected it and instead the following was recivied when accessing localhost:8080/cocoon/ HTTP ERROR: 404 Could not find resource for /welcome RequestURI=/welcome the url was also rewritten as localhost:8080/welcome Updated from the CVS and also got the

Headless Server, and yes, I read the FAQ and manual

2002-03-11 Thread Robert J. Lebowitz
This one has me really stumped. Here's my system configuration: RedHat Linux 7.2 Tomcat 4.01 Cocoon CVS HEAD distribution J2sdk1.4.0 Xvfb About a week and a half ago, I downloaded all of the above and built a working Cocoon 2.0 system. I had to compile my own cocoon.war since there are some

RE: Headless Server, and yes, I read the FAQ and manual

2002-03-11 Thread Matt Williams
Did you perchance read the JDK1.4 HOWTO in the mail archives? -Original Message- From: Robert J. Lebowitz [mailto:[EMAIL PROTECTED]] Sent: lunes, 11 de marzo de 2002 23:01 To: [EMAIL PROTECTED] Subject: Headless Server, and yes, I read the FAQ and manual This one has me really

Re: Headless Server, and yes, I read the FAQ and manual

2002-03-11 Thread Robert J. Lebowitz
Matt: I just subscribed to the group today, missed those notes. I can't find the base note when I do a search however, just the follow-ups. What was the final concensus on all the jar files, etc.?? Can you forward me a copy of the best revision? Rob - Original Message - From: Matt

RE: Jetty and Cocoon2, help?

2002-03-11 Thread Vadim Gritsenko
From: Skansen [mailto:[EMAIL PROTECTED]] I've found the empty pipeline and corrected it and instead the following was recivied when accessing localhost:8080/cocoon/ Are you sure you had trailing slash? HTTP ERROR: 404 Could not find resource for /welcome RequestURI=/welcome the

Re: Problem with encoding non-english request parameters

2002-03-11 Thread Kazimierz Pogoda
On Mon, 11 Mar 2002 18:32:26 +0300 yuryx [EMAIL PROTECTED] wrote: Vadim Gritsenko wrote: RTFM http://xml.apache.org/cocoon/userdocs/xsp/request.html: 8 xsp-request:get-parameter Gets the value of the named request parameter. This is a value from

Re: Jetty and Cocoon2, help?

2002-03-11 Thread Skansen
see below - Original Message - From: Vadim Gritsenko [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 11, 2002 11:59 PM Subject: RE: Jetty and Cocoon2, help? From: Skansen [mailto:[EMAIL PROTECTED]] I've found the empty pipeline and corrected it and instead the

RE: AW: Compression in HTML Serializer ?

2002-03-11 Thread TREGAN Fabien
Nicola, ahem... I wasn't able to find such a filter :( Did you look look at the workers doc ? [from the worker-how-to : ajpv13 is a more binary protocol and it try to compress some of the request data by coding frequently used strings as small integers.] ft.

Problems with docu

2002-03-11 Thread Matthias Fischer
After a small break during which I wasn't in the office: Thorsten, I meant item 2 of your mail - completeness and understanability for non-technicians, especially non-Java-cracks; explaining all terminology before starting, even if it is clear to the writer of the docu, etc. The same relates to

Re: Problem with encoding non-english request parameters

2002-03-11 Thread Piroumian, Konstantin
On Mon, 11 Mar 2002 18:32:26 +0300 yuryx [EMAIL PROTECTED] wrote: Vadim Gritsenko wrote: RTFM http://xml.apache.org/cocoon/userdocs/xsp/request.html: 8 8 Vadim Thanx for you help, Vadim, but I

Re: problem with automount system

2002-03-11 Thread Bertrand Delacretaz
On Monday 11 March 2002 22:33, Je vous site wrote: . . . My error seems to be in the sitemap. Is there a special trick to add in order the automount system to work ? cocooncenter.de recently published a small article of mine about the automount feature:

Re: Problem with encoding non-english request parameters

2002-03-11 Thread yuryx
Piroumian, Konstantin wrote: On Mon, 11 Mar 2002 18:32:26 +0300 yuryx [EMAIL PROTECTED] wrote: Vadim Gritsenko wrote: RTFM http://xml.apache.org/cocoon/userdocs/xsp/request.html: 8 8 Vadim Thanx for you help,

IE / NS don't reconize my XML output as XML

2002-03-11 Thread TREGAN Fabien
I use this serializer : component-instance name=xml class=org.apache.cocoon.serialization.XMLSerializer mime-type=text/xml logger=sitemap.serializer.xml/ in this pipeline : map:match pattern=*.xml map:generate src=xml/{1}.xml/ map:serialize name=xml/ /map:match

Re: Problem with encoding non-english request parameters

2002-03-11 Thread Piroumian, Konstantin
Piroumian, Konstantin wrote: On Mon, 11 Mar 2002 18:32:26 +0300 yuryx [EMAIL PROTECTED] wrote: Vadim Gritsenko wrote: RTFM http://xml.apache.org/cocoon/userdocs/xsp/request.html: 8 8 Vadim Thanx for