Re: Cocoon2 error: Could not set up Component for hint:

2001-11-13 Thread David Rosenstrauch
The sitemap usually needs to be in your cocoon root directory, which is generally $TOMCAT_HOME/webapps/cocoon Maybe it's looking for it there and barfing cause it can't find it. DR At 07:53 PM 11/12/01 -0500, you wrote: First, I am running Tomcat 4.01, Cocoon 2 0cr1 on a Windows 98 machine.

Re: Fw: how to shut off database?

2001-11-13 Thread David Rosenstrauch
Some kinda problem with hsqldb. shutdown, delete cocoondb.backup, restart, and everything will be fine. DR At 07:54 PM 11/12/01 -0500, you wrote: First, I am running Tomcat 4.01, Cocoon 2 0cr1 on a Windows 98 machine. I can get the cocoon default pages OK, and my development web page

Re: SV: SAX tree?

2001-11-13 Thread David Rosenstrauch
At 01:31 PM 11/13/01 -0800, you wrote: Oh - Thanks for clearing this out for me :) Now my Java method returns a javax.xml.transform.sax.SAXSource, and I put this in my logicsheet like this: -- xsl:template match=pim:controller xsp:logic SAXSource msg =

Re: SV: What is Cocoon good for???

2001-11-13 Thread David Rosenstrauch
should do :) I will look into Generators right away! /Soren -Oprindelig meddelelse- Fra: David Rosenstrauch [mailto:[EMAIL PROTECTED]] Sendt: 13. november 2001 06:40 Til: [EMAIL PROTECTED] Emne: Re: What is Cocoon good for??? At 03:33 PM 11/13/01 -0800, you wrote: Ok I'm a bit frustrated

Re: SV: SV: SAX tree?

2001-11-13 Thread David Rosenstrauch
At 04:12 PM 11/13/01 -0800, you wrote: 2) Pass in a DOM object you've already created some other way. This way you don't need to invoke the parser. One suggestion they give for doing this is to create a XMLFragment, which can be converted to both DOM and SAX easily. But how? I tried to

Re: Generators.. was: Re: SV: What is Cocoon good for???

2001-11-13 Thread David Rosenstrauch
I don't know if that's the official right way to do it. It was just MHO that the most appropriate place to feed in XML was via a generator. Maybe some other people (including some of the Cocoon developers) can shed some additional light on this. DR At 07:01 PM 11/13/01 +0100, you wrote:

RE: Generators.. was: Re: SV: What is Cocoon good for???

2001-11-13 Thread David Rosenstrauch
At 11:36 AM 11/13/01 -0800, you wrote: I think I need some clarity here. Don't XSP pages compile into generators? What can be done from a hand coded Generator that can't be done (dynamically) from XSP? I have been thinking about hand code generaters as 'special case' generators that don't

Re: Cocoon2:XSP-Excel?

2001-11-12 Thread David Rosenstrauch
One possibility: you can output the result as .csv (comma delimited) format. Excel can read that. Just output the result as text, with an extension of .csv, and when you write the result, put commas between the columns. DR At 12:06 PM 11/12/01 +0100, you wrote: Hi, people! Does anydody

Re: XSP-TEX-PDF

2001-11-12 Thread David Rosenstrauch
)XSP + XSL to a TEX-Document, then 2)TEX-Document to PDF file? Regards, Viktor -Ursprungliche Nachricht- Von: David Rosenstrauch [mailto:[EMAIL PROTECTED]] Gesendet: Montag, 12. November 2001 15:20 An: [EMAIL PROTECTED] Betreff: Re: Cocoon2:XSP-Excel? One possibility: you can output

Re: [C1] Installation woes [rant AND request] - PLEASE help!

2001-11-09 Thread David Rosenstrauch
Dunno if this makes a difference, but I have mysql_comp.jar located in $TOMCAT_HOME/webapps/cocoon/web-inf/lib Another thought: try each configuration using mysql_uncomp.jar. Perhaps one of the OS's (or one of the JDK's) is having a problem reading a compressed jar. HTH. DR At 09:44 AM

