RE: problem with serialization Cocoon2.2

2011-06-23 Thread Robby Pelssers
pelss...@nxp.com; users@cocoon.apache.org CC: Huib Verweij Onderwerp: Re: problem with serialization Cocoon2.2 Hi Robby, did you fix it already? Seems like a strange situation to me. Maybe Cocoon gets confused by the p-topic serializer, even though it's really a XML serializer in disguise. You

Re: problem with serialization Cocoon2.2

2011-06-23 Thread Huib Verweij
Hi Robby, did you fix it already? Seems like a strange situation to me. Maybe Cocoon gets confused by the p-topic serializer, even though it's really a XML serializer in disguise. You could move the "work" to a separate pipeline, serialize that to p-topic in "basictype/*/*/*" and serialize tha

problem with serialization Cocoon2.2

2011-06-17 Thread Robby Pelssers
Hi all, I have a strange situation I don't really understand. In my sitemap I have following patterns:

AW: AW: CForms Serialization

2009-01-21 Thread Christofer Dutz
esendet: Mittwoch, 21. Januar 2009 20:36 An: users@cocoon.apache.org Betreff: Re: AW: CForms Serialization Hi Chris, seems that would do the trick for fields where I have validators defined in the model. I've found though it will not work eg. for fields that I have defined as being of type

Re: CForms Serialization

2009-01-21 Thread Ralph Rauscher
even if the form is invalid) and continue working on it later. As the cforms binding will throw all kinds of exceptions in this case I thought about serializing the Form object using standard Java object serialization. So far Form and the classes it's derived from

Re: AW: CForms Serialization

2009-01-21 Thread Ralph Rauscher
hricht- Von: Ralph Rauscher [mailto:r...@blue-elephant-systems.com] Gesendet: Dienstag, 20. Januar 2009 23:43 An: users@cocoon.apache.org Betreff: CForms Serialization Hi, I have a case where I have a really large form that would require several sessions to be valid and I'd like to al

AW: CForms Serialization

2009-01-21 Thread Christofer Dutz
form.load(previouslySavedFormData); and you should be ready to continue. Hope this helps, Chris -Ursprüngliche Nachricht- Von: Ralph Rauscher [mailto:r...@blue-elephant-systems.com] Gesendet: Dienstag, 20. Januar 2009 23:43 An: users@cocoon.apache.org Betreff: CForms Serialization H

Re: CForms Serialization

2009-01-20 Thread Rice Yeh
m is invalid) and continue working on it later. > > As the cforms binding will throw all kinds of exceptions in this case I > thought about serializing the Form object using standard Java object > serialization. > > So far Form and the classes it's derived from do not implement &g

CForms Serialization

2009-01-20 Thread Ralph Rauscher
ase I thought about serializing the Form object using standard Java object serialization. So far Form and the classes it's derived from do not implement Serializable, which would be easy to fix. I saw a remark though by Sylvain where he mentions /"a form contains its own data mode

RE: How to exclude non-html-elements from HTML serialization

2008-11-16 Thread Jasha Joachimsthal
Why don't your filter the log elements in a final XSLT before the serialization and if you want to debug some more, use a cocoon-view [1] to skip this last XSLT and trigger serialization immediately. [1] http://cocoon.apache.org/2.1/userdocs/concepts/views.html Jasha Joachimsthal [

Re: How to exclude non-html-elements from HTML serialization

2008-11-16 Thread Smigge
Andy Stevens-2 wrote: > > 2008/11/14 Smigge <[EMAIL PROTECTED]>: >> >> Hi! >> >> I have an HTML serialization, in which I have a structure just for >> logging >> purposes like this: >> >> >> logging stuff >> >> &

Re: How to exclude non-html-elements from HTML serialization

2008-11-15 Thread Andy Stevens
2008/11/14 Smigge <[EMAIL PROTECTED]>: > > Hi! > > I have an HTML serialization, in which I have a structure just for logging > purposes like this: > > > logging stuff > > > HTML-stuff > > > However, the logging stuff is visible on the HTML pag

How to exclude non-html-elements from HTML serialization

2008-11-14 Thread Smigge
Hi! I have an HTML serialization, in which I have a structure just for logging purposes like this: logging stuff HTML-stuff However, the logging stuff is visible on the HTML page as well, and I don't want that. I could make an extra transformer to throw the log-structure away

Re: error in html serialization

