RE: help reg...sqltranformer

2001-06-27 Thread Beauprez Sven
Hi, check the namespace in sql-page.xml, it should be http://apache.org/cocoon/SQL/2.0; and check if following line appears in SQLTransformer.java: public static final String my_uri = http://apache.org/cocoon/SQL/2.0;; if not, you probably don't have the latest version (inclusive the examples)

Re: AW: PDF in IE revisited

2001-06-27 Thread Ulrich Mayring
Uli Mayring wrote: Actually there's a page at MSDN (don't have the URL handy right now) where it is exactly described what IE does. I've described a work-around on this list a couple of weeks ago, check the archives. Here it is:

[C2] xinclude : file not found

2001-06-27 Thread Orgalist
here's my problem : I'm trying to include a file plan.xml in index.xml using xinclude (they are in the same directory) and I keep getting : org.apache.cocoon.ProcessingException: Failed to execute pipeline.:java.io.FileNotFoundException:

AW: [C2] xinclude : file not found

2001-06-27 Thread Jörn Heid
I think it's the bug I noticed before. I think you have to patch the XInclude-Transformer. Please look in the archive for it as I don't have the mail anymore. If you can't find I can send you my working XIncludeTransformer (.java or .class) this evening. -Ursprüngliche Nachricht- Von:

AW: [C2] xinclude : file not found

2001-06-27 Thread Carsten Ziegeler
Hi Jörn, could you please post a diff of the XIncludeTransformer to the [EMAIL PROTECTED] list so that we can incorporate it into the version. Carsten Open Source GroupsunShine - b:Integrated Carsten

sitemap error

2001-06-27 Thread Marco Spinetti
Hi all, when I try to access cocoon2 homepage I receive this error from cocoon: type internal-server-error message The sitemap handler's sitemap is not available. description org.apache.cocoon.ProcessingException: The sitemap handler's sitemap is not available. sender

Content Management System with Cocoon ?

2001-06-27 Thread Ling Kok Choon
Hi, I am developing a web application ( Content Management System ) with Cocoon 2 beta version, after i install the Cocoon on my Server ( IIS 5.0 , Windows 2000 , Tomcat 3.2.2 ), and try to design the system, i meet some question : 1) is it posible to use Cocoon as a backup process. (

work around for xsl:text disable-output-escaping=yes?

2001-06-27 Thread Robert McKinnon
Hello, I am trying to dynamically build table rows from an xml file. The solution that I came across indicated that I would need to use xsl:text disable-output-escaping=yes. When I tried to apply this solution I discovered that Cocoon does not support disable-output-escaping. What would be an

Re: Creating XML files using normal Java Servlets?

2001-06-27 Thread java guru
1. Unfortunately, i am not sure about this...but i believe it can be done. 2. I have similar requirement, the way i am gonna deal with that is thru patterns. C2 offers different patterns serve from same resources(xml file or xsp)..for example, i have put all my xsp in doc folder..then i have

reg..fp taglib

2001-06-27 Thread java guru
HI., I am working with c2 and I have requirement to read xml file from disk, modify nodes from db and write it back to the diskThis is part of a web app. I see people suggesting fp taglib..but also complaining about it... Anyone please advice whats best and also point some examples...

Re: cocoon.log

2001-06-27 Thread java guru
***This is not SERIOUS error: By default, c2 uses hsql database. This db can be run in various modes (server, in-memory, file, stand-alone etc ..refer to hsql db docs). C2 try to use file mode, which means c2 would simply create db connection pool pointing to hsql db files. And the file

Re: work around for xsl:text disable-output-escaping=yes?

2001-06-27 Thread Gustavo Mejia
Hi, I think you can use Xalan extention, (Redirect) somethink like : xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:lxslt="http://xml.apache.org/xslt" xmlns:redirect="org.apache.xalan.xslt.extensions.Redirect" extension-element-prefixes="redirect"> ...

C2: XSLT malfunction

2001-06-27 Thread Eduardo Yánez
Hi all! Im creating a simple menu, the xml code is: ?xml version=1.0 encoding=ISO-8859-1? topFrame id=top topMenu menuItem id=m1_services_ capt=services href=/info/services.xml descDescription of the Guanoco.com services./desc /menuItem

Re: reg..fp taglib

2001-06-27 Thread Jeremy Quinn
At 2:17 PM +0100 27/6/01, java guru wrote: I see people suggesting fp taglib..but also complaining about it... The FP TagLib is not available for Cocoon 2 yet. regards Jeremy -- ___ Jeremy Quinn

Displaying Images ?

2001-06-27 Thread Gustavo Mejia
Hello !! Yes, I am here again .. I have a question, I need to display an image stored in my Oracle Database, I'm using esql, to get the information, but I I don't know how to get the pic's. I would appreciate all your Ideas and help ! Thanks in advance. Gustavo INFOTEC

RE: Cocoon as a web reporting engine

2001-06-27 Thread Tran, Minh-Quan B
2) Our front end is all .jsp pages. How do we set things up so that our servlet engine first processes the .jsp page, then feeds the resulting file to Cocoon? We need to use Java calls from the JSP pages to pull the data that will go on our reports. Assuming we'd use an XML template in

