RE: public pages with the new portal framework?

2003-06-27 Thread Carsten Ziegeler
Alex Romayev wrote: I'm not sure about the new portal generator, but the old one requires authentication. I suspect that initially it was designed only to build portal pages, i.e., assuming there is an identifiable user and there are differences between what you show to different users.

Cocoon live site?

2003-06-27 Thread Darren Petrie
Not sure but I think this redesigned site is running Cocoon. http://www.ctg.albany.edu They mention Cocoon in their well written XML:A New Web Site Architecture http://www.ctg.albany.edu/publications/reports/xml Darren - To

Getting at file system location of a sitemap.xmap

2003-06-27 Thread Shinji Suzuki
Hi. (BIn my attempt of writing a reader component, I want (Bmy reader write to a file that stays in the same directory as (Bthe sitemap from which the said component is instantiated, (Bputting aside legitimacy of doing such. (I am trying to implement (Bmy own caching as I want to impose

Re: Cocoon live site?

2003-06-27 Thread Upayavira
A quick look at their HTTP headers reports Cocoon 2.0.4. Upayavira On 27 Jun 2003 at 10:26, Darren Petrie wrote: Not sure but I think this redesigned site is running Cocoon. http://www.ctg.albany.edu They mention Cocoon in their well written XML:A New Web Site Architecture

Re: Can't get v2.1, m1 or m2 working

2003-06-27 Thread Perry Molendijk
Uncommenting #exclude.block.axis=true from local.blocks.properties file and rebuilding it seems to have done the trick. That probably means that you have Axis (or something similar) somewhere else on the system. I encountered the same problem on a server at work. Perry

XSP page - dynamic link generation

2003-06-27 Thread Stephen Greene
Title: XSP page - dynamic link generation Hi all, I'm trying to create a dynamic link generated by a xsp page. Inside the html code: a href="">insert linkLink to some page/a I want to replace the insert link with a value passed back by a object method. E.g. This is what I trying at

Re: XSP page - dynamic link generation

2003-06-27 Thread Alexandre Victoor
Hello If think you should use xsp:attribute : a xsp:attribute name=href xsp:expr.../xsp:expr /xsp:attribute /a Alex At 11:09 27/06/2003 +0100, you wrote: Hi all, I'm trying to create a dynamic link generated by a xsp page. Inside the html code: a href=insert linkLink to some

AW: request parameter documentation?

2003-06-27 Thread Stephan Niedermeier
-Ursprüngliche Nachricht- Von: Dominic Chambers [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 26. Juni 2003 16:07 An: [EMAIL PROTECTED] Betreff: request parameter documentation? I need to learn exactly what names can be used to access the various request parameters from the sitemap

RE: XSP page - dynamic link generation

2003-06-27 Thread Stephen Greene
It's getting there but I'm getting some junk in the link aswell. The method getURL() returns a string which is a single word. But I'm getting: a href=%0A%09%09%09%09%09%20somepage%0A%09%09%09%09%09 How do I get rid of all the junk before and after the somepage text in the href

getting all datasource pools

2003-06-27 Thread andi
hi there, at startup of cocoon i'd like to connect to all databases configured in cocon.xconf and get data to configure the system. I've written a ThreadSafe,Sevicable Component for this task, but i can only get one datasourceconnection at a time and i have to know the name of the pool. (this

Compilation of XSP on IDE only

2003-06-27 Thread Nitin
Hi, Is there any way to compile all xsp file of a site and get the error results? just after amking changes in the XSP. thanks Nitin - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: request parameter documentation?

2003-06-27 Thread Dominic Chambers
Thanks everyone for the help! It seems that the documentation in the samples section (Cocoon | Samples | Modules), only exists in the 2.1 series of the docs. This url may be useful to anyone who reads this mail in the future: http://resin.mediahost.org/cocoon/samples/modules/index.xsp.

Re: Compilation of XSP on IDE only

2003-06-27 Thread Joerg Heinicke
No, because XSP files are transformed via xsp.xsl to an java file and will be compiled afterwards. Writing a build script doing the transformation and trying the compilation will be more useful I guess. Joerg Nitin wrote: Hi, Is there any way to compile all xsp file of a site and get the

Re: Compilation of XSP on IDE only

2003-06-27 Thread Upayavira
On 27 Jun 2003 at 16:19, Joerg Heinicke wrote: No, because XSP files are transformed via xsp.xsl to an java file and will be compiled afterwards. Writing a build script doing the transformation and trying the compilation will be more useful I guess. There is code within the CLI to compile

java.net.SocketException: Connection reset by peer: socket write error

2003-06-27 Thread Hill Karimov
Hi all, After update my cocoon 2.1-dev to cocoon 2.1m2, I get these exceptions in error.log: ERROR (2003-06-27) 15:52.52:235 [access] (/cocoon/test/ftv2mlastnode.gif) Thread-17/CocoonServlet: Internal Cocoon Problem java.net.SocketException: Connection reset by peer: socket write error

AW: XSP page - dynamic link generation

2003-06-27 Thread Markus Heussen
Hi Stephen, when you set the link in the following way a xsp:attribute name=href xsp:expr.../xsp:expr /xsp:attribute /a you will probably get a href=%0A%09%09%09%09%09%20somepage%0A%09%09%09%09%09 try: axsp:attribute name=hrefxsp:expr.../xsp:expr/xsp:attribute/a Greetings, Markus

Re: install cocoon 2.1-m2 on tomcat 4.1.24

2003-06-27 Thread Geoff Howard
Yes, I think that other jar is the problem. If it's not needed for other webapps, remove it and try again. If it is needed, use the Paranoid servlet described at http://wiki.cocoondev.org/Wiki.jsp?page=EndorsedLibsProblem. Geoff At 10:17 AM 6/26/2003, you wrote: Hi, I am attempting to

Oracle Database Authentication

2003-06-27 Thread Vermolen, J.C.M.C.
Hi, Recently I've been trying to use Cocoon 2.0.4 to develop a webapplication that connects to an Oracle 9 database.(I'mdoing this in light of my internship.)I've gotten it to work without too many problems. I wanted to take my idea a step further and create a system that let's a user

RE: caching proposals: SQLTransformer and Request

2003-06-27 Thread Christian Kurz
I just skimmed through the mailing list to find ideas of how to cache a pipeline starting with a request generator and later on passing data through the SQLTransformer. Did you or anybody else follow up on this idea? NB: Caching of the request generator would probably also need to cache request

RE: XSP page - dynamic link generation

2003-06-27 Thread Stephen Greene
It works a treat. Thanks Markus Stephen -Original Message- From: Markus Heussen [mailto:[EMAIL PROTECTED] Sent: 27 June 2003 13:37 To: [EMAIL PROTECTED] Subject: AW: XSP page - dynamic link generation Hi Stephen, when you set the link in the following way a xsp:attribute name=href

Re: caching proposals: SQLTransformer and Request

2003-06-27 Thread David Kavanagh
Christian, When we've had the need to cache a query, we just throw the result (as a DOM object) into the sesssion. I'm including the sample pipeline. I'll typicailly aggregate the results of this with something else (usually a dynamic query) and I'm all set. When I want to clear the cache, the

Deli in 2.1m1 - can't get it working

2003-06-27 Thread Mark H
When I try out the demo supplied in the deli documentation I get: java.lang.RuntimeException: Invalid conversion from 'reference' to 'java.lang.String'. None of the suggestions in the archives seem to work (changing the sitemap tag in cocoon.xconf). Has anybody got it working in 2.1 M1 or M2?

Cocoon to csv not excel

2003-06-27 Thread Tim Bachta
Is there a way to create a csv file using cocoon? I have looked through the developers handbook with no luck. Thank you. Tim Bachta - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

Re: install cocoon 2.1-m2 on tomcat 4.1.24

2003-06-27 Thread Peter Ross
Geoff, I think you misunderstood my mail, I *DON'T* have a copy of xmlParserAPIs.jar in the tomcat common/endorsed directory. However I just found the problem, inspired by some info from the link you mention. The problem was that the start menu items for starting/stoping tomcat didn't use the

Re: Cocoon to csv not excel

2003-06-27 Thread Upayavira
Using XSLT with the text serializer should do it. Just wrap your CSV content with a single node which will be ignored by the text serializer: root 1,bill 2,sid 3,sue /root and map:match pattern=xx map:generate ... map:transform... map:serialize type=text/ /map:match Regards, Upayavira

RE: Cocoon to csv not excel

2003-06-27 Thread Tim Bachta
So can I use an xsl to create the node? I have a xsp that creates an xml file that I don't want to change. Tim Bachta -Original Message- From: Upayavira [mailto:[EMAIL PROTECTED] Sent: Friday, June 27, 2003 9:32 AM To: [EMAIL PROTECTED] Subject: Re: Cocoon to csv not excel Using

RE: Cocoon to csv not excel

2003-06-27 Thread Upayavira
On 27 Jun 2003 at 9:55, Tim Bachta wrote: So can I use an xsl to create the node? I have a xsp that creates an xml file that I don't want to change. Yup. Use XSLT to transform your source XML into a CSV file wrapped by a single node, then pass it to the text serializer. Regards, Upayavira

RE: Cocoon to csv not excel

2003-06-27 Thread Upayavira
On 27 Jun 2003 at 9:55, Tim Bachta wrote: So can I use an xsl to create the node? I have a xsp that creates an xml file that I don't want to change. Yup. Use XSLT to transform your source XML into a CSV file wrapped by a single node, then pass it to the text serializer. Regards, Upayavira

Invalid processing instruction name (saxon:warning) with the bonebreaker example

2003-06-27 Thread Sliman Bouchareb
hello, im a newbie and i just tried out the bonebreaker example from www.cocooncenter.de well i did all the changes in my sitemap to map bonebreaker like indicated on cocooncenter.de but everytime i get the error : http://www.bouchareb.de/error.htm in some postings here, i read that the source of

Re: Invalid processing instruction name (saxon:warning) with the bonebreaker example

2003-06-27 Thread Upayavira
I've never tried bonebreaker, but if you've mounted it onto your root sitemap, then try accessing it via http://localhost:8080/cocoon/bonebreaker/ i.e. with a slash at the end. The mount probably mounts bonebreaker/ rather than just bonebreaker. Regards, Upayavira On 27 Jun 2003 at 17:09,

RE: public pages with the new portal framework?

2003-06-27 Thread Alex Romayev
That's good new Carsten! I'll look forward to the new version. While on the topic, I have a few questions/thoughts about the framework in general -- I'm going to create a separate thread for these though. Cheers, -Alex --- Carsten Ziegeler [EMAIL PROTECTED] wrote: Alex Romayev wrote: I'm

RE: xmlforms and Xindice and Mysql

2003-06-27 Thread Sylvain.Thevoz
Hi, look at cocoonwiki: http://wiki.cocoondev.org/Wiki.jsp?page=XMLFormXindice Sylvain -Message d'origine- De: Uwe Knorr [mailto:[EMAIL PROTECTED] Date: vendredi, 27. juin 2003 10:39 À: [EMAIL PROTECTED] Objet: xmlforms and Xindice and Mysql I want to ceate a multi-form-dialog

AW: Invalid processing instruction name (saxon:warning) with the bonebreaker example

2003-06-27 Thread Sliman Bouchareb
Hi Upayavira, thanx for the rush response. Now im getting this error http://www.bouchareb.de/error2.html here is a small view of my main sitemap: map:pipeline !-- match the Bonebreaker homepage -- map:match pattern=bonebreaker map:mount uri-prefix=bonebreaker check-reload=yes

Re: AW: Invalid processing instruction name (saxon:warning) with the bonebreaker example

2003-06-27 Thread Upayavira
Check all of the files that are used to generate that page exist in the right places. Have you put bonebreaker into a subfolder of the folder containing your main sitemap? I can't guarantee to be so quick next time - time to head home now... Regards, Upayavira On 27 Jun 2003 at 17:21, Sliman

The new portal framework: questions and thoughts

2003-06-27 Thread Alex Romayev
I have been using portal-fw for a year now. Overall, I’m very happy with it. It is well designed and contains all of the critical features you need to build a portal. It’s been lacking some of the nice to have's, but I’d rather have something to work with now and wait for the new features to

AW: AW: Invalid processing instruction name (saxon:warning) with the bonebreaker example

2003-06-27 Thread Sliman Bouchareb
hi again, yes all the files are there, i have the bonebreaker-directory in the cocoon directory well i wisch you a nice weekend. -Ursprungliche Nachricht- Von: Upayavira [mailto:[EMAIL PROTECTED] Gesendet: Freitag, 27. Juni 2003 17:27 An: [EMAIL PROTECTED] Betreff: Re: AW: Invalid

svgz to jpeg ?

2003-06-27 Thread rob
Hi, does anyone know if it is possible to serialize a compressed svg file (svgz) to jpeg ? Thanks, Rob Gregory.

SVGZ to JPEG

2003-06-27 Thread rob
Hi, does anyone know if it is possible to serialize a compressed svg file (svgz) to jpeg ? Thanks, Rob Gregory.

Setting up cocoon at site root

2003-06-27 Thread Justin Makeig
Question type=newbie How do I configure Tomcat 4.1.24 to run Cocoon sites from the site root? For example, right now I'm successfully running a Cocoon site from http://localhost/cocoon/mysite However, I would like to to configure Tomcat to run mysite from the request http://localhost/

Re: Setting up cocoon at site root

2003-06-27 Thread Lajos
Hi Justin - Easy. Make the path for the cocoon Context in server.xml and remove/comment out the ROOT Context. If you don't have an entry for cocoon in server.xml, then you could even just edit the existing root definition and change ROOT to cocoon. Regards, Lajos Justin Makeig wrote:

Re: Setting up cocoon at site root

2003-06-27 Thread Justin Makeig
Lajos, Thanks so much for the quick response. I'm still kind of muddled in the Tomcat documentation, though. Here's what I changed in server.xml: Host name=localhost debug=0 appBase=webapps/cocoon unpackWARs=true autoDeploy=true ... Context path= docBase=mysite debug=0/ However, when I

Re: Setting up cocoon at site root

2003-06-27 Thread Lajos
Justin - You can't make webapps/cocoon your host's appBase. The appBase must point to the directory containing the web applications, cocoon being one of them. So set appBase to just webapps, and the docBase of the default Context to cocoon. Regards, Lajos Justin Makeig wrote: Lajos, Thanks

Back in action

2003-06-27 Thread Tony Collen
Hello everybody! After a month off, I feel invigorated and the burnout has subsided. I've thusly decided to take up a non-computer hobby (Model Railroading), and that should help provide a nice balance between computer and non-computer life. I've also begun to get closer on finishing my

Scheduler (Re: Back in action)

2003-06-27 Thread Andreas Kuckartz
Tony Collen wrote: Unfortunately there's no scheduler in Cocoon, The Quartz scheduler is integrated in Lenya and as far as I know Cocoon 2.1 includes the Avalon Cornerstone Scheduler. Andreas - To unsubscribe, e-mail: [EMAIL