AW: I am trying to deploy to Tomcat 5.0.28

2009-02-12 Thread Huettenkofer Michael
Hi Brenda, AFAIK requires JSF 1.2, which is not supported in Tomcat until release 6. HTH, Michael Von: Brenda Krivensky [mailto:bkriven...@hotmail.com] Gesendet: Mittwoch, 11. Februar 2009 19:48 An: users@myfaces.apache.org Betreff: I am trying to deploy to Tomcat 5.0.28 I

Re: I am trying to deploy to Tomcat 5.0.28

2009-02-12 Thread Paulo Pinto
Hi, you can use Tomcat 5.5 with JSF 1.2, provided you add the EL jars either to your application or the server CLASSPATH. You also need to code your pages using Facelets instead of JSP pages. EL Jars: https://uel.dev.java.net/ -- Paulo On Thu, Feb 12, 2009 at 9:06 AM, Huettenkofer Michael

Re: [Trinidad] Page reloads before launching the dialog

2009-02-12 Thread Jonathan Bullock
We're using the dialog framework too and when the link is clicked a XHR POST is made to the page before the window loads and when the window is closed. Jon On Wed, 2009-02-11 at 11:54 -0800, Richard Yee wrote: Are you using any custom JavaScript? -R On Wed, Feb 11, 2009 at 10:24 AM,

Re: [Trinidad] Page reloads before launching the dialog

2009-02-12 Thread Gerhard Petracek
hello, yes - that's the desired behaviour. it sounds like walter talked about a full page refresh. in case of ppr it shouldn't occur. regards, gerhard 2009/2/12 Jonathan Bullock jonathan.bull...@fugro-data.com We're using the dialog framework too and when the link is clicked a XHR POST is

Re: Problem Using Orchestra with Realm after Session-Timeout

2009-02-12 Thread Filip Lyncker
Hi Simon , thanks a lot for that infos ! I installed the newest Versions of Orchestra 1.3 and jsf RI (1.2_12) now and the behave is different now : no more null pointer , but still an exception ... after the session timeout i get the following log output : 12.02.2009 11:09:35

[trinidad]launch dialog on page load

2009-02-12 Thread venkat.ramanan
Hi I would like to the following about Trinidad dialogs : 1) Is it possible to launch a dialog page as soon as an xhtml page loading (main page) is completed. What will be the syntax for that ? 2) Also, is it possible to open one dialog from another dialog. Then what will be

RE: Problem Using Orchestra with Realm after Session-Timeout

2009-02-12 Thread Mario Ivankovits
Hi! -Original Message- From: Filip Lyncker [mailto:lync...@lyth.de] Sent: Thursday, February 12, 2009 11:29 AM Yep, here it is: javax.faces.application.ViewExpiredException: viewId:/pages/start/actuell.jsf - View /pages/start/actuell.jsf could not be restored. if

Re: Problem Using Orchestra with Realm after Session-Timeout

2009-02-12 Thread Simon Kitching
Mario Ivankovits schrieb: Hi! -Original Message- From: Filip Lyncker [mailto:lync...@lyth.de] Sent: Thursday, February 12, 2009 11:29 AM Yep, here it is: javax.faces.application.ViewExpiredException: viewId:/pages/start/actuell.jsf - View /pages/start/actuell.jsf could not be

Re: tomahawk 1.1.8 tabChangeLisener attribute in tabbedPane lost

2009-02-12 Thread Leonardo Uribe
Hi Checking the code it seems to be a bug (this property should be generated but it is not). Could you file an issue on https://issues.apache.org/jira/browse/TOMAHAWK So we can solve it? regards Leonardo Uribe On Thu, Feb 12, 2009 at 1:47 AM, Dipl.-Ing. Torsten Liermann l...@liermann-it.de

Re: Problem Using Orchestra with Realm after Session-Timeout

2009-02-12 Thread Kito Mann
FYI, there is a whole section about error handling (and a link to an example that handles the ViewExpiredException) in the Wiki. Sent from my iPhone http://www.jsfcentral.com http://www.Virtua.com On Feb 12, 2009, at 5:43 AM, Simon Kitching skitch...@apache.org wrote: Mario Ivankovits

Re: AW: I am trying to deploy to Tomcat 5.0.28

2009-02-12 Thread Richard Yee
Jsf 1.2 can work on tomcat 5.x only if the facelets library is used instead of jsp pages Richard Sent from my iPhone On Feb 12, 2009, at 12:06 AM, Huettenkofer Michael michael.huettenko...@munich-airport.de wrote: Hi Brenda, AFAIK requires JSF 1.2, which is not supported in Tomcat

[TRINIDAD] PPR and tr:switcher in table row

2009-02-12 Thread Steve Horne
I have a table that has a column containing a tr:switcher component and another column containing a button (calc. When the table is initially displayed, I would like the column with the switcher to show needs calc. After the calc button is pressed, I'd like the switcher to display the

Re: [trinidad]launch dialog on page load

2009-02-12 Thread Richard Yee
Use javascript to do the submit when the page loads R Sent from my iPhone On Feb 12, 2009, at 2:32 AM, venkat.rama...@thomsonreuters.com wrote: Hi I would like to the following about Trinidad dialogs : 1) Is it possible to launch a dialog page as soon as an xhtml page loading

Re: [TRINIDAD] PPR and tr:switcher in table row