2008-04-16 Thread Lehtonen, Mika
Thanks for your help Johannes! I believe I found the reason. I had type="noncaching" definition in my pipeline. I removed it and now it seems to working without errors. Try it out yourself. mika Johannes Textor kirjoitti: Sorry ... as I think of it, maybe you should use the less braindead

Re: error in html serialization

2008-04-16 Thread Lehtonen, Mika
Johannes, after the crash, there are 1067 open files, and when you wait for a while, the amount drops into 113. Everything is then working. Or if I push 'refresh'-button so many times that the site works again, the amount of files drops into 196. Every time the page is loaded again, extra 82

Re: error in html serialization

2008-04-16 Thread Johannes Textor
Sorry ... as I think of it, maybe you should use the less braindead command lsof -p [id] where [id] is the id of the process which actually runs cocoon. Johannes Textor schrieb: > Hi Mika, > > while trying again on your site, this time I got the following error: > > /home/cocoon/tomcat/webapps/c

Re: error in html serialization

2008-04-16 Thread Johannes Textor
Hi Mika, while trying again on your site, this time I got the following error: /home/cocoon/tomcat/webapps/cocoon/stylesheets/system/exception2html.xslt (Too many open files) This I think confirms my theory that your application generates too many file handles, or that file handles remain open t

Re: error in html serialization

2008-04-16 Thread Lehtonen, Mika
Hi Johannes, yep, Java is 1.6.0_04 (Java Hotspot 64-bit Server VM). OS is 64-bit Centos 4.3. I will still do the testing you recommended and report about them when they done. Ok? I am not an expert on these programming and Java issues. Do you mean that some earlier Java would do better or do

Re: error in html serialization

2008-04-16 Thread Johannes Textor
Hi Mika, am I guessing right that you are using Java 1.6? The NullPointerException means that "This abstract pathname does not denote a directory, or if an I/O error occurs" (quote from Java spec). Maybe you're running out of file handles ... which operating system are you using? Also, if you se

Re: error in html serialization

2008-04-16 Thread Lehtonen, Mika
Some further information: I have also this pipeline which produces pdfs' out of the same material. It has been functioning for a long time and still does, BUT if the html producers crashes, this won't work either. You can try it out at:

Re: error in html serialization

2008-04-16 Thread Lehtonen, Mika
Hi Johannes, here is the pipeline. I set those parameters to imagedirectory-generator, xslt-transformer and to html-serializer. I found no change comparing to previous action. mika Johannes Textor kirjoitti: Hi Mika, I can confirm thi

Re: error in html serialization

2008-04-16 Thread Johannes Textor
Hi Mika, I can confirm this, although it did not crash after 11 times, but about 15 ... whatever, can you please - provide the pipeline that generates this error - set "pool-max" and "pool-min" for all involved components to 1 in sitemap.xmap, restart cocoon and tell us what happens? Regar

Re: error in html serialization

2008-04-15 Thread Lehtonen, Mika
Please try it by yourself, be my guest. http://77.240.21.139/cocoon/asemakaavat/selitykset/A4/Karsamaki/Kirkonseutu/01.html Open it and refresh it over ten times. It should crash. Then refresh it over ten times again and suprise, it works again! Any ideas? mika Lehtonen, Mika kirjoitti: Hel

error in html serialization

2008-04-15 Thread Lehtonen, Mika
Hello, I have an application which uses html serializer. It is a little complicated system to describe in this. Anyway the pipeline works and of some xml and a bunch of gifs is parsed a working html, but then we come to the strange part. It works eleven times, crashes eleven times and continu

Re: xhtml serialization and form textarea

2007-09-22 Thread swenzky
I've a problem as well, that belongs to textareas and serialization. In my case genenerates the serialization a lot of crap contents to my empty(!) textarea, when I bring it up to my page to handle formular inputs. Such as producing a textarea filled with xhtml code that has been gene

Re: xhtml serialization and form textarea

2007-09-21 Thread Peter Sparkes
Thanks again Jasha. All's working now. Peter If you put the script contents between the quotes aeree unescaped. -Original Message- From: Peter Sparkes [mailto:[EMAIL PROTECTED] Sent: vrijdag 21 september 2007 8:33 To: users@cocoon.apache.org Subject: Re: xhtml serializatio

RE: xhtml serialization and form textarea