Re: [C1] Installation woes [rant AND request] - PLEASE help!

2001-11-09 Thread David Rosenstrauch
Hi Derek. I think you might have overlooked the other suggestion in my msg: I have mysql_comp.jar located in $TOMCAT_HOME/webapps/cocoon/web-inf/lib, not $TOMCAT_HOME/lib as you do. Maybe makes a difference, maybe not. Just thought I'd point it out though. DR At 01:29 PM 11/9/01 +0200,

RE: Accessing xspCurrentNode from xsp

2001-11-09 Thread David Rosenstrauch
it now. -Mitch -Original Message- From: David Rosenstrauch [mailto:[EMAIL PROTECTED]] Sent: Friday, November 09, 2001 11:22 AM To: [EMAIL PROTECTED] Subject: Re: Accessing xspCurrentNode from xsp Maybe it's where you're referencing the document variable. You might only be able to reference

Re: need help for cocoon

2001-11-09 Thread David Rosenstrauch
Zala, I'll attach a message I wrote not too long ago that dealt with this. This really should go into an FAQ somewhere. (Or actually, someone should report this as a bug to the dev group and get the batch file fixed). === Yeah, the process is way broken. IIRC, these were some of the issues

RE: Accessing xspCurrentNode from xsp

2001-11-09 Thread David Rosenstrauch
into my generated XML document. Using the old method, I simply add my doc fragment to the XSP DOM. How do I do this with Cocoon? ...any suggestions? -Mitch -Original Message- From: David Rosenstrauch [mailto:[EMAIL PROTECTED]] Sent: Friday, November 09, 2001 1:02 PM To: [EMAIL PROTECTED

RE: SQLException - please help

2001-11-08 Thread David Rosenstrauch
shutdown, delete cocoondb.backup, restart, and everything will be fine. At 09:43 AM 11/8/01 +0100, you wrote: I get the same error (with the same configuration, except I also tried with Cocoon-2.0rc2, and it is still the same). Has anyone found out yet what it is? thanx, memo

Re: Newbie XSP question - why dosn't this work?

2001-11-03 Thread David Rosenstrauch
I think either of these will work: xsp:logic![CDATA[ String msg = ContactBO.getContacts(xsl:value-of select=pim:nummer/); ]]/xsp:logic or xsp:logic String msg = ContactBO.getContacts(lt;xsl:value-of select=pim:nummer/gt;); /xsp:logic If not, I'll try to come up with

Re: Problems installing Cocoon2 = Win98 machine

2001-11-03 Thread David Rosenstrauch
Yeah, the process is way broken. IIRC, these were some of the issues I dealt with: * had to launch the build process from a DOS window that had environment memory set to 4096K (as you already noted) * some of the batch files were written on UNIX, and therefore use line-feeds as line

Testing under cocoon

2001-11-02 Thread David Rosenstrauch
If this is available in an FAQ somewhere, please feel free to point me there, but I couldn't find anything. Is there any way for me to test more efficiently under cocoon? Currently my process is: * run my build file to compile and deploy everything * start tomcat * test by pointing browser

Re: Testing under cocoon

2001-11-02 Thread David Rosenstrauch
Simone and Steve, Thanks for your answers! A great help! DR At 11:06 AM 11/2/01 -0500, you wrote: David Rosenstrauch wrote: If this is available in an FAQ somewhere, please feel free to point me there, but I couldn't find anything. Is there any way for me to test more

Re: generator parameter

2001-11-01 Thread David Rosenstrauch
Hi. Found this (old) message in the archives, but without an answer. Anybody know how I do this? (Access sitemap parameters from within the XSP page.) TIA! DR Torsten Curdt Mon, 7 May 2001 13:45:05 +0200 (CEST) Are generator parameters accessible from within the xsp page?

<    1   2