application xml

2005-04-16 Thread Andres Taborda
some user have papers on modeling xml applications with uml. can send me some. thanks _ Do You Yahoo!? Información de Estados Unidos y América Latina, en Yahoo! Noticias. Visítanos en http://noticias.espanol.yahoo.com -

Access to session (attributes) inside Portlet

2005-04-16 Thread Simeon Penev
Hi, i've read in the wiki document 'JSR168Portlet' that at the moment not all parts of the JSR168 environment primitives are mapped to the cocoon primitives and therefore return 'null'. Like getRemoteUser for example. My question is how can i retrieve the id of the user, who made the portlet re

Re: Is that possible in cocoon?

2005-04-16 Thread Grzegorz Tańczyk
Hello fadi, You can make Your own Pipeline or Action and create statistics in database for example. Friday, April 15, 2005, 4:06:47 PM, you wrote: fq> Hi all, fq>   fq> I was thinking if how could I know pages that has been fq> visited by the user, is there any log files mechanism in coco

Re: Spring and Cocoon ?

2005-04-16 Thread Laurent Perez
Hi Sébastien It is very easy to lookup Spring-enabled objects (= javabeans) from Cocoon's Flow, perform operations on them, then inject them, for example, in a JXTemplate or CForm, then "unroll" your retrieved objects into the jx/form. It lets you build and reuse clean separate entities, for exam

Spring and Cocoon ?

2005-04-16 Thread Sebastien Arbogast
Hi, I don't know Spring very well. I have an idea of what it does but I would like to know what is the contribution of Spring when used with Cocoon ? Do you think it's interesting for me to learn more about Spring ? Is it easy to integrate with Cocoon ? I saw the Petstore sample on Cocoondev but

Re: Problems creating a drop down selection box

2005-04-16 Thread beyanet.com
If you're using Form.js V2 it will surely not work - form.showForm takes only one parameter in V2. So: - either use V1 and this will work - do form.getChild( "flist" ).setSelectionList( ... ) instead of defining your selection list in definition file. Problem solved, I removed the array element

RE: DOM objects in session

2005-04-16 Thread Kumar, Kiran
regarding the same issue, I found in the cocoon users group that by using the Java Filters with cocoon servlet fixed this problem? could some body give me some examples about how to use the filters effectively appreciate your response thanks Kiran Kumar > -Original Message- > Fr

Re: Cocoon live site

2005-04-16 Thread Jakub Kaniewski
Grzegorz Tańczyk wrote: Hello Jakub, http://www.e-teatr.pl/en/redakcja/dane.html I receive Cocoon error when I try to send message. Thank's for information. After migration to Cocoon 2.1.7, I discover many flows error, because in this version of Rhino FlowScript must be declared with keywo

Re: Scalability, Performance, Stability

2005-04-16 Thread Bertrand Delacretaz
Le 16 avr. 05, à 11:58, [EMAIL PROTECTED] a écrit : i'm impressed that you have NOT to restart the container for a long time we serve about 10 static websites from the same cocoon instance. the load is very low (about 20-30 uniq vistors per site). commonly we have to restart container (tomca

Re: Scalability, Performance, Stability

2005-04-16 Thread gounis
On Sat, 16 Apr 2005, Bertrand Delacretaz wrote: > Le 14 avr. 05, ΰ 18:16, Brent Johnson a ιcrit : > > ...Sorry for the long babbling email, I'm just wondering what sort of > > experiences other Cocoon users have had rolling out similar > > applications or sites with Cocoon 2.x. How is it with sca

Re: Scalability, Performance, Stability

2005-04-16 Thread Bertrand Delacretaz
Le 14 avr. 05, à 18:16, Brent Johnson a écrit : ...Sorry for the long babbling email, I'm just wondering what sort of experiences other Cocoon users have had rolling out similar applications or sites with Cocoon 2.x. How is it with scalability, performance and stability?.. There are many examples

Re: Problems creating a drop down selection box

2005-04-16 Thread Leszek Gawron
beyanet.com wrote: Leszek, so I have now installed 2.1.7, and my documents are still as follows: flow: data.cityList = new Array(2); data.cityList[0] = {value:"AL", label:"Alabama"}; data.cityList[1] = {value:"AK", label:"Alaska"}; form.showForm("accountDetails1.xml", {"msg":Accountsmsg, "userGlob

Re: Problems creating a drop down selection box

2005-04-16 Thread beyanet.com
Title: Re: Problems creating a drop down selection box I tested.Your code does not work in V2, so you should check if you use V2 first.I think esql maybe work. Hi Magic, I am currently using version 2.1.7. I know the code doesn't work ;-) Could you show me some example code which will work? man