2009-02-12 Thread Max Starets
Steve, I would wrap the switcher in tr:panelGroup and set partialTriggers there. Max Steve Horne wrote: I have a table that has a column containing a tr:switcher component and another column containing a button ("calc". When the table is initially displayed, I would like the column with

Re: [TRINIDAD] PPR and tr:switcher in table row

2009-02-12 Thread Steve Horne
Thanks Max- that did the trick! Don't know why I didn't think of that myself:D -Steve Many men go fishing all of their lives without knowing it is not fish they are after. - Henry David Thoreau On Thu, Feb 12, 2009 at 10:12 AM, Max Starets max.star...@oracle.comwrote: Steve, I would

Re: [Trinidad] commandButtons not reacting on first click

2009-02-12 Thread Robert Stokes
See http://wiki.apache.org/myfaces/Facelets_with_Trinidad - Using Trinidad PPR (Partial Page Rendering) with Facelets Rob Huettenkofer Michael michael.huettenko...@munich-airport.de wrote on 02/12/2009 12:55:15 AM: Hi all, I am developing an application based on Facelets, MyFaces and

Re: [Trinidad] Page reloads before launching the dialog

2009-02-12 Thread Gerhard Petracek
hello walter, your *... looks like the page was refreshed ...* is ok - it isn't a full page refresh. you can test it e.g. via a random value bound to an output-component (which is in the page). it should only change if you do none-ppr requests (or you trigger it). regards, gerhard 2009/2/12

Re: [Trinidad] Page reloads before launching the dialog

2009-02-12 Thread Walter Mourão
Many thanks Gerhard, One last question: should the Close PPR command button closes the dialog ? it doesn't... Walter Mourão http://waltermourao.com.br http://arcadian.com.br http://oriens.com.br On Thu, Feb 12, 2009 at 3:41 PM, Gerhard Petracek gerhard.petra...@gmail.com wrote: hello

Re: [Trinidad] Page reloads before launching the dialog

2009-02-12 Thread Gerhard Petracek
hello walter, ppr is just useful if you stay on the same page. you close the current page (the dialog), so you don't need ppr here. regards, gerhard 2009/2/12 Walter Mourão walter.mou...@gmail.com Many thanks Gerhard, One last question: should the Close PPR command button closes the

[Orchestra] Presence / absence of conversation?

2009-02-12 Thread Guillaume Bilodeau
Hi guys, I have just started playing with Apache Orchestra and am struggling to find extensive documentation on the project. Are there any good tutorials out there? The main web site does give some information but it feels too general for now since I don't yet have a good understanding of the

BadPadding Exception and more

2009-02-12 Thread Heiß Michael
Hi, I have created a webapplication using myfaces 1.2.6 / tomahawk 1.1.8 and richfaces 3.2.2 and tested this application successfully using a local tomcat 6 webserver. Now i tried to depoly the application to our windows 2003 x64 testserver who also runs tomcat 6, but now i got one error message

Re: BadPadding Exception and more

2009-02-12 Thread alvaro tovar
hello i have this error when the session is time out, but i don't kown how i can solve this. regards 2009/2/12 Heiß Michael m-he...@aon.at: Hi, I have created a webapplication using myfaces 1.2.6 / tomahawk 1.1.8 and richfaces 3.2.2 and tested this application successfully using a local

Re: BadPadding Exception and more

2009-02-12 Thread Simon Kitching
On Thu, 2009-02-12 at 12:57 -0800, Heiß Michael wrote: Hi, I have created a webapplication using myfaces 1.2.6 / tomahawk 1.1.8 and richfaces 3.2.2 and tested this application successfully using a local tomcat 6 webserver. Now i tried to depoly the application to our windows 2003 x64

Re: [Orchestra] Presence / absence of conversation?

2009-02-12 Thread Simon Kitching
On Thu, 2009-02-12 at 12:39 -0800, Guillaume Bilodeau wrote: Hi guys, I have just started playing with Apache Orchestra and am struggling to find extensive documentation on the project. Are there any good tutorials out there? The main web site does give some information but it feels too

Re: [Orchestra] Presence / absence of conversation?

2009-02-12 Thread Guillaume Bilodeau
Thank you Simon for your detailed answer! I've spent the last few months using Seam and I now realize that the term conversation has a totally different meaning in Orchestra, as you explained. The documentation does explain it clearly, I suppose initially I went through it too quickly and

[Trinidad] Problem in Table Select All / Select None links and PPR

2009-02-12 Thread Glauco P. Gomes
See this code snippet: ... tr:table autoSubmit=true rowSelection=multiple id=table value=#{myBackingBean.dataModel} var=row binding=#{myBackingBean.table} partialTriggers=releaseBtn deleteBtn f:facet name=actions tr:commandButton text=Release id=releaseBtn partialSubmit=true

Re: [Trinidad] Problem in Table Select All / Select None links and PPR

2009-02-12 Thread Glauco P. Gomes
Just to inform, I'm using Trinidad 1.0.10 Glauco P. Gomes Glauco P. Gomes escreveu: See this code snippet: ... tr:table autoSubmit=true rowSelection=multiple id=table value=#{myBackingBean.dataModel} var=row binding=#{myBackingBean.table} partialTriggers=releaseBtn deleteBtn f:facet

AW: [Trinidad] commandButtons not reacting on first click

2009-02-12 Thread Huettenkofer Michael
Hi, I just realized the problem was caused by a tr:poll component I was using in the same page. I took it out and everything is working fine now. Thank you very much for your reply anyway, Rob! Regards, Michael Von: Robert Stokes [mailto:rsto...@fs.fed.us] Gesendet: Donnerstag, 12.