Re: best browsers for viewing xml?

2003-08-18 Thread Upayavira
Jay Freeman (saurik) wrote: One such XSL/T comes with Cocoon: xml2html.xslt . I believe it even supports +/- expansion, although I remember there being something wrong with it... like it didn't support namespaces correctly or something and just stripped them from the output. I'm not quite sure,

Need Help : Excel Report with Cocoon Problem (with Oracle)

2003-08-18 Thread Heru Hariyanto
does anybody here ever try cocoon excel report written by steve puente? you can reach the page at http://www.xml.com/pub/a/2003/01/22/cocoon-excel.html i have read the tutorial article tried the excel reports with apache cocoon and POI. when using mysql database, everythings done properly. very

Re: new Request for internal map:redirect-to's?

2003-08-18 Thread Jay Freeman \(saurik\)
Sonny: I was under the impression that not only does a new Request object get created, but the entire process does. AFAIK redirect-to sends a Location: header to the browser and then it requests the new URL. *Checks this.* Yeah: HTTP/1.1 302 Moved Temporarily Date: Mon, 18 Aug 2003 06:52:28 GMT

Re: best browsers for viewing xml?

2003-08-18 Thread Erik Bruchez
Mozilla's XML display is implemented with an XSLT stylesheet as well. You should be able to find it in the Mozilla Bonsai online at www.mozilla.org. -Erik Upayavira wrote: Jay Freeman (saurik) wrote: One such XSL/T comes with Cocoon: xml2html.xslt . I believe it even supports +/- expansion,

Re: new Request for internal map:redirect-to's?

2003-08-18 Thread Sonny Sukumar
It's not supposed to send an HTTP redirect if using the cocoon:/ protocol and syntax--at least not in Cocoon 2.1. I checked headers and all, but I don't see my browser processing a redirect at all like I did using the same syntax in 2.0.4. In any case, maybe one of the people knowledgeable on

Re: best browsers for viewing xml?

