AW: Cocoon and WEBSPHERE 3.5 Fixpack 3.4.2

2001-11-21 Thread Michael Zehrer
Title: RE: Cocoon and WEBSPHERE 3.5 Fixpack 3.4.2 Hi Gilles, there is a problem with all map:redirect-to/ statements. I don't know why, but for the welcome example you have to change the mapping from map:redirect-to uri="welcome"/ to map:redirect-to uri="cocoon/welcome"/, then it works.

RE: Cocoon and WEBSPHERE 3.5 Fixpack 3.4.2

2001-11-21 Thread Ducret, Gilles (CH)
Title: RE: Cocoon and WEBSPHERE 3.5 Fixpack 3.4.2 Many thanks, it now works. Is it possible to add this last comment to the install instructions? Gilles -Original Message-From: Michael Zehrer [mailto:[EMAIL PROTECTED]]Sent: mercredi, 21. novembre 2001 09:38To: [EMAIL

Re: XInclude

2001-11-21 Thread Stephan Michels
On Wed, 21 Nov 2001, Bernhard Huber wrote: Try using map:transform type=log/ after xinclude, this will show you the xml-content after xinclude transformation, and before xinclude Perhaps the xslt processing eats up the include element? Use copyover.xsl to copy elements see in the

Ant: Re: XInclude

2001-11-21 Thread Bernhard Huber
Check logkit.xconf enable DEBUG, Check web.xml enable DEBUG Huber Bernhard, email: [EMAIL PROTECTED], homepage: members.a1.net/berni_huber/index.html - Ursprüngliche Nachricht - Von: Stephan Michels [EMAIL PROTECTED] Datum: Mittwoch, November 21, 2001 11:32 Betreff: Re: XInclude

Re: XInclude

2001-11-21 Thread Stephan Michels
On Wed, 21 Nov 2001, Bernhard Huber wrote: Check logkit.xconf enable DEBUG, Check web.xml enable DEBUG Thanx, I found following entry in cocoon.log.1 DEBUG (2001-11-21) 12:03.41:729 [cocoon ] (/ch/1/pc/xmltest/vscml/vsc10-example2) HttpProcessor[8080][1]/XIncludeTransformer:

Re: OT: Transforming EJB data to XML for Cocoon

2001-11-21 Thread Werner Guttmann
Josza, youmight want to have a look at the XMLFragment interface (available both for Cocoon 1.8 and 2.0) which facilitates the creation of SAX events (in the case of Cocoon 2.0) for your EJBs. One idea might be to have the entity bean (in case you are using any) or the value objects (if you are

log messages ?

2001-11-21 Thread Andreas Gruenhagen
Hello cocoon experts, I trying to use cocoon for some time now. If something does not work I sometimes get this nice formated error-page but most of the times I get an empty-webpage. the log-file in $TOMCAT_HOME/log does not contain anything. Where can I find some sensefull error-messages thanks

RE: log messages ?

2001-11-21 Thread Karl Øie
try /webapps/cocoon/WEB-INF/logs/ you can also adjust the log setting in the file /webapps/cocoon/WEB-INF/logkit.xconf mvh karl øie -Original Message- From: Andreas Gruenhagen [mailto:[EMAIL PROTECTED]] Sent: 21. november 2001 15:12 To: [EMAIL PROTECTED] Subject: log messages ?

Re: OT: Transforming EJB data to XML for Cocoon

2001-11-21 Thread Jozsa Kristof
Dear Werner, I do use entity beans to store my data. Now, if I get it right, you suggest writing a Cocoon Transformer, which calls my entity beans' toSAX() methods by hand, while implementing the XMLFragment or XMLizable interface in the entity beans? (I'm using Cocoon 2.0rc2). So far I

Cocoon and other servlets

2001-11-21 Thread Ravi . Narine
I know that in cocoon 1 there was a way to pass a XML message from servlet to cocoon. They also stated that this was not the best way. I am wondering how to do this using cocoon 2? Thanks Ravi Narine Senior Analyst Banking Investments Technology and Development CGI Group Inc. 416-304-7555

Re: Cocoon and other servlets

2001-11-21 Thread Jesper Rasmussen
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 with a question: Is is possible to cache the xml generated from the servlet in this case? cheers Jesper On Wed, 21 Nov 2001 [EMAIL PROTECTED]

Re: [Fwd: freshmeat project listing for Cocoon] (fwd)

2001-11-21 Thread giacomo
On Wed, 21 Nov 2001, Davanum Srinivas wrote: Team, Am getting rid of cocoon2 entry, so please go to http://freshmeat.net/projects/cocoon/ and vote for it. Already done :) Giacomo - Please check that your question

Re: Cocoon and other servlets

2001-11-21 Thread Ravi . Narine
The way we do this is like this. 1. I created a servlet that receives a request and created a XML message 2. I send this message to our EJB system and uses the incoming XML message to query the database and it returns the result set in XML format 3. I then in turn send the resulting XML

XSLT/Xalan format-number() issue:

2001-11-21 Thread Mark S. Kent
Excuse this for being a little off topic, but I've asked this on an XSLT site with no reply (yet) as was hoping someone of Xalan knowledge could answer it quicker from here. If not, how do I look at the format-number() source of Xalan to see what it's doing? Is it in the xalan-2.2.0-dev.jar

POI project needs help - serializing XML as Excel XLS

2001-11-21 Thread Andrew C. Oliver
Hi everyone, Excuse me if this is a bit off topic, the website left me to believe not. I'm working along with some other folks on a Cocoon 2 Serializer for serializing XML to Excel XLS files. Once the project is further along we hope to donate it to cocoon. We've gotten quite a bit done

RE: POI project needs help - serializing XML as Excel XLS

2001-11-21 Thread Alex Kachanov
Serialize XML as usual HTML with Excel mime-header the HTML file will be just a simle html table with hidden formatting options. When open in browser, the browser will detect Excel mime-type and launch Excel. Excel will take the table and apply all those forumals, formatting etc itself. You do