2007-09-20 Thread Jasha Joachimsthal
If you put the script contents between the quotes aeree unescaped. > -Original Message- > From: Peter Sparkes [mailto:[EMAIL PROTECTED] > Sent: vrijdag 21 september 2007 8:33 > To: users@cocoon.apache.org > Subject: Re: xhtml serialization and form textarea &g

Re: xhtml serialization and form textarea

2007-09-20 Thread Peter Sparkes
st 2.1 branch code you can set yes strict UTF-8 no The doctype will be strict then. Jasha Joachimsthal Hippo Oosteinde 11 1017 WT Amsterdam The Netherlands +31 (0)20 5224466 www.hippo.nl -Original Message- From: Peter Sparkes [mailto:[EMAIL

RE: xhtml serialization and form textarea

2007-09-17 Thread Jasha Joachimsthal
Peter Sparkes [mailto:[EMAIL PROTECTED] > Sent: zondag 16 september 2007 16:09 > To: users@cocoon.apache.org > Subject: Re: xhtml serialization and form textarea > > Hi, > > On further testing the 2.1.10 > org.apache.cocoon.components.serializers.XHTMLSerializer > seri

Re: xhtml serialization and form textarea

2007-09-16 Thread Peter Sparkes
ct: Re: xhtml serialization and form textarea Hi Jasha, The Class is org.apache.cocoon.serialization.XMLSerializer. The version is whatever comes with cocoon 2.1.10 Doing something like: - does not work as the by the forms styling and I can't work out how to change the

Re: xhtml serialization and form textarea

2007-09-03 Thread Peter Sparkes
Hi Tobia, Thanks for your suggestion, I have not had time to try it yet and am away for the next few days, will try it when I come back. In the mean time Jasha suggestion to use org.apache.cocoon.components.serializers.XHTMLSerializer works Peter Peter Sparkes wrote: If I serialize it a

Re: xhtml serialization and form textarea

2007-09-03 Thread Peter Sparkes
Peter Sparkes [mailto:[EMAIL PROTECTED] Sent: maandag 3 september 2007 19:46 To: users@cocoon.apache.org Subject: Re: xhtml serialization and form textarea Hi Jasha, The Class is org.apache.cocoon.serialization.XMLSerializer. The version is whatever comes with cocoon 2.1.10 Doing something

Re: xhtml serialization and form textarea

2007-09-03 Thread Tobia Conforto
Peter Sparkes wrote: > If I serialize it as html the output is : > > > > However when I serialize as XHTML 1.0 Strict the xhtml output is: > > What you say is true and also happens with , , and a few other elements. My advice is to avoid the "xhtml" serializer altogether, as defined in the root

RE: xhtml serialization and form textarea

2007-09-03 Thread Jasha Joachimsthal
EMAIL PROTECTED] www.hippo.nl > -Original Message- > From: Peter Sparkes [mailto:[EMAIL PROTECTED] > Sent: maandag 3 september 2007 19:46 > To: users@cocoon.apache.org > Subject: Re: xhtml serialization and form textarea > > >

Re: xhtml serialization and form textarea

2007-09-03 Thread Peter Sparkes
17 PM To: users@cocoon.apache.org Cc: Subject: xhtml serialization and form textarea Hi, 1.Using CForms I generate a form with a textarea. If I serialize it as xml the output is : 2.If I serialize it as html the output is : which is correct and the form displays c

RE: xhtml serialization and form textarea

2007-09-03 Thread Jasha Joachimsthal
AIL PROTECTED] Sent: Mon 9/3/2007 6:17 PM To: users@cocoon.apache.org Cc: Subject:xhtml serialization and form textarea Hi, 1.Using CForms I generate a form with a textarea. If I serialize it as xml the output is : 2.If I serialize it as html the output is : which

xhtml serialization and form textarea

2007-09-03 Thread Peter Sparkes
Hi, 1.Using CForms I generate a form with a textarea. If I serialize it as xml the output is : 2.If I serialize it as html the output is : which is correct and the form displays correctly 3.However when I serialize as XHTML 1.0 Strict the xhtml output is: which is not c

Problems with serialization and Union Widget

2007-05-08 Thread Franziska Witzani
Hi there! Is there anybody who can tell me where the location (which method in which call) is, where the Form-object reads it’s values from the request? Or, more precisely, where it decides which widgets have been updated or not? I’d like to know this, because I am facing a problem with using th

Re: XHTML Serialization error

2007-03-15 Thread JD
Hello Andrew, 'WARNING:_editor_url is not set! You should set this variable to the editor files path; it should preferably be an absolute path, like in '/htmlarea', but it can be relative if you prefer. Further we will try to load the editor files correctly but we'll probably fail.' Yes, I h

Re: XHTML Serialization error

2007-03-14 Thread Andrew Madu
Hi, I will bring the whole Jboss application one level (directory) up and see if that helps!! Well well well, that was it!! It initially didn't work with the all in one serialization jar as that doesn't have all the required charset classes. So stick with the two serializer.

Re: XHTML Serialization error

2007-03-14 Thread Andrew Madu
Hi, I am in the process of migrating to Jboss AS 4.0.5 to ascertain whether there is an issue with 'loading' in 4.0.3. I will report back with my findings. no change here! Migrating to 4.0.5 did not alter the situation. So I think Bertrand has a very valid point about "Program Files" being th

Re: XHTML Serialization error

2007-03-14 Thread Andrew Madu
Hi Bertrand, I'd be ready to bet a beverage of your choice on the latter...whoever invented the "Program Files" folder name should have their computer driving licence revoked immediately ;-) hehehehe...very good ;-) But now you mention it, it would not surprise me in the least if "Program

Re: XHTML Serialization error

2007-03-14 Thread Bertrand Delacretaz
On 3/14/07, Joerg Heinicke <[EMAIL PROTECTED]> wrote: ...What's the status on this? I got the feeling that such spaces are no longer a problem in the Java world (but avoided them though)... Same here, I'm working in multi-platform environments all the time, and "unsafe" filenames are bound to

Re: XHTML Serialization error

2007-03-13 Thread Joerg Heinicke
On 14.03.2007 07:50, Bertrand Delacretaz wrote: One issue you might have both with JBoss 4.0.3 is either a strange class loader or the fact that you both have spaces in your path ("Program Files") I'd be ready to bet a beverage of your choice on the latter...whoever invented the "Program F

Re: XHTML Serialization error

2007-03-13 Thread Bertrand Delacretaz
On 3/13/07, Joerg Heinicke <[EMAIL PROTECTED]> wrote: One issue you might have both with JBoss 4.0.3 is either a strange class loader or the fact that you both have spaces in your path ("Program Files") I'd be ready to bet a beverage of your choice on the latter...whoever invented the "Pro

Re: XHTML Serialization error

2007-03-13 Thread Jason Johnston
I've got it running successfully in Tomcat 5.5, JDK 1.5. Cocoon 2.1.8 though so it's not exactly comparable. Andrew Madu wrote: No, no joy here either. Would it be possible for anyone else who is using xhtml serialization to say whether they are experiencing this issue and what a

Re: XHTML Serialization error

2007-03-13 Thread Andrew Madu
Hi Jörg, One issue you might have both with JBoss 4.0.3 is either a strange class loader I am in the process of migrating to Jboss AS 4.0.5 to ascertain whether there is an issue with 'loading' in 4.0.3. I will report back with my findings. or the fact that you both have spaces in your path

Re: XHTML Serialization error

2007-03-13 Thread Joerg Heinicke
On 13.03.2007 13:27, JD wrote: Hello, this is my first post to the list. I have this error: Caused by: org.apache.cocoon.components.serializers.encoding.CharsetFactory$CharsetFactoryException: Unable to access JAR "jar:file:/C:/Program Files/jboss- 4.0.3 /server/default/deploy/jbossweb-tomca

Re: XHTML Serialization error

2007-03-13 Thread Andrew Madu
No, no joy here either. Would it be possible for anyone else who is using xhtml serialization to say whether they are experiencing this issue and what application server/container they are using? Two of us are using Jboss AS and experiencing this problem, so maybe it's a Jboss 4.0.3 issue?!

Re: XHTML Serialization error

2007-03-13 Thread JD
Hello Jason, thanks for the quick reply. Unfortunately it did not work. There is another xhtml serialiser I have been using but this does not format the document as a true xhtml document. Maybe I should stick with that instead? JD On 13/03/07, Jason Johnston <[EMAIL PROTECTED]> wrote: Just a w

Re: XHTML Serialization error

2007-03-13 Thread Jason Johnston
Just a wild-guess thing to try: Replace the 2 jars cocoon-serializers-block.jar and cocoon-serializers-charsets-0.2.jar with the single jar from the Cocoon 2.2 snapshot: http://people.apache.org/maven-snapshot-repository/org/apache/cocoon/cocoon-serializers-impl/1.0.0-SNAPSHOT/cocoon-seri

Re: XHTML Serialization error

2007-03-13 Thread Andrew Madu
Hi JD, wish I could help. I have exactly the same problem and have not yet found a solution for it. One of the more knowledgeable Java chaps may be able to resolve this for you. -- Regards Andrew On 13/03/07, JD <[EMAIL PROTECTED]> wrote: Hello, this is my first post to the list. I have this

XHTML Serialization error

2007-03-13 Thread JD
Hello, this is my first post to the list. I have this error: Caused by: org.apache.cocoon.components.serializers.encoding.CharsetFactory$CharsetFactoryException: Unable to access JAR "jar:file:/C:/Program Files/jboss- 4.0.3 /server/default/deploy/jbossweb-tomcat55.sar/ROOT.war/WEB-INF/lib/cocoon

Remove spacing from xhtml Serialization output

2006-07-14 Thread Andrew Madu
Hi,I am using xhtml as the default serializer in my pipes and have noticed, in the generated browser output, huge spaces between code lines. This has the adverse effect of actually changing the visual look and feel of my pages. Is there a parameter I can set in the serializer to remove spacing from

Antw: doubt regarding PDF Serialization

2005-07-05 Thread Martin Geissler
Hello Peeths, Assuming following sitemap snipplet: The first step ist the generator. this one is in this case of type jx. (the default generator is of type file, meaning reading a xml file form the filesystem) The output of this generator is xml. The s

RE: doubt regarding PDF Serialization

2005-07-05 Thread Janet Yvan
your fo2pdf just the way you already did. You'll find more about XSL-FO at http://www.w3schools.com/xslfo/ Yvan -Message d'origine- De : Peeths [mailto:[EMAIL PROTECTED] Envoyé : mardi 5 juillet 2005 14:30 À : cocoon-Users Objet : doubt regarding PDF Serialization hi Ber

doubt regarding PDF Serialization

2005-07-05 Thread Peeths
hi Bertrand,Yvan , Martin in that linkn it was told to create using a style sheet i got one more doubt ,how we'll be serializing to pdf using were i'm dynamically generating the source using jx template , from there how will i converte to PDF . regards peeths

Re: Serialization: tabs to decimal entity references

2005-03-05 Thread Gabor Pusztai
On Thu, 3 Mar 2005, Askild Aaberg Olsen wrote: > > > > > Try changing the src-attribute of the serializer-declaration to > "org.apache.cocoon.components.serializers.XMLSerializer" > > as in http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=110237346321979&w=2 > > This made the trick for me. > > As

Re: Serialization: tabs to decimal entity references

2005-03-03 Thread Geert Josten
Try changing the src-attribute of the serializer-declaration to "org.apache.cocoon.components.serializers.XMLSerializer" as in http://marc.theaimsgroup.com/?l=xml-cocoon-dev&m=110237346321979&w=2 Let me guess: the other class reference is a remainder of a previous version? Cheers... --

Re: Serialization: tabs to decimal entity references

2005-03-03 Thread Askild Aaberg Olsen
Gabor Pusztai wrote: When I request 'test.xml', all tab characters are converted to decimal entity references ( ) in the result. Other whitespace characters are serialized "normally", the problem occurs only with tabs. I dont know what to do. I tried to modify the parameters of the XMLSerializer (e

Re: Serialization: tabs to decimal entity references

2005-03-03 Thread Geert Josten
Gabor Pusztai wrote: When I request 'test.xml', all tab characters are converted to decimal entity references ( ) in the result. Other whitespace characters are serialized "normally", the problem occurs only with tabs. I dont know what to do. I tried to modify the parameters of the XMLSerializer (

Serialization: tabs to decimal entity references

2005-03-03 Thread Gabor Pusztai
Hi everybody! I have a very strange problem with cocoon-2.1.6: I have an xml file, 'test.xml': foo bar the tabs are _real_ tab characters, not softtabs and I setup a pipeline: ... ... the components are configured as in the default sitemap. When I requ

Session serialization

2005-01-31 Thread Reinhard Poetz
o e.g. the Cocoon service manager and the serialization process serializes the complete object graph. A few weeks ago I had some discussions with Torsten, Chris Oliver, Sylvain and Vadim I think the problem should be solvable. I'm going to keep the list updated about my experiences and I open

Re: Session serialization

2005-01-20 Thread Ralph Goers
Aurélien DEHAY wrote: Hello. I'm trying to serialize my sessions with the persistance manager of tomcat to not loose them between during a restart. I use session-context to store XML in my session and use a flowscript to handle my login logic (maybe it's not the sexyier way, but that's the way

Session serialization

2005-01-20 Thread Aurélien DEHAY
Hello. I'm trying to serialize my sessions with the persistance manager of tomcat to not loose them between during a restart. I use session-context to store XML in my session and use a flowscript to handle my login logic (maybe it's not the sexyier way, but that's the way I do it). When I shut

WAR serialization problem

2004-12-22 Thread Paul Christmann
I'm playing with my first cocoon-based web application, and I am having problems trying to deploy it to Tomcat (5.0.30) with the unpackWARS attribute of my element set to "false". With unpackWARS set to "true", the webapp (named reports.war) is properly unpacked and everything works like a charm.

Re: Serialization encoding problem

2004-07-23 Thread Z.Z.
Hi All, 2004. jÃlius 23. 17.09 dÃtummal [EMAIL PROTECTED] ezt Ãrta: > What's the reason for wanting to use HTML serializer (instead of > XHTML), Do you definitely need empty elements like > instead of ? > I have also tried several times to get real Unicode characters from > HTML serializer but wit

Re: Serialization encoding problem

2004-07-23 Thread [EMAIL PROTECTED]
Zidarics Zoltan wrote: Hi All, Sorry it doesn't help me :-( What's the reason for wanting to use HTML serializer (instead of XHTML), Do you definitely need empty elements like instead of ? I have also tried several times to get real Unicode characters from HTML serializer but without success. Ma

Re: Serialization encoding problem

2004-07-23 Thread Upayavira
Zidarics Zoltan wrote: 2004. július 22. 08.21 dátummal Upayavira ezt írta: Have you set the encoding in the definition of your serializer (at the top of the sitemap)? yes: src="org.apache.cocoon.serialization.HTMLSerializer"> UTF-8 true If that doesn't work, in th

Re: Serialization encoding problem

2004-07-23 Thread Zidarics Zoltan
2004. július 22. 08.21 dátummal Upayavira ezt írta: > Have you set the encoding in the definition of your serializer (at the > top of the sitemap)? yes: UTF-8 true > > If that doesn't

Re: Serialization encoding problem

2004-07-23 Thread Zidarics Zoltan
Hi All, Sorry it doesn't help me :-( 2004. jÃlius 22. 08.32 dÃtummal ezt Ãrta: > try to use disable-output-escaping="yes" > > -- stavros > > On Wed, 21 Jul 2004, Z.Z. wrote: > > Hi All, > > > > I use Cocoon 2.1.5.1 in Linux environment. Character set of my xmls is > > utf-8. All of setting is utf

Re: Serialization encoding problem

2004-07-23 Thread Zidarics Zoltan
Hi All, 2004. július 22. 08.21 dátummal Upayavira ezt írta: > Ray Allis wrote: > > Z.Z. wrote: > >> Hi All, > >> > >> I use Cocoon 2.1.5.1 in Linux environment. Character set of my xmls > >> is utf-8. All of setting is utf-8 (web.xml, sitemap.xmap, xsls...) > >> When I see source of my generated h

Re: Serialization encoding problem

2004-07-22 Thread [EMAIL PROTECTED]
Z.Z. wrote: Hi All, I use Cocoon 2.1.5.1 in Linux environment. Character set of my xmls is utf-8. All of setting is utf-8 (web.xml, sitemap.xmap, xsls...) When I see source of my generated htmls, character set is utf-8. But in body all of accented char is made by acuted (á ...). Accented chars

Re: Serialization encoding problem

2004-07-21 Thread gounis
try to use disable-output-escaping="yes" -- stavros On Wed, 21 Jul 2004, Z.Z. wrote: > Hi All, > > I use Cocoon 2.1.5.1 in Linux environment. Character set of my xmls is > utf-8. All of setting is utf-8 (web.xml, sitemap.xmap, xsls...) > When I see source of my generated htmls, character

Re: Serialization encoding problem

2004-07-21 Thread Upayavira
Ray Allis wrote: Z.Z. wrote: Hi All, I use Cocoon 2.1.5.1 in Linux environment. Character set of my xmls is utf-8. All of setting is utf-8 (web.xml, sitemap.xmap, xsls...) When I see source of my generated htmls, character set is utf-8. But in body all of accented char is made by acuted (á ...).

Re: Serialization encoding problem

2004-07-21 Thread Z.Z.
Hi All, 2004. július 22. 01.10 dátummal Ray Allis ezt írta: > Z.Z. wrote: > >Hi All, > > > >I use Cocoon 2.1.5.1 in Linux environment. Character set of my > > xmls is utf-8. All of setting is utf-8 (web.xml, sitemap.xmap, > > xsls...) When I see source of my generated htmls, character set > > is ut

Re: Serialization encoding problem

2004-07-21 Thread Ray Allis
Z.Z. wrote: Hi All, I use Cocoon 2.1.5.1 in Linux environment. Character set of my xmls is utf-8. All of setting is utf-8 (web.xml, sitemap.xmap, xsls...) When I see source of my generated htmls, character set is utf-8. But in body all of accented char is made by acuted (á ...). Accented chars

Serialization encoding problem

2004-07-21 Thread Z.Z.
Hi All, I use Cocoon 2.1.5.1 in Linux environment. Character set of my xmls is utf-8. All of setting is utf-8 (web.xml, sitemap.xmap, xsls...) When I see source of my generated htmls, character set is utf-8. But in body all of accented char is made by acuted (á ...). Accented chars In head sec

Re: Sitemap how to link the serialization result to an other generator ?

2004-06-17 Thread Ugo Cei
Il giorno 18/giu/04, alle 07:48, Joerg Heinicke ha scritto: On 17.06.2004 15:25, Willy Reinhardt wrote: Hi, I tried to pre-processed an xsp (to set default value according i18n value) but I don't know how to link a serialized result to another generator The procedure I need is: 1) match an xsp requ

Re: Sitemap how to link the serialization result to an other generator ?

2004-06-17 Thread Joerg Heinicke
On 17.06.2004 15:25, Willy Reinhardt wrote: Hi, I tried to pre-processed an xsp (to set default value according i18n value) but I don't know how to link a serialized result to another generator The procedure I need is: 1) match an xsp request 2) read and generate sax event as with any xml file 3) T

Sitemap how to link the serialization result to an other generator ?

2004-06-17 Thread Willy Reinhardt
Hi, I tried to pre-processed an xsp (to set default value according i18n value) but I don't know how to link a serialized result to another generator The procedure I need is: 1) match an xsp request 2) read and generate sax event as with any xml file 3) Transform using i18n transformer 4) Serializ

Re: post-serialization action

2004-04-15 Thread Reinhard Pötz
[EMAIL PROTECTED] wrote: Hi, is there any way to process some code right after a Using Flowscript may help here. See http://wiki.cocoondev.org/Wiki.jsp?page=RhinoWithContinuations for details - expecially the section containing catch(return) {...} -- Reinhard

Re: post-serialization action

2004-04-15 Thread Jan Hoskens
rsday, April 15, 2004 3:30 PM Subject: post-serialization action > Hi, > > is there any way to process some code right after a ? > > thanks > > - > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additi

Re: post-serialization action

2004-04-15 Thread Jorg Heymans
[EMAIL PROTECTED] wrote: Hi, is there any way to process some code right after a ? IMO you could do this in a custom serializer, after you write to the outputstream you can still do some of your own processing. hth Jorg - To

post-serialization action

2004-04-15 Thread enrico . maccias
Hi, is there any way to process some code right after a ? thanks - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Choosing the doctype of an xml serialization within pipeline at run-time

2004-01-07 Thread Joerg Heinicke
On 07.01.2004 20:21, Pierre Attar wrote: Bythe way, where are the sources of the SGVSerializer ? I did not found them in the 2.3 distribution. http://cvs.apache.org/viewcvs.cgi/cocoon-2.1/src/blocks/batik/java/org/apache/cocoon/serialization/SVGSerializer.java Joerg

Re: Choosing the doctype of an xml serialization within pipeline at run-time

2004-01-07 Thread Pierre Attar
Can you please tell us what are your thougts, as soon as you got time to have a look ? Bythe way, where are the sources of the SGVSerializer ? I did not found them in the 2.3 distribution. Thanks a lot, Pierre At 13:03 07/01/2004, you wrote: For the sake of getting a better grip on the cocoon

Re: Choosing the doctype of an xml serialization within pipeline at run-time

2004-01-07 Thread Jorg Heymans
For the sake of getting a better grip on the cocoon internals, I'll have a look at it this week. Joerg Heinicke wrote: On 07.01.2004 12:52, Jorg Heymans wrote: Sorry didn't see that last update. With a bit of work this should be very much possible then from the looks of it, cool. Will this get

Re: Choosing the doctype of an xml serialization within pipeline at run-time

2004-01-07 Thread Joerg Heinicke
On 07.01.2004 12:52, Jorg Heymans wrote: Sorry didn't see that last update. With a bit of work this should be very much possible then from the looks of it, cool. Will this get included in the 2.1.x branch anytime soon? (i guess the answer is : as soon as someone writes the patch) I like this ans

Re: Choosing the doctype of an xml serialization within pipeline at run-time

2004-01-07 Thread Jorg Heymans
Joerg Pierre Attar wrote: Hi, I need to decide, straight in a pipeline, which doctype to apply to an xml serialization: it is impossible for me to know it before. Therefore, I would like to use XML serializer parameters BUT within the pipeline. Something like :

Re: Choosing the doctype of an xml serialization within pipeline at run-time

2004-01-07 Thread Joerg Heinicke
rre Attar wrote: Hi, I need to decide, straight in a pipeline, which doctype to apply to an xml serialization: it is impossible for me to know it before. Therefore, I would like to use XML serializer parameters BUT within the pipeline. Something like :

Re: Choosing the doctype of an xml serialization within pipeline at run-time

2004-01-07 Thread Jorg Heymans
erre Attar wrote: Hi, I need to decide, straight in a pipeline, which doctype to apply to an xml serialization: it is impossible for me to know it before. Therefore, I would like to use XML serializer parameters BUT within the pipeline. Something like :

Re: Choosing the doctype of an xml serialization within pipeline at run-time

2004-01-07 Thread Nicolas Toper
From what I understand Cocoon instances serializers at the sitemap interpretations. Le Mercredi 07 Janvier 2004 12:21, Pierre Attar a écrit : > Hi, > > I need to decide, straight in a pipeline, which doctype to apply to an xml > serialization: it is impossible for me to kn

Choosing the doctype of an xml serialization within pipeline at run-time

2004-01-07 Thread Pierre Attar
Hi, I need to decide, straight in a pipeline, which doctype to apply to an xml serialization: it is impossible for me to know it before. Therefore, I would like to use XML serializer parameters BUT within the pipeline. Something like : Does

Re: serialization

2004-01-04 Thread Jorg Heymans
wrote: Hi, How(!) can I bypass the serialization of a pipeline and start a new one without HTTP redirection? for example, in the following sitemap : could do the job here How could I avoid the serialization of this flow and send the HTTP client, for instance, a default

Re: serialization

2004-01-04 Thread toto
Jorg Heymans wrote: toto wrote: Hi, How(!) can I bypass the serialization of a pipeline and start a new one without HTTP redirection? for example, in the following sitemap : could do the job here How could I avoid the serialization of this flow and send the HTTP client, for

Re: serialization

2004-01-04 Thread Jorg Heymans
toto wrote: Hi, I can I bypass the serialization of a pipeline and start a new one without HTTP redirection? for example, in the following sitemap : could do the job here How could I avoid the serialization of this flow and send the HTTP client, for instance, a default page

serialization

2004-01-04 Thread toto
Hi, I can I bypass the serialization of a pipeline and start a new one without HTTP redirection? for example, in the following sitemap : How could I avoid the serialization of this flow and send the HTTP client, for instance, a default page ? enrico

Serialization Exceptions

2003-11-19 Thread yuri
Hi, we are getting the following exception when the memory cache is free()'ed and it attempts to serialise the xslt processor (presumably) to the file cache. Has anyone seen this problem before? It happens even with Xalan 2.5.2. The class ExtensionNamespacesManager is not serializable, it looks

Re: variable serialization

2003-10-12 Thread Geoff Howard
[EMAIL PROTECTED] wrote: Can I use a paremeter for setting the type of serialization that I want at the end of a pipeline ? I would want something like No. To accomplish the same thing you can use a selector or matcher. Geoff transformationType is a session

  1   2   >