Re: nasa

2003-06-19 Thread Bert Van Kets
At 11:01 19/06/2003 +0200, you wrote: Is it true that the NASA Web site runs under Cocoon ? Nope, there's a NASA intranet site that runs on cocoon - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: escaping xml tags

2003-04-04 Thread Bert Van Kets
Aparently your xsp:exprresult/xsp:expr returns a string and not and XML stream. You can use JTidy to convert your String to an XML stream. It's classes are available in Cocoon! Here's a code snip out of an XSP page that converts a POST from a brower based html editor to an XML stream.

memory on the status page

2003-04-04 Thread Bert Van Kets
Hi all, I have Cocoon configured on a Windows2K server that is using JDK 1.3.1 and Tomcat 4.0.6. The JAVA_OPTS environment variable is set to -Xmx256m Tomcat is setup as a service and is using 119MB of memory. When I call the status page it tells me there's 64MB of memory and 19MB is available.

Re: [POLL] JDK 1.2 Support

2003-02-02 Thread Bert Van Kets
1.3.1_06 on Win2K At 01:54 2/02/2003 -0600, you wrote: 1.4.1_01 on Linux Antonio Gallardo Litrik De Roy dijo: 1.3 Litrik De Roy www.litrik.com - Original Message - From: Vadim Gritsenko [EMAIL PROTECTED] To: Cocoon Users [EMAIL PROTECTED] Cc: Cocoon Developers [EMAIL

Re: How to open 2 windows?

2003-01-28 Thread Bert Van Kets
I agree, but there are occasions that opening two windows is very valid. You can't post a response to two browser windows at the same time. The second window doesn't even exist yet. You have to open the second window using javascript in the onLoad event of teh page containing the html. In the

RE: authentication frustration

2002-11-04 Thread Bert Van Kets
At 14:57 31/10/2002 +0100, you wrote: I too will be very hard at work on a SAP project from November 18th till February 2003. I will be developing iViews for the SAP Enterprise Portal. One of the things I'll be testing is integrating Cocoon in an iView. Should be interesting, specially

Re: directory generator - sorting parameter works?

2002-11-04 Thread Bert Van Kets
Hi Sanne, This feature is not available. You'll have to add it and provide a patch. You can use sorting in XSLT though using xsl:for-each and then xsl:sort. HTH, Bert At 11:14 31/10/2002 +0100, you wrote: Hi, I've been trying to get a sorted file listing from the directory generator. Here's my

RE: authentication frustration

2002-10-31 Thread Bert Van Kets
project to start delving into the code myself. I'm sure your book will come in handy. ;-) Man, I can't wait till Cocoon version 2.1 so I can safely upgrade my applications. Thanks for all the work and suport. Bert At 12:10 31/10/2002 +0100, you wrote: -Original Message- From: Bert Van

RE: authentication frustration

2002-10-31 Thread Bert Van Kets
more of nothing. And you know how that feels. Ray -Original Message- From: Bert Van Kets [mailto:bert;vankets.com] Sent: Wednesday, October 30, 2002 8:45 AM To: [EMAIL PROTECTED] Subject: Re: authentication frustration Carsten, Any idea when this will be solved? Bert At 14:16

coplet not available

2002-10-31 Thread Bert Van Kets
I created a coplet and I can't get it's content in the portal. When I call the coplet URL directly I get the XML data. I have configured teh coplet in the global, role and user profile, but when I call the portal I always get The coplet is currently not available. I changed the content to a

RE: coplet not available

2002-10-31 Thread Bert Van Kets
- Cocoon book: http://www.amazon.com/exec/obidos/ASIN/0735712352/needacake-20 Weblog: http://radio.weblogs.com/0103021/ = -Original Message- From: Bert Van Kets

authentication frustration

2002-10-30 Thread Bert Van Kets
I'm trying to create a form that gives the authenticated user access to his data in the database. I'm using the sunRise authentication in a CVS build form 14 May 2002 with tomcat 4.0.1 and jDK 1.3.1_2 on win2K. A pipeline aggregates all the necessary data to present the page. One part of this

Re: authentication frustration

2002-10-30 Thread Bert Van Kets
/bugzilla/show_bug.cgi?id=12293 ? Just a guess... -Tuomo On Wed, 30 Oct 2002, Bert Van Kets wrote: I'm trying to create a form that gives the authenticated user access to his data in the database. I'm using the sunRise authentication in a CVS build form 14 May 2002 with tomcat 4.0.1 and jDK

Re: authentication frustration

2002-10-30 Thread Bert Van Kets
Thanks, I'll check it out. If it doesn't work I'll open the link in a new window as a temporary sollution. This way I can skip the aggregation and the pipeline nesting. Bert At 15:28 30/10/2002 +0200, you wrote: On Wed, 30 Oct 2002, Bert Van Kets wrote: apparently it does :( Any solution

Re: authentication frustration

2002-10-30 Thread Bert Van Kets
30/10/2002 +0200, you wrote: Could this happen due to this bug: http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12293 ? Just a guess... -Tuomo On Wed, 30 Oct 2002, Bert Van Kets wrote: I'm trying to create a form that gives the authenticated user access to his data in the database. I'm

[SUMMARY] Encoding form data

2002-10-28 Thread Bert Van Kets
Cocoon does not support non-US characters when posting data to the server. Characters like è (e accent grave) are translated to two strange characters when checking the posted data. iso-8859-1 is the default encoding for Cocoon and it does support all necessary West European characters (thanks

Re: Cocoon task scheduler

2002-10-28 Thread Bert Van Kets
There has been a similar thread before. dig up that one first. Cocoon, being a servlet, only reacts to http requests. So the only way to activate things on a timely basis is to use another program that calls a URL, and thus a pipeline, that activates whatever you want to get done. A wget in a

Re: Cocoon SQL Transformation

2002-10-28 Thread Bert Van Kets
I can't help you with your problem, but I can tell you that I am using esql in an XSP with this. It works flawlessly when calling multiple queries one after the other. Bert At 13:26 28/10/2002 +, you wrote: Hi all, Quick question to do with the way the cocoon SQL parser copes with

RE: Cocoon task scheduler

2002-10-28 Thread Bert Van Kets
But cryptic reply John, g wget is indeed a *nix prog that creates an http request and captures the result. Actually, all you need is a program doesn't matter which one that sends out an http request. Heck, you can even use a scheduled off line favorite in IE for this. You will need to set

Re: [SUMMARY] Encoding form data

2002-10-28 Thread Bert Van Kets
Don't get this wrong. You needn't add the action in every pipeline, just in the ones that capture form data where you can expect non-ASCII characters. Thanks for the addition. Bert At 14:59 28/10/2002 +0100, you wrote: If somebody implements the database-actions like in the

Re: xsp request variable is not declaired

2002-10-28 Thread Bert Van Kets
Make sure you put your request inside a tag. Like this: xsp:page language=java xmlns:xsp=http://apache.org/xsp; xmlns:esql=http://apache.org/cocoon/SQL/v2; xmlns:xsp-request=http://apache.org/xsp/request/2.0; data xsp:logic your logic /xsp:logic /data /xsp:page

Re: cocoon icon

2002-10-27 Thread Bert Van Kets
It's in CVS in the xml-cocoon2/src/resources directory. You will find anything you need. Bert At 11:42 27/10/2002 +0100, you wrote: Hi, Anyone knows where can I download a cool looking cocoon icon for a website? Cheers -

Re: Cocoon Portal Layout

2002-10-25 Thread Bert Van Kets
Sorry Antonio but it's in the resources/free/portal.xml and resources/auth/portal.xml files. Bert At 00:20 25/10/2002 -0600, you wrote: I think inside the xsl file for the portal. Antonio Gallardo El Viernes, 25 de Octubre de 2002 00:09, Richard Reyes escribió: Thanks Antonio, would you

Re: Cocoon Portal Layout

2002-10-25 Thread Bert Van Kets
the config.xconf and sitemap.xmap files you are using! The principle remains the same, only the components have moved. HTH, Bert At 15:11 25/10/2002 +0800, you wrote: Hi Bert, Can I change the orientation of the frames sets? It doesn't seem like it? - Original Message - From: Bert Van

Re: Cocoon Portal Layout

2002-10-25 Thread Bert Van Kets
the portal documentations some more. Although I still would want to know were those frameset codes are? Its not on the xml, not on the xsl... Are they being generated by Cocoon? === - Original Message - From: Bert Van Kets [EMAIL

Re: [PATCH] for xsp-session:getxml

2002-10-25 Thread Bert Van Kets
Hi Antonio, I've been trying hard to get this esql sample to work. The tag works perfectly. userxsp-session:getxml context=authentication path=/authentication/ID//user returns the userID in my xsp page. So there is nothing wrong with the class or the session.xsl file. However, I need to

Re: Cocoon Portal Layout

2002-10-25 Thread Bert Van Kets
by Cocoon? === - Original Message - From: Bert Van Kets [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, October 25, 2002 3:34 PM Subject: Re: Cocoon Portal Layout I have kept the sizing and position of the frames, so I have not tried

Re: Handling a form values and updating an XML

2002-10-25 Thread Bert Van Kets
I'm using the FileWritingTransform to do this. There are lots of samples in the portal demo where the user data is written to disk. It supports full XPath in the file, so you can add or replace XML parts. There is a big BUT though!!! There is no file locking in the FWT, so you must make sure

Re: [PATCH] for xsp-session:getxml

2002-10-25 Thread Bert Van Kets
on statement: + _esql_query.getQueryString() + : +_esql_exception_N1001C); } What else can I try? Bert At 13:38 25/10/2002 +0300, you wrote: Hi Bert, Try to put esql:parameter around xsp-sessio:getxml in your query. -Tuomo On Fri, 25 Oct 2002, Bert Van Kets wrote: Hi Antonio

encoding problem

2002-10-25 Thread Bert Van Kets
Hi all, I have a mySQL database with varchar fields containing foreign characters (ex. ë) Queries in the mySQL client yield correct results. When I do a query using the SQLTransfomer or esql the non ASCII characters are not presented properly. The ë is converted to ë Here's the pipeline:

Re: [PATCH] for xsp-session:getxml

2002-10-25 Thread Bert Van Kets
some enhancement. It now returns as=string. Antonio Gallardo El Viernes, 25 de Octubre de 2002 05:14, Bert Van Kets escribió: I tried this already. This does not work! Here's my page: ?xml version=1.0 encoding=UTF-8? xsp:page language=java xmlns:xsp=http://apache.org/xsp; xmlns:esql=http

Re: encoding problem

2002-10-25 Thread Bert Van Kets
I'm using a build from 14 May 2002. This doesn't have this action yet. I'll check a recent build and try that. Do you mean that I need to add this action at the beginning of EVERY pipeline? Bert At 16:55 25/10/2002 +0200, you wrote: hy Bert, we had this problem too. look, if the map:actions

Re: R: R: encoding problem

2002-10-25 Thread Bert Van Kets
' encoding; moreover, AFAIK, the default is utf-8 (as it should be, since XML has utf-8 as default). Best regards, Luca Morandini [EMAIL PROTECTED] -Messaggio originale- Da: Bert Van Kets [mailto:bert;vankets.com] Inviato: venerdì 25 ottobre 2002 16.33 A: [EMAIL PROTECTED] Oggetto: Re: R

RE: [Off-topic:XSLT] Passing an XML fragment via a HTML form.

2002-10-24 Thread Bert Van Kets
I used JTidy to parse the string and output it as a DOM stream into an XSP page. This DOM stream is automatically converted to a SAX stream by Cocoon. Regular XSLT can be performed after this. JTidy is readily available in Cocoon. Here's a code snip: try { Tidy tidy = new Tidy();

Re: Creating PDF with graphics

2002-10-24 Thread Bert Van Kets
Yes, you can combine both. Use xsl:fo to insert the image, but make sure you call it by using the absolute URL (including http://domain/...) All you need to do then is create a pipeline that generates the image when requesting it. HTH, Bert At 15:37 24/10/2002 +0200, you wrote: I'v seen the

Re: Creating PDF with graphics

2002-10-24 Thread Bert Van Kets
You should do 3 things: 1. Check the PDF docs and see if it understands SVG. If so, send SVG and not a bitmap. The quality of teh image will be better 2. Check out the SVG docs at http://www.w3.org/Graphics/SVG/Overview.htm8 to see how you create SVG docs. 3. Check the xsl:fo documentation

Re: serialize svg2wbmp?

2002-10-24 Thread Bert Van Kets
The SVG to image classes come from Batik. Check their site. I doubt the format is supported though. Bert At 17:43 24/10/2002 +0200, you wrote: Hi! Is thers one svg2wbmp (for wap) serializer? Or How can I do to convert my SVG files that I create from XML to WBMP? Thank for your help and

Re: sunRise User Administration for Dummies

2002-10-11 Thread Bert Van Kets
Wow, man are you impatient. You can use any source you like. File (as in the sample), database, LDAP, ... If you don't supply the info in the same structure as the original users file, you will have to put a transformer in the pipeline that supplies the info. Find out more on sunRise at

RE: example in the Cocoon book

2002-10-10 Thread Bert Van Kets
What's the page of this book bug? I want to correct the bug in the book itself. Bert At 11:17 10/10/2002 +0200, you wrote: Hi, guess what - this is a bug in the book :). 8. map:read src=download/{file}/ That line should read: map:read

Re: ESQL and JDBC on JDK1.4.1

2002-10-09 Thread Bert Van Kets
Is there a JDK1.4.1 compatible JDBC driver available for mySQL? I can't seem to find any me,ntion of the supported JDKs on the mysQL sites. :-( Bert At 01:11 9/10/2002 +0200, you wrote: On 08.Oct.2002 -- 10:06 PM, Bert Van Kets wrote: Does esql run on JDK1.4.1? If so, do I need a very

ESQL on JDK1.4.1

2002-10-08 Thread Bert Van Kets
Does esql run on JDK1.4.1? If so, do I need a very recent Cocoon version? I need to run it on a headless Suse 7.3 box with mySQL as a database. Bert This mail is written in 100% recycled electrons. - Please check that your

Cocoon on Headless Linux with JDK1.4

2002-10-02 Thread Bert Van Kets
My ISP can provide me with a headless web server running Suse 7.3, Resin 2.4 (I think) and JDK 1.4. He does not want to install the X libraries due to security reasons :-( Is there an alternative? AFAIK pja does not run on JDK 1.4 Thanks, Bert This mail is written in 100% recycled electrons.

Re: Cocoon on Headless Linux with JDK1.4

2002-10-02 Thread Bert Van Kets
I'll take it up with my ISP, but I doubt I'll be able to persuade him to install Xvfb. I guess changing to another ISP would be the best option. Bert At 19:31 2/10/2002 +1000, you wrote: On Wed, Oct 02, 2002 at 09:05:16AM +0200, Bert Van Kets wrote: My ISP can provide me with a headless web

Re: Cocoon on Headless Linux with JDK1.4

2002-10-02 Thread Bert Van Kets
Doesn't Xvfb need the X libraries too? Bert At 19:31 2/10/2002 +1000, you wrote: On Wed, Oct 02, 2002 at 09:05:16AM +0200, Bert Van Kets wrote: My ISP can provide me with a headless web server running Suse 7.3, Resin 2.4 (I think) and JDK 1.4. He does not want to install the X libraries

Re: Cocoon on Headless Linux with JDK1.4

2002-10-02 Thread Bert Van Kets
#headless Hope this helps -- Ilya Jeff Turner wrote: On Wed, Oct 02, 2002 at 01:04:29PM +0200, Bert Van Kets wrote: Doesn't Xvfb need the X libraries too? I don't think so; at least Debian doesn't list any X packages as a dependencies, and says Xvfb can be used as an aid to porting the X server

Re: Portal screenshots

2002-09-25 Thread Bert Van Kets
Hey, you already have mine! The layout has changed a bit, but that's not as important as it's application. Bert At 09:58 25/09/2002 +0200, you wrote: Hi as most of you know Carsten and I travel the land speaking on Cocoon and presenting (in particular) on the Cocoon portal and authentication

creating new file with SWT

2002-07-31 Thread Bert Van Kets
Hi all, I am trying to get the SourceWritingTransformer to create a new XML file. Is this possible at all? All the samples I find write to existing files. The portal is the only sample that writes new files, but it's using session:target to create the new files. Anyway, here's my code snip

Re: requesting a form text block as xml

2002-07-15 Thread Bert Van Kets
the file will be requested due to an xml error. Need a copy? Bert At 20:52 14/07/2002 -0500, you wrote: Thanks Bert I am looking into it. Did you request the conversion/validation on the fly via XSP ? Bert Van Kets wrote: I did this using JTidy. In my case I validated a string containing html

xhtml2fo.xsl anyone

2002-07-15 Thread Bert Van Kets
I'm looking for a working version of a xhtml2fo.xsl file. I have found some on the net, but can't get some decent results. :-( Any help is welcome. Thanks, Bert - Please notify me if you did not receive

Re: xhtml2fo.xsl anyone

2002-07-15 Thread Bert Van Kets
thanks for sharing the experience Bertrand. There are two documents in Forrest I can use for this html2doc10.xsl and doc102fo.xsl (not sure about the correct names). I'll check them out and perhaps move them to doc11, this would make some Forresters very happy (reading this Konstantin?). Bert

Re: MySQL Numbers and Xalan...

2002-07-15 Thread Bert Van Kets
Have you tried esql? It gives you a lot more control over how you request the data. There are enough docs and samples on esql to get you started. Bert At 14:21 15/07/2002 +0200, you wrote: Hi all, I've got the following problem (on C2.0): a rowset generated by the SQLTransformer (which

Re: requesting a form text block as xml

2002-07-14 Thread Bert Van Kets
I did this using JTidy. In my case I validated a string containing html and converted to xhtml. JTidy also has an option to parse XML and another one to ouput to a DOM document stream. Some samples are available on the JTidy site at http://sourceforge.net/projects/jtidy/ Bert At 19:27

Re: User Authentication - HOW ?

2002-07-03 Thread Bert Van Kets
There's a full authentication in sunSpot that is very easy to implement. Check out http://xml.apache.org/cocoon/developing/sunrise.html and http://www.need-a-cake.com/stories/2002/02/28/usingTheSunriseComponents.html Try it step by step and you'll see that it's not really difficult, yet very

Re: [USER POLL] New cocoon-docs mailing list?

2002-07-01 Thread Bert Van Kets
+1 from me. Maybe some more users (me included) will get some more focus on docs. I have some texts laying around I need to finish to be useful. Bert At 14:09 28/06/2002 +0200, you wrote: The Cocoon documentation project has started with the great help of Diana Shannon, and is gaining good

Re: 'optimised HTML' serialiser

2002-06-25 Thread Bert Van Kets
If you want to strip the indent spaces add these lines to the last XSL: xsl:output indent=no method=html/ xsl:strip-space elements=*/ To optimise the flow, I add them to every XSL. Bert At 13:33 25/06/2002 +0200, you wrote: Hi, In a production environment, it's important to have

Re: Help on displaying both image and content in one output

2002-06-21 Thread Bert Van Kets
At 23:49 20/06/2002 +0200, you wrote: Sreenivasan N. wrote: hi all I would like to display my output with a image and content. Basically i would like to give user output with a chart using svg2jpg serializer and html output using an XSP taking data from database. Is it possible in cocoon..?

Re: using frames

2002-06-21 Thread Bert Van Kets
If you call myhomepagemenu and myhomepagemain, do you get some content? If you don't, you should check you xsl files if they are correct and give you any content. Bert At 21:02 21/06/2002 +0200, you wrote: hi! i want to use frames in my hompage - so i did this. in my index.xsp -- frameset

Re: Form submission - results to a new window? [OT?]

2002-06-10 Thread Bert Van Kets
At 11:54 10/06/2002 +0200, you wrote: Hi I appreciate that this is not strictly a Cocoon issue - but thought there might be a guru here to help I have a form which will be submitted to Cocoon for processing. From the XSLT: input type=submit name=@target value=Submit / where @target will

RE: sunrise authentication with a java class

2002-06-03 Thread Bert Van Kets
Hi Brian, At 20:05 2/06/2002 -0400, you wrote: -Original Message- From: Bert Van Kets [mailto:[EMAIL PROTECTED]] Subject: RE: sunrise authentication with a java class If you use the 2.1-dev HEAD branch you need to adjust a LOT of things in the sitemap and the config.xconf

Re: XMLtoAny

2002-06-03 Thread Bert Van Kets
Have you looked at the Cocoon servlet, that's only 750KB :-P Cocoon packs a LOT more functionality than the translation from XML to html and WML. I think you are underestimating Cocoon a LOT. Bert At 09:16 3/06/2002 +0200, you wrote: People, Have you ever seen this?

RE: .htc how to (pipeline)

2002-06-03 Thread Bert Van Kets
you should change the mime-type. On Sun, 2 Jun 2002, Bert Van Kets wrote: I have a browser based editor using htc files without any problem. I just created a pipeline that read the external files. Everything works like a charm. I'm using Cocoon 2.1-dev. Bert At 11:51 1

RE: How to store a generated xml in a location.

2002-06-03 Thread Bert Van Kets
Check out the files in src\webapp\sunspotdemo\resources in the CVS HEAD. Lots of samples there. The user data, the profiles, everything is saved using the SourceWritingTransformer. HTH, Bert At 09:57 3/06/2002 -0400, you wrote: From: Sreenivasan N. [mailto:[EMAIL PROTECTED]] Hi all

RE: .htc how to

2002-06-02 Thread Bert Van Kets
I have a browser based editor using htc files without any problem. I just created a pipeline that read the external files. Everything works like a charm. I'm using Cocoon 2.1-dev. Bert At 11:51 1/06/2002 +0300, you wrote: .htc files are nothing more than .js files plus they are working just

RE: sunrise authentication with a java class

2002-06-02 Thread Bert Van Kets
It's up to date with the 2.0.3 branch. If you use the 2.1-dev HEAD branch you need to adjust a LOT of things in the sitemap and the config.xconf files. Also the namespace paths must be corrected in the xsl and xsp files. Check out the portal demo to get he correct entries. I've got the

RE: Sitemap schema

2002-05-31 Thread Bert Van Kets
Here's an updated version that works with 2.1-dev I haven't checked with sub sitemaps and I need to add tag/attribute references to make it really useful. Bert At 11:42 31/05/2002 +0200, you wrote: Rogier Peters showed me the Sitemap DTD (Cocoon

Re: sunrise authentication with a java class

2002-05-31 Thread Bert Van Kets
If you download a cvs (source) version of 2.0.2 or 2.0.3 you need to build using installscratchpadwar, otherwise the portal and authentication samples won't be included. The code is still in the scratchpad, that's why. In the CVS HEAD version 2.1-dev it's moved to the main branch. HTH, Bert

Multiple mails

2002-05-30 Thread Bert Van Kets
If I need to send out a mail to 2000 people (members of an association, no spam involved) using the sendmail logicsheet. What would be the best way to do this recursive action? The user data is in a database. I'm using Cocoon 2.1-dev. Thanks, Bert My spelling is Wobbly. It's good spelling

Re: Optimize Cocoon/Tomcat for live sites

2002-05-29 Thread Bert Van Kets
Do a CVS checkout and go to http://localhost:8080/cocoon/documents/performancetips.html All you need is there! Bert At 13:22 29/05/2002 +0200, you wrote: Hi, I have been looking for some How to documentation on Cocoon speed optimization without any luck. (yes! i have Googled) Does someone

RE: Include external javascript file

2002-05-29 Thread Bert Van Kets
directories. Makes life easier. Other than this, there is no specific reason. Bert At 17:07 29/05/2002 +0530, you wrote: I have a silly question, Why do we put {1}.js in js/{1}.js ? -Original Message- From: Bert Van Kets [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 29, 2002 1:49 AM

RE: build target with no samples?

2002-05-29 Thread Bert Van Kets
will be available once Cocoon has moved to blocks. It will be possible to start out very basic and add blocks to add functionality. Don't expect this to be ready soon though. Check out the mail archive on blocks. Bert -Original Message- From: Bert Van Kets [mailto:[EMAIL PROTECTED

Re: Include external javascript file

2002-05-28 Thread Bert Van Kets
You must add a pipeline for every filetype you wish to call in your application. Put your *.js files in the js directory and add the following to your pipelines map:match pattern=*.js map:read src=js/{1}.js mime-type=text/javascript/ /map:match Now you can call any

Jtidy and character escaping

2002-05-27 Thread Bert Van Kets
I'm using JTidy to convert a string containing some HTML to XHTML in a DOM tree. I can't get the foreign characters like éèà converted to the XHTML counterpart. What setting do I need to use??? Here's a code snip from my XSP page: String strContent = request.getParameter(content);

Re: I am new to Cocoon?Anyone can help me?

2002-05-23 Thread Bert Van Kets
http://xml.apache.org/cocoon/faq.html#faq-24 or remove all batik components from the sitemap. Bert At 14:33 23/05/2002 -0700, you wrote: I am new to Concoon, when i follow the instanll document to install cocoon with resin 1.3.b1,i catch this exception: ERROR (2002-05-22) 12:37.56:537

RE: Cocoon book reviewers wanted

2002-05-22 Thread Bert Van Kets
My opinion exactly! Open Source survives because it is used in a commercial world. Let this be the Paradox of Open Source. Bert At 14:09 22/05/2002 +0200, you wrote: I was going to refrain from commenting... Anyone who believes (or thinks) that an open source project can survive without

Re: Cocoon 2 Problem

2002-05-21 Thread Bert Van Kets
Read the cocoon docs! You need an X11 screen to be able to use Batic. Another solution is JDK 1.4, but then you must compile Cocoon yourself in JDK 1.4 and you must use at least Cocoon 2.0.3. Bert At 08:17 21/05/2002 -0400, you wrote: yes i checked the logs and i see these 2 errors ERROR

Re: Cocoon 2 Problem

2002-05-21 Thread Bert Van Kets
/// | ___| On Tue, 21 May 2002, Bert Van Kets wrote: Read the cocoon docs! You need an X11 screen to be able to use Batic. Another solution is JDK 1.4, but then you must compile Cocoon yourself in JDK 1.4 and you must use at least Cocoon 2.0.3. Bert At 08:17 21/05/2002 -0400, you

Re: Cocoon 2 Problem

2002-05-21 Thread Bert Van Kets
At 15:32 21/05/2002 +0200, you wrote: Hello!! I have the same error, but when I check the log files catalina.out, catalina_log.2002-05-21, localhost_access_log.2002-05-21, localhost_examples_log.2002-05-21 and localhost_log.2002-05-21 (I don't have any log file inside the cocoon directory)

Re: Cocoon 2 + Access

2002-05-16 Thread Bert Van Kets
This is a very good suggestion and will proof that Java and Access don't mix. BTDT The best solution for this problem I have found (been given) is the use of DBTools on top of MySQL. Install MySQL locally and add DBTools (www.dbtools.com.br). This gives you an interface with all the Access

Re: ESQL Update problem

2002-05-16 Thread Bert Van Kets
I am using ESQL update and delete queries Here's a snip of the code I'm using successfully: esql:execute-query esql:queryxsp:exprpreQuery + + postQuery/xsp:expr/esql:query esql:results/ /esql:execute-query preQuery and portQuery are built up in the xsp and

XHTML browser based editor

2002-05-16 Thread Bert Van Kets
I'm looking for a good open source xhtml browser based editor. I have been looking at XS-DHEdit from SourceForge (http://sourceforge.net/projects/xsdheditor/) but this one only supports html. Catching the HTML and converting it to xhtml need some coding I'd like to avoid. Any info welcome,

Re: XHTML browser based editor

2002-05-16 Thread Bert Van Kets
Xopus is the one I would like to implement in the end. From what I read on your site it will be release very soon. Please let the list (and the rest of the world!) know when it's out. Wyona has implemented Xopus in their content management tools, but Xopus is not included in their CVS build

Re: xsp-session ns calls element creation funcs?

2002-05-15 Thread Bert Van Kets
Hi, I had the same problem with esql in a Dynamic XSLT using XSP. There was no solution found or given, so I made a workaround and skipped the logic sheet and did everything straight in Java. I too find the behavior very strange and would rather see this solved. It would open a lot of

Re: error starting tomcat

2002-05-15 Thread Bert Van Kets
Bert Van Kets wrote: When I start Tomcat I get 5 messages in the console saying: Cannot find CatalogManager.properties I have A separate site using Cocoon, next to a Cocoon CVS build. My config.xconf is exactly the same as in my cocoon CVS build (except for the MySQL driver). I also included

Re: Parameter passing with Cocoon

2002-05-14 Thread Bert Van Kets
Change that to http://www.foo.com/x/y/z/index.html and you can use a pipeline matcher like this: map:match pattern=/*/*/*/*.html map:generate src=/docs/{4}.xml/ map:transform src=/styles/yourtransfomer.xsl map:parameter name=x value={1}/ map:parameter name=y value={2}/

error starting tomcat

2002-05-14 Thread Bert Van Kets
When I start Tomcat I get 5 messages in the console saying: Cannot find CatalogManager.properties I have A separate site using Cocoon, next to a Cocoon CVS build. My config.xconf is exactly the same as in my cocoon CVS build (except for the MySQL driver). I also included the resources directory

Re: Pollo anyone?

2002-05-10 Thread Bert Van Kets
I used it, but I guess it's out of data now. Does anyone know if pollo still supports all the sitemap tags? Bert At 14:39 10/05/2002 +, you wrote: Hi guys gals, has anyone out there used Pollo to edit .xmap, just wondering because I've just run it and ,it seems like a cool tool. If anyone

Re: Form Data to XML Document

2002-05-07 Thread Bert Van Kets
I have used two different approaches. One is using the request generator(*very* easy), the other creating an XSP that uses the request.getParameter(String) way. The latter one was chosen to be able to mix the received data with database data and for sorting. Bert At 09:25 6/05/2002 -0700, you

RE: XSP + Dynamic XML generator ??

2002-05-07 Thread Bert Van Kets
Isn't the xsl-dynamic page that you need? The sample can be found at http://localhost:8080/cocoon/sub/xsl-dynamic The transformer of the main pipeline calls a different pipeline where an XSP page generates the transformations. To my opinion XSP can be used as a transformer this way, no?

Re: dispatch to new window in web browser possible?

2002-05-06 Thread Bert Van Kets
There is NO WAY you can open a new window from the server side. Client side JavaScript (or VBscript in IE for the picky ones) is the only way to do this. There are different approaches to your problem, but they all involve some client side coding. Bert At 19:09 4/05/2002 +0200, you wrote:

RE: Cocoon Portal - Tabbed layout and Radio integration

2002-05-06 Thread Bert Van Kets
I've done some quit extensive programming using Layers with JavaScript. It is perfectly possible to create this and the user would indeed perceive it as being faster. The problem is that the server does not know what is going on (as Carsten already pointed out) and that using client side

Re: Windows 2000, PDF, and Cocoon

2002-05-03 Thread Bert Van Kets
I'm using Win2k Server SP2 Tomcat 4.0.1 JDK 1.3.1_02 Cocoon 2.1-dev (yesterdays CVS HEAD) Acrobat Reader 5.0 and the two PDF's in the samples do work in IE 6.0.2600! The two samples are http://localhost:8080/cocoon/hello.pdf http://localhost:8080/cocoon/fo (can be found in the static content

Re: dispatch to new window in web browser possible?

2002-05-03 Thread Bert Van Kets
I just want to add that you can name windows and submit data between them. It is perfectly possible to gather data in 1 window and always show the result in a second window, without opening a new window every time. The _blanc parameter will open an new window with every submit. You do not

Re: FO-PDF in a subsite - what is required?

2002-05-03 Thread Bert Van Kets
This smells a LOT like the wrong mime type. I've done a lot of programming using FDF's (PDF forms) and these also come through in the pure text type if the mime type is not set up correctly. Check your sitemap serializer entries. Bert At 15:44 3/05/2002 +0200, you wrote: Hi Still trying to

User authentication and roles

2002-05-03 Thread Bert Van Kets
I need to use teh roles in the user authentication and have been tying to get *something* going all day, with no succes. I've read the docs at least ten times, but can't find the way to get it going. What I need: I have several types of users. - The simplest ones only can access the member

xsp logicsheet

2002-04-30 Thread Bert Van Kets
I want to use an XSP logicsheet to process the values submitted by a form. In this page I have the following code (simplified): xsl:template match=list xsl:for-each select=element xsl:sort select=name/ xsp:logic String temp = xsl:value-of select=name/;

RE: any sites optimised for handhelds

2002-04-30 Thread Bert Van Kets
A PDA uses a HTML browser. The screen is only a quarter of a regular VGA screen. Due to this size factor sites need to be optimized for this device. The best PDA browser is said to be Opera. Client detection for a PDA is very simple with Cocoon since these browser have a unique client string.

RE: xsp logicsheet

2002-04-30 Thread Bert Van Kets
30/04/2002 -0300, you wrote: I guess it's String temp = xsl:value-of select=name/; or String temp = new String(xsl:value-of select=name/); Alejandro -Mensaje original- De: Bert Van Kets [mailto:[EMAIL PROTECTED]mailto:[EMAIL PROTECTED]] Enviado el: Martes 30 de

RE: xsp logicsheet

2002-04-30 Thread Bert Van Kets
At 10:38 30/04/2002 -0300, you wrote: I guess it's String temp = xsl:value-of select=name/; or String temp = new String(xsl:value-of select=name/); Alejandro Tried it, doesn't work. I guess it must be a bug. If I use String temp = xsl:value-of select=name/ I get

Re: [FEEDBACK NEEDED] Cocoon build-installation wishlist

2002-04-29 Thread Bert Van Kets
At 14:13 29/04/2002 +0400, you wrote: Hi! We are in the process of touching the build system to make it easier for users to build and deploy Cocoon. The interactive, installwar and installscratchpadwar targets have been a first try in that direction. What do you think of them, and

Re: Several C2.war in the same servlet container (was : RE: [FEEDBAC K NEEDED] Cocoon build-installation wishlist)

2002-04-29 Thread Bert Van Kets
I am running THREE cocoon apps piecefully alongside each other. The error that surfaces the most is hsql of the first app capturing a TCP/IP port hsql uses. The other apps using this port can't connect on that port any more and throw an error. Adjusting the hsql database properties solves a

  1   2   >