2003-08-18 Thread Sonny Sukumar
Is there a way to apply a default XSLT stylesheet to any XML document received in most browsers? From: Erik Bruchez [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: best browsers for viewing xml? Date: Mon, 18 Aug 2003 00:08:03 -0700 Mozilla's XML display is

What exactly is the logger attribute

2003-08-18 Thread Lionel Crine
Hi, I'm really fond of knowing what the attribute logger is used to ? for example : map:generator label=content logger=sitemap.generator.file name=file pool-grow=4 pool-max=32 pool-min=8 src=org.apache.cocoon.generation.FileGenerator/ And the pool-min attribute by the way. Thanks in advance

JasperReports and Cocoon

2003-08-18 Thread Angus Miller
Hi I am trying to intergrate JasperReports 0.5.0 and Cocoon 2.0.4, if anybody has a working example I will be most gratefull. Thanks Angus Get advanced SPAM filtering on Webmail or POP Mail ... Get Lycos Mail!

Re: What exactly is the logger attribute

2003-08-18 Thread Sonny Sukumar
The logger attribute is used to specify the logger category to which log messages. See logkit.xconf in the WEB-INF directory for log factory/target/category definitions and configurations. You can add your own as well. This wiki doc should help in doing so:

Re: new Request for internal map:redirect-to's?

2003-08-18 Thread Jay Freeman \(saurik\)
Sonny: Oh, I'm sorry, I didn't even pay attention to that. :( Sincerely, Jay Freeman (saurik) [EMAIL PROTECTED] - Original Message - From: Sonny Sukumar [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, August 18, 2003 2:19 AM Subject: Re: new Request for internal map:redirect-to's?

Re: How to use stores for persistence

2003-08-18 Thread Olivier Billard
Many thanks for your answer, Geoff ! Sorry for the late answer, but Friday was a public holiday in France... :) On 15/08/2003 02:34, Geoff Howard wrote: Olivier Billard wrote: Cool ! Thanks for your answer, it conforts me in my choice : I think I'll use database mapping with maybe a custom

Re: Repost: Error with esql and multiple results

2003-08-18 Thread Christian Haul
On 15.Aug.2003 -- 06:27 PM, Ariane Ibig, Infonic AG wrote: Hi Chris This is the line !-- $Id: esql.xsl,v 1.1 2002/10/18 14:04:27 haul Exp $-- I have a shortened xsp page attached, hope it helps I can't see any differences that are related to your problem :-( However, it appears that a new

JNDI datasource with BES 5.1

2003-08-18 Thread Cedric Picard
Title: JNDI datasource with BES 5.1 Hello, Just to let you know that I've added a new how-to in the Wiki explaining the use of JNDI datasources in Borland Enterprise Server 5.1. http://wiki.cocoondev.org/Wiki.jsp?page=JNDIDatasourceWithBorlandEnterpriseServer5.1 Hope this will be

Re: What exactly is the logger attribute

2003-08-18 Thread Lionel Crine
thx At 01:04 18/08/2003 -0700, you wrote: The logger attribute is used to specify the logger category to which log messages. See logkit.xconf in the WEB-INF directory for log factory/target/category definitions and configurations. You can add your own as well. This wiki doc should help in

Re: best browsers for viewing xml?

2003-08-18 Thread Joerg Heinicke
You can't use the IE XSLT because it's based on IE's implementation of the XSLT working draft. The xslt in Cocoon is (or was at least) based on this file as you can read in the comments in the file. Joerg Upayavira wrote: Jay Freeman (saurik) wrote: One such XSL/T comes with Cocoon:

capture logicsheet continued

2003-08-18 Thread scott
ok at the moment, I'm trying to just get the value from my DOM fragment. I was told that getFirstChild() is the method I'm after, but I still can't seem to print out the value of my fragment, eg: capture:dom-variable name=blahDom blahyou are the one, mr blah/blah /capture:dom-variable

RE: javascript error

2003-08-18 Thread Vindevogel - van Loco
Did you try the [CDATA[ ]] tags ? -Original Message- From: Lionel Crine [mailto:[EMAIL PROTECTED] Sent: maandag 18 augustus 2003 16:04 To: [EMAIL PROTECTED] Subject: javascript error I wrote a little script : script language=javascript function controle() { ... if (subgif != 'gif'

RE: javascript error

2003-08-18 Thread Cedric Picard
It's probably because an AND in javascript is and not a single . Hope that helps, Cedric -Original Message- From: Lionel Crine [mailto:[EMAIL PROTECTED] Sent: 18 August 2003 15:04 To: [EMAIL PROTECTED] Subject: javascript error I wrote a little script : script language=javascript

Re: javascript error

2003-08-18 Thread frederic bertin
_javascript_ in xhtml page should be handle in a particular way ? yes, this way: script language="_javascript_" !-- function controle() { ... if (subgif != 'gif' subgif != 'GIF') ... } //-- /script Fred

Re: filepart

2003-08-18 Thread Andrew Timberlake
Lionel Try org.apache.cocoon.servlet.multipart.Part and the other classes in the org.apache.cocoon.servlet.multipart package. Andrew Lionel Crine wrote: I have an upload action which uses filepart and filepartarray but in 2.1 version, These classes don't exist ? Any idea which one replace them

Re: filepart

2003-08-18 Thread Lionel Crine
thks, I also find a tutorial on wiki. At 16:58 18/08/2003 +0200, you wrote: Lionel Try org.apache.cocoon.servlet.multipart.Part and the other classes in the org.apache.cocoon.servlet.multipart package. Andrew Lionel Crine wrote: I have an upload action which uses filepart and filepartarray but

RE: Repost: Error with esql and multiple results

2003-08-18 Thread Ariane Ibig, Infonic AG
Yes, it really worked with 2.1-dev. With the new database.jar, it now also works with Cocoon 2.1. Thanks a lot for your help!!! Ariane -Original Message- From: Christian Haul [mailto:[EMAIL PROTECTED] Sent: Montag, 18. August 2003 11:45 To: [EMAIL PROTECTED] Subject: Re: Repost: Error

JXFormsTransfer, Flow Best Practices

2003-08-18 Thread Richard In Public
Hi Question/Problem Does anyone have an example using the JXFormsTransformer? My best attempt, described below fails with: Exception: org.apache.cocoon.ProcessingException: Failed to execute pipeline.:

Re: esql connection error

2003-08-18 Thread Andrew Timberlake
Peter The pool is defined for the connection, not the query. ie: xsp:page language=java xmlns:xsp=http://apache.org/xsp; xmlns:esql=http://apache.org/cocoon/SQL/v2; records esql:connection esql:pooldirectory-pool/esql:pool esql:execute-query esql:querySELECT * FROM

Re: esql connection error

2003-08-18 Thread Peter Choe
i found the problem. i had the esql:pool tag in the wrong place. everything okay now. Peter Choe wrote: I am just starting out using cocoon and am trying to use esql database tags. i have cocoon 2.0.4 running on tomcat 4.1.18 and postgresql 7.3. i have configured the cocoonc.xconf with

DatabaseAuthenticatorAction and Authentication framework

2003-08-18 Thread g[R]eK
. Hi users! . I found action org.apache.cocoon.acting.DatabaseAuthenticatorAction in Cocoon's JavaAPI Documentation. Is this action integrated with Authentication framework's action? If I create session with DatabaseAuthenticatorAction can I check it with LoggedInAction? If answer is no,

JNDI (j2ee/)Datasource connection in Weblogic

2003-08-18 Thread Grange, John
Title: JNDI (j2ee/)Datasource connection in Weblogic We have, finally managed to get the j2ee/ jndi datasources working under weblogic. (Cedric, thanks for the help) The solution was to alter the code excalibur-datasource-1.1.1.jar:org.apache.avalon.excalibur.datasource.J2eeDataSource so

Re: new Request for internal map:redirect-to's?

2003-08-18 Thread Jay Freeman \(saurik\)
Sonny: Isn't what you're asking for capable of being done with a map:read src=cocoon:/../ instead of a map:redirect-to/? Or is your actually usage case more complicated than your examples. I could almost understand redirect-to trying to simulate what would happen if a Location header _had_ been

Re: Making sweet music with Cocoon

2003-08-18 Thread Morgan V Cundiff
Yes, it is interesting. There are several attempts at xml music notation out there. The one they cooked up at UVA (called MEI) is pretty impressive. I want to study this more when I get a chance. I wish I could catch some of Music Informatiom Retrival conference held here in October. Unfortunately

Re: filepart

2003-08-18 Thread Sonny Sukumar
From: Geoff Howard [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: filepart Date: Mon, 18 Aug 2003 18:21:26 -0400 Sonny Sukumar wrote: In the docs, for the PartInMemory.getSize(), the description reads Returns the filename, which can't be correct. I'm not sure

Problems with Cocoon/eXist combo

2003-08-18 Thread Carl Mäsak
Hello fellow Cocooners, I'm running Cocoon 2.1rc1 with Jetty 4.2.9 (running on port 80), trying to get it to work harmoniously with eXist 0.9.2 (on a RedHat 9.0 i686 running JDK1.4.1_03). I've followed the various tutorials on the web (especially ExistInCocoon in the cocoonwiki), and set

SQL Connection issue

2003-08-18 Thread Irving Salisbury III
We have a database that is not always under our control. So, our cocoon instance often runs longer than the database. However, it looks like the implementation inside the SQLTransformer does not try to reconnect when the database connection is lost. So, when our database goes down and comes