DatabaseAddAction

2002-05-20 Thread Kenny Chow
I've read the tutorial but didn't see any "insert" statement in the descriptor nor in the sitemap. The descriptor file only maps parameter names to table columns. So I am wondering how the insert was done. Would someone point me to some related resources or give a hint to mastering this action?

Re: esql in sitemap

2002-05-20 Thread Nicola Ken Barozzi
From: "Zack Angelo" <[EMAIL PROTECTED]> > Is it possible (and/or practical) to use esql to dynamically generate > parts of my sitemap? Possible, but definately a big time hack that is generally impractical. Sitemaps are meant to change very little, compared to other content; on this assumption

RE: Aggregates

2002-05-20 Thread Conal Tuohy
you need a part which refers to another aggregate using the "cocoon:" pseudo-protocol. > -Original Message- > From: andexor [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, 21 May 2002 14:51 > To: [EMAIL PROTECTED] > Subject: Aggregates > > > Is it possible to have an aggregate where one of th

Re: Jboss and Tomcat

2002-05-20 Thread Lajos Moczar
Jorge - No question is stupid on this list. After all, we've all been there. JBoss is an EJB container that optionally contains an embedded version of Tomcat. Tomcat by itself is simply a servlet container. Cocoon can run under JBoss/Tomcat or just Tomcat. If you are just starting out with Co

Jboss and Tomcat

2002-05-20 Thread Jorge Bello
May be this is a stupid question. Sorry any way, I'm a beginner. Could someone shed some light about the differences between Jboss and Tomcat. What is every one for ? TIA, Jorge - Please check that your question has not alread

Aggregates

2002-05-20 Thread andexor
Is it possible to have an aggregate where one of the parts points to another aggregate? I have tried it, but it doesn't work and I've searched the docs at xml.apache.org. Ed __ Do You Yahoo!? LAUNCH - Your Yahoo! Music Experience http://launch.y

esql in sitemap

2002-05-20 Thread Zack Angelo
Is it possible (and/or practical) to use esql to dynamically generate parts of my sitemap? TIA, Zack - Please check that your question has not already been answered in the FAQ before posting.

RE: cocoon confustion again going insane now -- sorry for being a dumbass but i need help please

2002-05-20 Thread Conal Tuohy
Stephen I notice you have a mis-match between the pattern in your element and the url-prefix in your element. "lnxserv" != "lnxservr" HTH! Con > -Original Message- > From: Stephen Smithstone [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, 21 May 2002 08

not able to work with cocoon

2002-05-20 Thread Madhu latha
Hi, I installed cocoon2.0.2 on my machine. When i test it with http://localhost:8080/cocoon, it is giving the following error: org.apache.cocoon.ProcessingException: Error compiling sitemap: java.lang.NoClassDefFoundError at org.apache.cocoon.sitemap.Handler.run(Handler.java:295)

cocoon confustion again going insane now -- sorry for being a dumbass but i need help please

2002-05-20 Thread Stephen Smithstone
I appericated that , but guess what its not workin :/ so i have enclosed both my projects sitemap.xmap and the cocoon sitemap.xmap i created a src dir under /var/tomcat/webapps/cocoon/lnxserv where i put the projects sitemap.xmap heres the sitemap.xmap for that http://apache.org/cocoon/site

cocoon confusion still

2002-05-20 Thread Stephen Smithstone
I appericated that , but guess what its not workin :/ so i have enclosed both my projects sitemap.xmap and the cocoon sitemap.xmap i created a src dir under /var/tomcat/webapps/cocoon/lnxserv where i put the projects sitemap.xmap heres the sitemap.xmap for that http://apache.org/cocoon/site

Re: Cocoon confusion still :-/

2002-05-20 Thread Stephen Smithstone
I appericated that but guess what its not workin :/ so i have enclosed both my projects sitemap.xmap and the cocoon sitemap.xmap i created a src dir under /home/lnxserv/cocoon_projects/testing where i put the projects sitemap.xmap and added the info into the cocoons sitemap.xmap i running on p

Re: Cocoon confusion still :-/

2002-05-20 Thread Paul Gilligan
Lets not make things complicated :) ... You need your own project directory which can go under the cocooc/mount directory. In that project directory you will need your own sitpmap.xmap file for your work :) ...but I would not recommend that because when you delete the cocoon directory by acci

Cocoon confusion still :-/

