Re: Cocoon book

2002-07-25 Thread gcasper
Hi, I'm not the author of the book and I don't have a copy at hand, but I will try to anwer to the best of my knowledge and I'm sure Matthew will correct me next week if I say something wrong :-) richard schrieb: Hi does the book says anything about actions? Yes the book explains all details

Cocoon book

2002-07-24 Thread gcasper
Just to let you know, the first Cocoon book is now available for order on New Riders. http://www.newriders.com/books/product.asp?product_id ={C3C05052-BE3B-4E06-A60A-13FB40AF58F6} There is also a sample chapter. Guido -- Open Source Group sunShine - Lighting up e:Business

Re: stuck with sunrise and session, please help...

2002-07-22 Thread gcasper
Hi Babara, I'm afraid Carsten is on vacation this week and my knowledge about this is limited. But I suggest you take out this: sunshine:setxml context=sunRise path=/authentication/data/lang xsl:value-of select=$lang/ /sunshine:setxml AFAIU sunRise is a reserved context. It is set

Running the Slide samples with JDBC?

2002-07-15 Thread gcasper
Hi, while trying the Slide samples of 2.1-dev CVS on Win2K , I can't get it running with JDBC store. It looks like Slide doesn't pick up the values configured in samples/slide/slide.xconf and the Slide nodestore ist always in memory and contentstore is always on filesystem. Am I missing

Re: sunrise authentication with a java class

2002-05-31 Thread gcasper
sunrise authenticates against a pipeline. Within that pipeline you can do whatever you want (ie. use your own actions, transformers, etc.) as long as the pipeline delivers the required XML as described at the end of this tutorial:

Re: SunRise authefication

2002-05-31 Thread gcasper
It is included in the latest Cocoon distribution (2.0.2). Guido -- Open Source Group sunShine - Lighting up e:Business = Guido Casper, SN AG, Klingenderstrasse 5, D-33100 Paderborn Tel:+49-5251-1581-87  [EMAIL

Re: SunRise authefication

2002-05-31 Thread gcasper
yuryx schrieb: Hi Guido! where in src? I was not found it in C 2.0.2 sources :( It's in the scratchpad area. Guido - Please check that your question has not already been answered in the FAQ before posting.

RE: development tools that support Cocoon 2

2002-05-31 Thread gcasper
We have just released the first preview version of our Cocoon IDE sunBow. sunBow is a plugin (collection) for Eclipse - designed to help anyone working with Cocoon. The first preview version contains a schema based sitemap editor, xslt tracing tools, deployment help, an xml file validator and

Re: what's up with the Cocoon book? were reviewer found?

2002-05-31 Thread gcasper
Matthew is away until Monday. He received over 30 emails and has passd them all (!!) on to the publisher. They will be selecting and contacting the reviewers directly (I think he wrote that already). Guido -- Open Source Group sunShine - Lighting up e:Business

Re: cocoon and xindice

2002-03-13 Thread gcasper
Hi Axel, have a look in the scratchpad at the sunrise authentication components. For getting started how to use them look at: http://www.need-a-cake.com/stories/2002/02/28/usingTheSunriseComponents.html All you have to do to use the sample with Xindice is to replace foo-user.xml in the

Re: Incoming pipeline?

2002-02-04 Thread gcasper
Have a look at the XMLDBTransformer in the scratchpad area. http://cvs.apache.org/viewcvs.cgi/xml-cocoon2/src/scratchpad/src/org/apache/cocoon/transformation/XMLDBTransformer.java HTH Guido -- Open Source Group sunShine - Lighting up e:Business

Re: Realms Challenge

2002-01-17 Thread gcasper
phil schrieb: Hi Vadim, I've spent the morning reading through the servlet specification and only found the well known Request class that will give me the user (getRemoteUser()) after they have already been authenticated. Can't find anything about actually getting the browser to present

Re: How to integrate xindice with cocoon

2002-01-07 Thread gcasper
If you have the cvs version of cocoon you should use the XMLDB pseudo protocol (The generators are kind of deprecated). I run it with dbXML 1.0b4. You need to copy dbXML.jar, juggernaut-1.0.jar and openorb-1.2.0.jar into WEB-INF/lib. Enter the following into cocoon.xconf: source-handler

Re: How to integrate xindice with cocoon

2002-01-07 Thread gcasper
gcasper schrieb: If you have the cvs version of cocoon you should use the XMLDB pseudo protocol (The generators are kind of deprecated). I run it with dbXML 1.0b4. You need to copy dbXML.jar, juggernaut-1.0.jar and openorb-1.2.0.jar into WEB-INF/lib. Enter the following into cocoon.xconf

Antwort: caching

2001-11-30 Thread gcasper
Did you implement getLastModified() ? Guido jr schrieb: Hi all, I have a system where i have a servlet generating xml from some ejb's I use cocoon to apply xsl to the xml and produce the various outputs. I have tried two methods, and both works fine, but i need to cache the result ans

Re: Cocoon and other servlets

2001-11-26 Thread gcasper
If your servlet inherits from HttpServlet you have to override getLastModified() to enable conditional GETs and caching. HTH Guido jr schrieb: I have done this by have a file handler request a url which is a servlet generating xml. However i cant seem to get this cached, and so i continue

Antwort: Cocoon's pooled db connection and/or ESQL logicsheet

2001-10-01 Thread gcasper
You don't need CallableStatements to execute stored procedures. Callable Statement is just Java's way of supporting return values and output parameters. If all the SP gives you is a result set you could use Statement or PreparedStatement as well. So just try: execute SP param1, param2 in you