RE: translate file.xml?args into html using java

2001-06-27 Thread Tran, Minh-Quan B
I got cocoon to translate my xml files into html using the commandline interface to cocoon. But I didn't get it to translate xml files which expect arguments as file.xml?index=3. Cocoon always produces the same output as if there were no arguments. I would like to write a small java tool

C2: initialization error

2001-06-27 Thread Martin Mauri
Hi Cocooners, Trying to startup cocoon 2 I get the following exception. I can't cop anymore with this error, any suggestion? It says it has to do something with the sitemap...

Re: Cocoon as a web reporting engine

2001-06-27 Thread Sergio Carvalho
On Wed, 27 Jun 2001 10:53:37 -0700 Tran, Minh-Quan B [EMAIL PROTECTED] wrote: How do you configure to feed the result onto a cocoon pipeline? As I understand, the way cocoon get to serve a request is through a certain uri pattern, let say, http://localhost/cocoon/something.xml... From a

Re: C2: initialization error

2001-06-27 Thread Martin Mauri
Hi Giacomo. As the subject said, I'm using C2 over Tomcat 3.2.1 and Windoes ME. This error happens when I point to http://localhost:8080/cocoon/ and though the servlet engine is working good, I get the error mentioned before. Any idea? regards. Martin There is a cocoon.log file somewhere

Re: C2: initialization error

2001-06-27 Thread java guru
Hi Martin., As you might already know., the way c2 works is it tries to compile the sitemap at the start-up..for some reasons, the sitemap cannot get compiled and we would encounter such errors. The description of error on screen is so generalized 'coz for cocoon, the problem is sitemap didnt

Help!!! XML to PostScript

2001-06-27 Thread Ulises Fletes
Hi all.. I need a xml input and postscript output, someone would say how do this??.. thanks.. __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://personal.mail.yahoo.com/

C2: comment() broken in C2b1?

2001-06-27 Thread Wes Morgan
I am trying to output a comment from my source XML file as plain text (it was working in Cocoon 1). However, Cocoon 2 does not seem to recognize the comment() XPath expression. I have this in my stylesheet: xsl:value-of select=//style/comment()/ but nothing gets put into the resulting

Re: work around for xsl:text disable-output-escaping=yes?

2001-06-27 Thread Perry Molendijk
Try this: xsl:for-each select="parent/child[position() mod 2 = 0]"tr tdxsl:value-of select="preceding-sibling::child/name"//td tdxsl:value-of select="name"//td/tr/xsl:for-each and as you can seeyou canmake this work for any number of columns: xsl:for-each select="parent/child[position()