2002-05-20 Thread Stephen Smithstone
OK so now i createed a dir called testing/ in my cocoon dir and then in the /cocoon/sitemap.xmap i added and in the testing/sitemap.xmap i added i have static/ in my testing/ and a index.html in the static/ is this correct way to set it up???

How to obtain org.apache.cocoon.environment.Environment?

2002-05-20 Thread Steven Punte
Dear Cocoon User Group: How does one obtain the org.apache.cocoon.environment.Environment? I've trying: public void setup( ) { environment = (Environment)(objectModel.get(Constants.CONTEXT_ENVIRONMENT_CONTEXT)); } As how one obtains session and request, but the above alw

Re: Fwd: SourceWriterTransformer problems

2002-05-20 Thread Stephan Michels
On Mon, 20 May 2002, [iso-8859-1] Jeremy Aston wrote: > I've been racking my brain all weekend over a problem with SourceWriterTransformer >(more likely my use of it actually). On C2.0.2, JDK1.3 everything works fine. I >have now moved to 2.1-dev, JDK1.4 and my JDK1.4 compiled excalibur. >

Re: Using own Store implementation

2002-05-20 Thread Stephan Michels
On Mon, 20 May 2002, Miller, Grant wrote: > Hi, > I am looking at writing my own implementation of the Store interface but > can't quite get my head round how I would then use that class. I don't want > to replace the normal store mechanism, just to add a new one for some custom > info I cache.

Using own Store implementation

2002-05-20 Thread Miller, Grant
Hi, I am looking at writing my own implementation of the Store interface but can't quite get my head round how I would then use that class. I don't want to replace the normal store mechanism, just to add a new one for some custom info I cache. Do I have to make entries in xconf? Anything else? T

Re: Cocoon PDF creation problems

2002-05-20 Thread J.Pietschmann
Spectron International, Inc. wrote: > And yes I'm using disable-output-escaping somewhere. Don't tell me I cant? Exactly. This is a VFAQ and standard l0ser trap. XSLT works on a node tree, not on XML strings. You try to generate tags by using d-o-e. This works if the tree is serialized to a stri

Re: Connection problem to DB2

2002-05-20 Thread Kelly Cole
Thanks to all who helped with this one (thanks especially to Jon for his db2/connect help). I finally got it to work for the "esql" example. What I did was to run the program C:\Program Files\SQLLIB\java12\usejdbc2.bat (this causes db2/connect to use jdbc2 instead of jdbc1). THEN I HAD TO REBOOT.

Fwd: SourceWriterTransformer problems

2002-05-20 Thread Jeremy Aston
No response as yet on the dev list at the mo so here's a xpost to users... Thanks jez   Jeremy Aston <[EMAIL PROTECTED]> wrote: Reply-to: [EMAIL PROTECTED]Date: Mon, 20 May 2002 12:04:47 +0100 (BST)From: Jeremy Aston <[EMAIL PROTECTED]>Reply-to: [EMAIL PROTECTED]Subject: SourceWriterTransformer p

SQL Generators and SQL Transformers

2002-05-20 Thread Hiloliddin Karimov
Hi All, I try retrieve data from DB (load some data from DB) before page show. How I understood, I can it by Generators and Transformers. If there is more, please tell me know ( if possible pls in detail ). 1. I try use the SQL Transformer, retrieve rows from DB and to show their in XML. It like

XSP Expression within XSL:for-each loop

2002-05-20 Thread Sreedhar Chintalapaty
Hi Gurus, I have a piece of code with the following for-each loop: .getAll() The intention is to determine the class name at

Problems with SVG

2002-05-20 Thread Derek Hohls
I am struggling to get Cocoon to generate even a simple SVG image encoded as a .png file inside an HTML page. I am working with a subsite in Cocon 2.0. Here is the subsitemap entry: A testgraph.xml file thus: with a svg-graph-test.xsl stylesheet thus: h

Re: Cocoon PDF creation problems

2002-05-20 Thread Spectron International, Inc.
Yes, generate->serialize_to_xml and xml_file->transform>serialize_to_pdf both work. And yes I'm using disable-output-escaping somewhere. Don't tell me I cant? I need it because I have the following xml : 1 1 1 1 1 1 and I want a table with 3 numbers in each row, there can be from

RE: tomcat/jboss bundle problems

