Re: JDK 1.3.1 is driving me MAD!

2002-09-28 Thread Roger Ting
Tried every thing i know. I downloaded the latest Tomcat and cocoon both built with jdk 1.4. Now Tomcat doesn't even run. cocoon just take up too much memory it keep throwing out of memory error. set catalina ops to 32 and 64 and it still doesn't work. does anyone know latest j-connector is

Master-Detail form using Cocoon

2002-09-28 Thread Antonio Gallardo Rivera
Hi folks, Can someone provide an example of a lets said a invoice or something similar using Cocoon and database? Antonio Gallardo - Please check that your question has not already been answered in the FAQ before posting.

post data in XML format

2002-09-28 Thread Cocoon User
think about how POST work. with POST we can send data (single values) from a form to server over HTTP is it possible to send data from a client (IE) using a form(or anything else) in XML format and how can cocoon recieve this xml stuctured data and handle them (create the .xml file local or

Cocoon 2, Docbook and Norman Walsh's Stylesheets

2002-09-28 Thread Gabriele Domenichini
I have succeded in transforming Docbook to pdf and to html on cocoon 2.0.3 using the stylesheet by Norman Walsh on the official docbook repository (http://docbook.sourceforge.net/projects/xsl/index.html). Cocoon has some weakness in doing this and I spent 15 days to make it work properly, so

Re: Source Writing Transformer: Adding namespaces

2002-09-28 Thread Alex Romayev
--- Vadim Gritsenko [EMAIL PROTECTED] wrote: Alex Romayev wrote: I'm still struggling with this problem. Let me try to state it more clearly: I would like to write XML to a file. My XML contain namespaces. I declare the namespaces in the root element, just the way I would like it

how to access without cocoon

2002-09-28 Thread funing
Hi! I can run my webapp by http://host:8080/cocoon/xxx correctly. How to access it without cocoon by http://host:8080/xxx ? I change the map:pattern but it doesn't work :( best regards -- funing [EMAIL PROTECTED] - Please

Re: how to access without cocoon

2002-09-28 Thread Antonio Gallardo Rivera
The easiest way is coping all the files that you find in $CATALINA_HOME/webapps/cocoon/WEB-INF into: $CATALINA_HOME/webapps/myapp but you will need a new sitemap into this new location Antonio Gallardo El Sábado, 28 de Septiembre de 2002 03:07, funing escribió: Hi! I can run my webapp

RE: how to access without cocoon

2002-09-28 Thread Luca Morandini
Funing, what about reading the Cocoon FAQ at: http://xml.apache.org/cocoon/faq/faq-configure-environment.html ? Best regards, - Luca Morandini GIS Consultant [EMAIL PROTECTED]

Re: post data in XML format

2002-09-28 Thread Antonio Gallardo Rivera
El Sábado, 28 de Septiembre de 2002 01:57, Cocoon User escribió: think about how POST work. with POST we can send data (single values) from a form to server over HTTP is it possible to send data from a client (IE) using a form(or anything else) in XML format In 2.1-CVS There is XMLForm for

XMLform DEMO

2002-09-28 Thread Cocoon User
hi guys do u know where can i find tutorial or demostrations or a reference about XMLforms in cocoon? thanks kounis stavros - Please check that your question has not already been answered in the FAQ before posting.

Re: XMLform DEMO

2002-09-28 Thread Antonio Gallardo Rivera
In the CVS of the next comming version 2.1 are some simple examples of XMLForms. Antonio Gallardo El Sábado, 28 de Septiembre de 2002 03:37, Cocoon User escribió: hi guys do u know where can i find tutorial or demostrations or a reference about XMLforms in cocoon? thanks kounis

Re: XMLform DEMO

2002-09-28 Thread Ross Gardler
Cocoon User wrote: hi guys do u know where can i find tutorial or demostrations or a reference about XMLforms in cocoon? http://xml.apache.org/cocoon/howto/xmlform-wizard/howto-xmlform-wizard.html Ross thanks kounis stavros

Re: Master-Detail form using Cocoon

2002-09-28 Thread Ivelin Ivanov
forms: http://xml.apache.org/cocoon/userdocs/concepts/xmlform.html (follow the howto link for examples) databases: http://xml.apache.org/cocoon/userdocs/concepts/databases.html - Original Message - From: Antonio Gallardo Rivera [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday,

Re: [Q] Cocoon 2.1 on JBoss+Tomcat

2002-09-28 Thread Ivelin Ivanov
A slight advancement: The problem is still there with JBoss 3.0, but with JBoss 2.4.9 I got to a point where Cocoon is reported deployed but the when I try to hit the home page, the server returns a 302 redirect to the home page, which of course causes an infinite loop. GET /cocoon/ HTTP/1.0

RE: Master-Detail form using Cocoon

2002-09-28 Thread Artur Bialecki
-Original Message- From: Ivelin Ivanov [mailto:[EMAIL PROTECTED]] Sent: September 28, 2002 11:20 AM To: [EMAIL PROTECTED] Subject: Re: Master-Detail form using Cocoon forms: http://xml.apache.org/cocoon/userdocs/concepts/xmlform.html (follow the howto link for

jndi, oracle, generator

2002-09-28 Thread apurva zaveri
hello, I have a wierd problem. I am almost about to kill myself for this. It would seem this has nothing to with cocoon but it has. String ln = jdbc/db; Hashtable env = new Hashtable (5); env.put (Context.INITIAL_CONTEXT_FACTORY,

Re: jndi, oracle, generator

2002-09-28 Thread apurva zaveri
opps! I made the obcious changes like env.put (Context.PROVIDER_URL, file:/rertndb/JNDI); in binding. read this in below as: I made the obvious changes like OracleOCIConnectionPool cpool = new OracleOCIConnectionPool(apurva,apffapz, jdbc:oracle:oci:@RERTNDB, null); it was RERTN

subsitemap and JSP

2002-09-28 Thread Sushil Bhattarai
I have JSP generator and Reader sample in the cocoon page working fine from the main sitemap. However, when I try the exact sample in subsitemap, it throws errror. I even tried by declaring JSP generator and reader in subsitemap, hoping that was the problem. Has anyone used JSP in subsitemap

Re: [Q] Cocoon 2.1 on JBoss+Tomcat

2002-09-28 Thread Ivelin Ivanov
Another advancement. The cocoon.war build for JDK 1.4 from C2.1 HEAD, works great with JBoss-2.4.9_Tomcat-4.0.4 after following the instructions on the Cocoon Install page for c2.0.3. JBoss 3.0 is still a challenge. - Original Message - From: Ivelin Ivanov [EMAIL PROTECTED] To:

post data in XML format

2002-09-28 Thread Geoff Howard
The other answer you received about using standard HTML forms is probably the way you should go, but as to the specific question you asked about generating xml at the browser, there is a way to do this if your situation allows you to stay IE only - The XMLHTTPConnection ActiveXObject. The