Re: Changing the NAMING_SEPARATOR to avoid CSS problems.

2007-08-07 Thread Bernhard Huemer
Hello, you could also turn off generation of component client IDs included in a form and "hardcode" them. Change the value of the prependId attribute on the UIForm component from the default of true to false to indicate that the form ID should not be a prefix of the component ID. Note that this is

Re: Events are fired twice for unknown reasons

2007-08-30 Thread Bernhard Huemer
Hello, I've encountered the same problem recently and I've also figured out the reason. It's because the method setProperties() is called twice. Usually you wouldn't notice this behaviour as most properties just will be overridden but that's not the case for a ValueChangeListener (or an Actio

Re: Log each call to an JSF action method

2007-08-30 Thread Bernhard Huemer
Hello, you could also use a custom ActionListener implementation if the method expression being processed is sufficient (for example, "Processing the action '#{actionBean.processAction}'."), as Andrew has already mentioned. /// import javax.faces.component.ActionSource; import javax.faces.eve

Re: EL problem

2007-08-30 Thread Bernhard Huemer
Hello, Most probably you're referring to this issue: https://issues.apache.org/jira/browse/MYFACES-1670, aren't you? I've tested Raphael's JSP locally and it's really the same problem. "mvn -Dmyfaces.version=1.2.0 jetty:run" reproduces the error whereas "mvn -Dmyfaces.version=1.2.1-SNAPSHOT

Re: EL problem

2007-08-30 Thread Bernhard Huemer
hanks for your reply...it seems that indeed I am referring to that issue. I would like to test the same as you did. Which pom do you use to execute the mvn commands below (IOW what do I check out of SVN) Again Bernhard tx, Raphael -Original Message----- From: Bernhard Huemer [mailto:[EMAIL PR

Re: EL problem

2007-08-30 Thread Bernhard Huemer
Raphael Parree wrote: Bernhard, Gotcha...it has been a long day ;) What do I need to check out of SVN...the trunk produces a 1.1.6 snapshotdo I need to checkout http://svn.apache.org/repos/asf/myfaces/core/branches/1_2_1? Tx., Raphael -Original Message- From: Bernhard Huemer

Re: Events are fired twice for unknown reasons

2007-09-03 Thread Bernhard Huemer
, Bernhard Fan Shao wrote: Thanks Bernhard, from a user's view, what's the impact to JSF applications of this issue? And in what cases this problem can be reproduced? Is there anyway that I can mitigate it if brings about any problem before this issue is fixed? Fan Bernhard Huemer-

Re: Myfaces/Tomahawk on IBM WebSphere Portal Server 6

2007-10-04 Thread Bernhard Huemer
Hello, which version of MyFaces and which portlet bridge are you using? I'm just asking as I didn't face those exceptions. Perhaps, if I've got time left on the weekend, I'll create an example project (sort of "archetype project"). regards, Bernhard On 10/04/2007 +0200, [EMAIL PROTECTED] wr

Re: Myfaces/Tomahawk on IBM WebSphere Portal Server 6

2007-10-04 Thread Bernhard Huemer
or Thanks Shipra Jain *Bernhard Huemer <[EMAIL PROTECTED]>* 10/04/2007 01:58 PM Please respond to "MyFaces Discussion" To MyFaces Discussion cc Subject Re: Myfaces/Tomahawk on IBM WebSphere Portal Server 6 Hello, which ver

Re: Myfaces/Tomahawk on IBM WebSphere Portal Server 6

2007-10-23 Thread Bernhard Huemer
clientId in tomhawk datascroller .So, I got rid of it . Duplicate clientid issue is gone , but the Null pointers are still there which I am guessing causing distorted pages. With the portlet & web.xml , I just want to verify , if i have configured things correctly . Thanks Shipra *Ber

Re: myfaces 1.2.0 postConstruct

2007-11-06 Thread Bernhard Huemer
Hello, this behaviour is definitely wrong. Hopefully you don't mind that I've created an according JIRA issue for you ;-) https://issues.apache.org/jira/browse/MYFACES-1761 regards, Bernhard On 11/06/2007 +0100, kace <[EMAIL PROTECTED]> wrote: Hi, I am using myfaces 1.2.0 with facelets an

Re: myfaces 1.2.0 postConstruct

2007-11-07 Thread Bernhard Huemer
5 and i get the error stated in previous post and in tomcat 6 the page loads up but without loading the data from ?id=2 ..kace Bernhard Huemer-2 wrote: Hello, this behaviour is definitely wrong. Hopefully you don't mind that I've created an according JIRA issue for you ;-) http

Re: build Tomahawk error using mvn

2007-11-10 Thread Bernhard Huemer
Hello, I guess you've only checked out the core. Use the following directry instead: http://svn.apache.org/repos/asf/myfaces/tomahawk/trunk/ regards, Bernhard On 11/10/2007 +0100, Dave <[EMAIL PROTECTED]> wrote: I checked out the latest Tomahawk source code, and tried to build it. But I got

Re: JBoss 4.2.2 and MyFaces

2007-11-10 Thread Bernhard Huemer
Hello, sounds like a classloader issue as you're still using the JSF RI, at least according to the error message ("FacesContext not found" - MyFaces vs. "Cannot find FacesContext" - JSF RI; and of course the line numbers don't match). regards, Bernhard On 11/10/2007 +0100, Dave <[EMAIL PROT

Re: access to error messages attributes with unitfied EL

2008-01-02 Thread Bernhard Huemer
sing the following expression: #{requestScope['javax..servlet.error.message']} regards, Bernhard Huemer On 12/27/2007 +0100, Wolf Benz <[EMAIL PROTECTED]> wrote: Hi all, I know that, within a JSP page, you have access to information about the exception that occurred under sever

Re: Myfaces-1.2.1-snapshot: Spring injected bean not available in @PostContruct method

2008-01-18 Thread Bernhard Huemer
Hello, most probably he's injecting the Spring bean using managed-properties, i.e. I think his managed bean definition looks like the following: ... ... dataService #{dataService} However, there's a bug in MyFaces as it calls methods being annotated with @PostConstruct b

Re: Portlet Environment and Orchestra

2008-02-06 Thread Bernhard Huemer
Hello, Many portals - at least those I know - dispatch calls to portlets by retrieving a RequestDispatcher and then they just call "include()". However, I've already heard quite a few times that Servlet Filters don't work in Liferay regardless of the dispatcher methods being configured (i.e.

Re: [Orchestra] Explicit conversation starting and nested conversations

2008-04-01 Thread Bernhard Huemer
Hello, although Orchestra is not about pages, it's most likely that the user moves through two different page flows if he has started two different conversations (I'm not talking about two different instances of the same conversation but rather about two different definitions for a conversati

Re: [Orchestra] Explicit conversation starting and nested conversations

2008-04-01 Thread Bernhard Huemer
Hello, In fact, I think that this problem occurs not only when you'd like to reuse certain pages but also when you'd like to reuse certain beans. If you're injecting conversation-scoped beans you're actually injecting a bean being tied to a specific conversation (i.e. you'd also have to copy