2002-05-20 Thread Morrison, John
Sorry, didn't know. I was just pleased that it works ootb again! :) J. > -Original Message- > From: Nick Airey [mailto:[EMAIL PROTECTED]] > Sent: Monday, 20 May 2002 1:15 pm > To: Cocoon Users > Subject: RE: tomcat/jboss bundle problems > > > Hi John, > > unfortunately I am at prese

RE: tomcat/jboss bundle problems

2002-05-20 Thread Nick Airey
Hi John, unfortunately I am at present limited to versions of cocoon which are bundled with JBoss - 401 and 403. They are different from the standalone tomcat versions in that they share a jvm with jboss - hence the whole point of the bundle. Additionally jboss manages the lifecycle of the depl

Re: sitemap modifications go unnoticed

2002-05-20 Thread KOZLOV Roman
Hello Hans, To ensure the sitemape has been recompiled remove the folder "D:\jakarta\jakarta-tomcat-4.0.4-b3\work\Standalone\localhost\cocoon-exp1". Indeed, the modified sitemap.xmap will not be used if its file modification time is earlier then for the previous sitemap.xmap (it could be in Wind

Re: sitemap modifications go unnoticed

2002-05-20 Thread Konstantin Piroumian
Try the interpreted sitemap processor. Look for 'treeprocessor' in cocoon.xconf . There were some bugs with reloading in compiled version.   Konstantin - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 20, 2002 3:51 PM Subject:

RE: tomcat/jboss bundle problems

2002-05-20 Thread Morrison, John
Cocoon works well with the latest beta (4.0.4b3) with no need to move any jar's around :) J. > -Original Message- > From: Nick Airey [mailto:[EMAIL PROTECTED]] > Sent: Monday, 20 May 2002 12:34 pm > To: Cocoon Users > Subject: tomcat/jboss bundle problems > > > Hello everyone, > > I

sitemap modifications go unnoticed

2002-05-20 Thread HansRupp
Hi! I' am a complete newbie and trying to work thru the IBM  developer works tutorial Introduction to Cocoon2. My problem is that after I edit the sitemap.xmap file the modifications are not noticed. The original error:

tomcat/jboss bundle problems

2002-05-20 Thread Nick Airey
Hello everyone, I am having trouble integrating Apache into my jboss244/tomcat401 bundle running my cocoon2.0.2 based application. I understand apache and mod_jk configuration from the apache side fairly well. Here are my woes: Jboss244/tomcat401 can successfully be run with Xerces, as mention

Re: ResourceExistsAction problem

2002-05-20 Thread KOZLOV Roman
Hi Ivan, Use "{../1}", because you need the match's level sitemap and not action's one. Roman Ivan Luzyanin wrote: > Hello all! > > I've got problem using ResourceExistsAction with context path > > $COCOON/site/sitemap.xmap > > > > > > > > > > Enviroment: > RH 7.2 > Co

Re: ResourceExistsAction problem

2002-05-20 Thread Ivan Luzyanin
On ðÎÄ, 2002-05-20 at 07:34, Konstantin Piroumian wrote: > From: "Ivan Luzyanin" <[EMAIL PROTECTED]> > > > Hello all! > > > > I've got problem using ResourceExistsAction with context path > > > > $COCOON/site/sitemap.xmap > > > > > > > > > > > > > > > > > > > Try {../1}

Re: ResourceExistsAction problem

2002-05-20 Thread Konstantin Piroumian
From: "Ivan Luzyanin" <[EMAIL PROTECTED]> > Hello all! > > I've got problem using ResourceExistsAction with context path > > $COCOON/site/sitemap.xmap > > > > > > > > > > Enviroment: > RH 7.2 > Cocoon 2.0.1 > JDK 1.3.1_02b (Blackdown) > > > > > ---

ResourceExistsAction problem

2002-05-20 Thread Ivan Luzyanin
Hello all! I've got problem using ResourceExistsAction with context path $COCOON/site/sitemap.xmap http://xml.apache.org/cocoon/faqs.html> To unsubscribe, e-mail: <[EMAIL PROTECTED]> For additional commands, e-mail: <[EMAIL PROTECTED]>

RE: Compressing SVG: sorry - forgot the URL

2002-05-20 Thread Morrison, John
> From: Alex McLintock [mailto:[EMAIL PROTECTED]] > > At 10:47 17/05/2002, Kirwan, K. wrote: > >Dear All, > > > >I'm working on version1 of an online traffic-information site at: > >http://localhost:8080/cocoon/traffic-xml/home > > > >The SVGmaps produced are currently quite large - so download