Re: XML to PDF

2002-10-20 Thread Litrik De Roy
Take a look at http://www.inventivedesigners.com/products/scriptura/demo.html Inventive Designers' product Scriptura was used to design the document and merge the dynamic data (as text and as a bar code). Cocoon is serving the page (using its built-in FOP rendering capabilities). Litrik De Roy

Re: Convert XMLFragment to DOM node

2002-10-20 Thread Christian Kurz
I am experiencing the same problem. Have you been able to solve this problem? Any hints? Thanks in advance, Christian

DatabaseAuthenticatorAction usage

2002-10-20 Thread aps olute
I am trying to get this article by Lajos and can not get it to work. The section on using DatabaseAuthenticatorAction. How to display what has been entered on the form after submit so I can debug? Mysql has the Users table with user_name and user_password columns both varchar(5), and john1 as

Re: Link: Consultant: Tritus CG Inc.

2002-10-20 Thread Antonio Gallardo Rivera
I receive and access fobbiden message. Check the permission to the web site :-D Antonio Gallardo El Domingo, 20 de Octubre de 2002 13:16, Adam Sherman escribió: Tritus CG, located in Ottawa, Canada is now providing Cocoon architecture, setup and custom development. http://www.tritus.ca/

Can't compile the mail component

2002-10-20 Thread Kjetil Kjernsmo
Hello again! Arrrgggh. I'm feeling totally lost. I can't even get the mail component from Matthew and Carsten's book byte-compiled... :-( Just to cite some system details first: I have a Debian Woody system, Tomcat is 4.0.3. I have the latest SDK from Blackdown. During the past few days, I've

Re: XMLForm having - like cocoon-action-next

2002-10-20 Thread apurva zaveri
--- [EMAIL PROTECTED] wrote: I don't understand. Is the error produced on the client or the server? The error is produced in voiceXML browser [so client] The voiceXML browser expects this: submit method=get next=wizard? namelist=cocoon-xmlform-view city propertyType rent

Re: in XML Output

2002-10-20 Thread J.Pietschmann
apurva zaveri wrote: How can I have the following in my xml output. word spelling=SPELL pronunciation=m#601;mba#618;/ This uses and xml serializer. The result i get is word spelling=SPELL pronunciation=mamp;#601;mbaamp;#618;/ Are you adding the attribute value through ssome Java code? Use

Undeliverable: Re: Can't compile the mail component

2002-10-20 Thread System Administrator
Your message did not reach some or all of the intended recipients. Subject: Re: Can't compile the mail component Sent: 10/20/2002 14:13:00 The following recipient(s) could not be reached: Exchange.CTG.ddelrosario 10/20/2002 14:13:00 The message reached the recipient's e-mail system, but

in XML Output

2002-10-20 Thread apurva zaveri
How can I have the following in my xml output. word spelling=SPELL pronunciation=m#601;mba#618;/ This uses and xml serializer. The result i get is word spelling=SPELL pronunciation=mamp;#601;mbaamp;#618;/ __ Do you Yahoo!? Y! Web Hosting - Let

Re: Can't compile the mail component

2002-10-20 Thread Geoff Howard
Kjetil, To be useful on the classpath, jar files (unlike un-jarred classes) have to be named explicitly. So in the classpath below every line that ends with WEB-INF/lib is doing nothing. You need to use things like:

[Q] Error handling - How to replace error code 500 with 200 ?

2002-10-20 Thread Ivelin Ivanov
Is there a way for a pipeline error handler of code 500 to serialize with code 200 ? I would like to use a pipeline which makes subrequests. Subrequests should not be fatal for the success of the main request. For example I would like to aggregate from multiple sources, but if one is not

cocoon-users@xml.apache.org

2002-10-20 Thread apurva zaveri
word spelling=SPELL pronunciation=m#601;mba#618;/ __ Do you Yahoo!? Y! Web Hosting - Let the expert host your web site http://webhosting.yahoo.com/ - Please check that your

Re: XMLForm having - like cocoon-action-next

2002-10-20 Thread Ivelin Ivanov
Did you try document.forms[cocoon-xmlform-view] see: http://www.devguru.com/Technologies/ecmascript/quickref/doc_forms.html - Original Message - From: apurva zaveri [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Saturday, October 19, 2002 10:00 PM Subject: XMLForm

Re: FOP in cocoon

2002-10-20 Thread J.Pietschmann
Przybilla, Frank wrote: The problems is that the column values don't fit into the specified columns. So fop has to hyphenate the text or produce breaks respectively. This is working for small documents. For bigger documents fop is not coming to an end and seems to hang producing permanently

Link: Consultant: Tritus CG Inc.

2002-10-20 Thread Adam Sherman
Tritus CG, located in Ottawa, Canada is now providing Cocoon architecture, setup and custom development. http://www.tritus.ca/ -- Adam Sherman President Chief Technologist Tritus CG Inc. +1 (613) 797-6819 - Please check that

[Fwd: [Juglist] Monday night - Introduction to Cocoon 2.0]

2002-10-20 Thread Andrew C. Oliver
(forwarding to POI only because I'll briefly cover the HSSF Serializer [XLS/Excel] and be glad to answer any questions) -- http://www.superlinksoftware.com - software solutions for business http://jakarta.apache.org/poi - Excel/Word/OLE 2 Compound Document in Java

XMLForm having - like cocoon-action-next

2002-10-20 Thread apurva zaveri
XMLForm has form items named: cocoon-action-prev cocoon-action-next cocoon-xmlform-view all of them have - in it. Problem is javascript can not access such form items. i.e. you can not do documents.form.cocoon-xmlform-view.value or something like that. In HTML if you want to do this it will

Re: XMLForm having - like cocoon-action-next

2002-10-20 Thread apurva zaveri
--- [EMAIL PROTECTED] wrote: sorry, that should be: documents.forms[0].elements['cocoon-xmlform-view'].value also, if you need these to be variable names, use an associative array: var Vars=new Array() Vars['cocoon-xmlform-view']=some view