Re: Loosing Faith In Open Source

2002-05-09 Thread Nicola Ken Barozzi
Internal server error[FYI] An error like " ComponentSelector could not access the Component for hint: XXX" usually means that you haven't cleaned the work dir between installations. As for faith... well, that's another story ;-) -- Nicola Ken Barozzi [EMAIL PROTECTED]

Re: Help! Problems installing a user component and role into Cocoon2

2002-05-09 Thread Gerhard Froehlich
Stuart Roebuck wrote: > I'm trying to install a new 'user' component into Cocoon 2 but I'm > hitting a problem which I can't seem to get a handle on: > > Basically, I'm getting a the following stack dump: > >> ERROR (2002-05-09) 19:03.08:176 [sitemap.generator.database- >> access](/about_us

Heads-Up: Jax2002 in Frankfurt, Germany

2002-05-09 Thread Matthew Langham
Hi, Carsten and I will be at Jax2002 in Frankfurt next week and hope to meet some of you there for some Cocoon related "chat" and perhaps a few beers in the evening. Hope to see you there. Matthew -- Open Source Group Cocoon { Consulting, Training, Projects }

Re: Try this Re: Can't connect to MySQL with Cocoon 2

2002-05-09 Thread Arda Balci
Hi Roger, I made a clean install and then did not be able to connect to mysql server. These are the related lines. What can be the reason of the error? This is the core.log error: WARN(2002-05-10) 07:24.46:708 [core.datasources.mysql_pool](/cocoon/kolon.html) HttpProcessor[8080][3]/LogKit

Re: Loosing Faith In Open Source

2002-05-09 Thread Emre Tezel
Title: Internal server error Some miracle happened and I got it working under Tomcat 4.0.4b2, Sun JDK 1.3.1. I have no idea how it worked. Anyway, my faith to open source is being restored again. Emre Tezel wrote: [EMAIL PROTECTED]">I have been tryin to get cocoon up and running for the last 3

Loosing Faith In Open Source

2002-05-09 Thread Emre Tezel
I have been tryin to get cocoon up and running for the last 3 days and still no luck. So far I have tried all Sun JDK 1.3.x, Sun SDK 1.4.x, IBM SDK 1.3.x, Tomcat 4.0.3, Tomcat 4.04b2, Tomcat 3.3x permutations and each time I get an error message, whenever I try to go to cocoons welcome page. S

Re: problems creating a Lucene search index C2 2.1-dev

2002-05-09 Thread David Crossley
> leo leonid wrote: > > does anybody know what prevents the current cocoon v2.1-dev to build the > index of the docs (search sample)? > /Leo I recently described the problem in Bugzilla. Hopefully someone can now find the solution ... Lucene index/search broken, wrong contentType each doc so i

RE: Dynamic sql in xsp

2002-05-09 Thread Vadim Gritsenko
> From: Stephen Ng [mailto:[EMAIL PROTECTED]] > > Vadim, > > > > > Here I mean do not use include to include your XSLT generated > > SQL, but access cocoon programmatically and get this SQL into > > String. Then, you will have static XSP source. > > Sounds good to me but I have absolutely no id

RE: Dynamic sql in xsp

2002-05-09 Thread Stephen Ng
> Maybe the SQL-Transformer can help you. > > Reinhard No doubt I should move to this eventually (I was just getting to like esql!)--as I understand it this would clearly eliminate the java compilation step since there is no xsp involved. Nevertheless I think short term I should be able to get

Re: Custom Database Action

2002-05-09 Thread Stuart Roebuck
If you're queries are going to result in any quantity of information then you are probably better off creating a generator rather than an action. Also, I don't think there should be any compromise to the separation of logic, content and style in using XSP to create a generator. Using XSP sav

RE: Custom Database Action

2002-05-09 Thread Artur Bialecki
What exactly is the problem. The action documentation has enough stuff the get started. Look in the source code cocoon-2.0.2/src/java/org/apache/cocoon/acting for examples of actions. Remember to define your actions in the sitemap before you use them. Make sure that the classloader that loaded coc

RE: Dynamic sql in xsp

2002-05-09 Thread Reinhard Potz
Stephen, Maybe the SQL-Transformer can help you. Reinhard > -Original Message- > From: Stephen Ng [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 09, 2002 8:55 PM > To: Vadim Gritsenko; [EMAIL PROTECTED] > Subject: RE: Dynamic sql in xsp > > > > > > Why not generate SQL str

Custom Database Action

2002-05-09 Thread Matthew Hailstone
I'm a newbie. I've created my own version (tweaked it a little) of the bonebreaker example found on the cocooncenter website : http://www.cocooncenter.de/cc/documents/resources/navigation/index.html I am still having a hard time grasping how to create actions in cocoon. I'm trying to connect t

Help! Problems installing a user component and role into Cocoon 2

2002-05-09 Thread Stuart Roebuck
I'm trying to install a new 'user' component into Cocoon 2 but I'm hitting a problem which I can't seem to get a handle on: Basically, I'm getting a the following stack dump: > ERROR (2002-05-09) 19:03.08:176 [sitemap.generator.database- > access](/about_us_index.html) > HttpProcessor[8080

RE: Dynamic sql in xsp

2002-05-09 Thread Stephen Ng
Vadim, > > Here I mean do not use include to include your XSLT generated > SQL, but access cocoon programmatically and get this SQL into > String. Then, you will have static XSP source. Sounds good to me but I have absolutely no idea how to do this :-(. Can you give me a pointer? > Have you

RE: Dynamic sql in xsp

2002-05-09 Thread Vadim Gritsenko
> From: Stephen Ng [mailto:[EMAIL PROTECTED]] > > > > > Why not generate SQL string *in* this XSP? That's would give > > the best performance. > > > > Or, other way is to obtain this SQL string into String > > programmatically, without using include. Here I mean do not use include to include you

RE: Dynamic sql in xsp

2002-05-09 Thread Stephen Ng
> > Why not generate SQL string *in* this XSP? That's would give > the best performance. > > Or, other way is to obtain this SQL string into String > programmatically, without using include. > Okay I understand the suggestion but it doesn't work that well in my case. The reason is that the

RE: Dynamic sql in xsp

2002-05-09 Thread Vadim Gritsenko
> From: Stephen Ng [mailto:[EMAIL PROTECTED]] > > I need some advice. > > I have an xsp which is using esql. The query in the esql is dynamically > generated (based upon the request string). I use cinclude to inject the > dynamic sql into the esql element. Something like this: > > > >

Re: Try this Re: Can't connect to MySQL with Cocoon 2

2002-05-09 Thread Roger I Martin PhD
Hi, I am a fellow applier of Cocoon and MySQL. If you haven't solved it yet perhaps you may want to attach you mysql connection files, excerpts from the tomcat/logs.localhost*.txt for the error, versions, etc. I can look at it tomorrow morning. I had originally modified Avalon Pool connection(

Dynamic sql in xsp

2002-05-09 Thread Stephen Ng
I need some advice. I have an xsp which is using esql. The query in the esql is dynamically generated (based upon the request string). I use cinclude to inject the dynamic sql into the esql element. Something like this: So, I have an xsp that is dynamic. This work just peachy.

Re: Tutorial for xml to xls..

2002-05-09 Thread Niket Anand
Title: RE: Tutorial XSL.. Hi All !!!    I would like to know where I can find tutorials which tell about the conversion of xml to MS-Excel or .xls sheet  Thanks...