Re: Problem with Link from JSP to JSF Form

2008-07-18 Thread Martin Marinschek
Sounds like your managed beans might not have proper scope - but it is hard to tell from your description. In any case, there should not be a difference between the two use-cases. regards, Martin On 7/17/08, Mark Lange [EMAIL PROTECTED] wrote: Hi, I have a JSF form, that forwards to an JSP.

Re: Problem with multiple commandLinks and IE

2008-07-18 Thread Martin Marinschek
Hi Roland, sounds like a known bug that has been fixed. Which version of MyFaces are you using? regards, Martin On 7/18/08, Roland Hammerle [EMAIL PROTECTED] wrote: Hi there, I have a page that contains two commandLinks: h:commandLink value=#{msgs.button_export}

Re: Session timeout results in javax.faces.application.ViewExpiredException

2008-07-18 Thread Martin Marinschek
Hi, yes, I would dare to say this is expected behaviour, if you do a post-back (if you execute a get-link, then this shouldn't happen). In your web-application, you will need to cover the case of a timed-out session appropriately. regards, Martin On 7/18/08, bansi [EMAIL PROTECTED] wrote: I

Re: Session timeout results in javax.faces.application.ViewExpiredException

2008-07-18 Thread Martin Marinschek
timeout so i guess its uses default timeout. A code snippet on how to do a post-back will be greatly appreciated Martin Marinschek wrote: Hi, yes, I would dare to say this is expected behaviour, if you do a post-back (if you execute a get-link, then this shouldn't happen). In your web

Re: SaveState and getViewRoot errors

2008-07-10 Thread Martin Marinschek
Hi Marcello, you are getting at the view-root in your m-bean constructor like this FacesContext.getCurrentInstance().getViewRoot(); ? This will return null in the cases where the view has not been created/set yet. The question is now when your constructor is called - you can easily debug your

Re: Using t:dataList with Ajax4JSF

2008-04-11 Thread Martin Marinschek
Hi Matt, attention - your fix will not always work as expected. What you effectively do is you evaluate the value-binding once, and then set the retrieved value locally. So the value-binding will only be evaluated on the _first_ request. You should also override the getters and setters, and do

Re: Can a JSF page be in database?

2008-04-11 Thread Martin Marinschek
... or component-binding! regards, Martin On 4/11/08, Rafa Pérez [EMAIL PROTECTED] wrote: I don't know what you want to achieve by reading the jsp from a database. If you need dinamically added pieces maybe you could use jsp:include, iframes or facelets ui:composition. On Fri, Apr 11, 2008

Re: ErrorPageWriter causes Facelets/MyFaces confusion

2008-04-10 Thread Martin Marinschek
Open a jira-issue. regards, Martin On 4/9/08, Michael Heß [EMAIL PROTECTED] wrote: Hi list, I just stumbled upon some weired problem. I have a rather basic myfaces 1.2.2 + facelets 1.1.3 setup. What I tried to achieve, is to NOT have either Facelets nor MyFaces handle any of the error 500

Re: commandButton action not executed

2008-04-08 Thread Martin Marinschek
Hi Scott, you need the rendered property to remain constant over requests. What you could do: - use t:saveState - use a conversation scope regards, Martin On Wed, Apr 2, 2008 at 7:15 PM, Scott Belnap [EMAIL PROTECTED] wrote: todoListBean is request scoped not session scoped. Is there

Re: orchestra conversation closed by stylesheet

2008-04-08 Thread Martin Marinschek
To sum it up: Orchestra is certainly not to blame here, this is a RichFaces bug. @Mario: your comment makes sense, we all should certainly try to work around bugs in other libraries! regards, Martin On Tue, Apr 1, 2008 at 12:38 AM, Scott O'Bryan [EMAIL PROTECTED] wrote: Configurators work off

Re: orchestra conversation closed by stylesheet

2008-04-08 Thread Martin Marinschek
@Mario: your comment makes sense, we all should certainly try to work around bugs in other libraries! cause else, our users will have to do it, and this we will want to prevent. regards, Martin

Re: Is it possible to have a renderer do its rendering at the end of the document?

2008-04-08 Thread Martin Marinschek
Short answer: no, not really. What I would do in your case is I would create a new component, and put it before the closing of your /body (or even create a new component which renders the body for you). Then the renderer can register the stuff it wants to render with this new component...

Re: OGNL with MyFaces - how to?

2008-04-08 Thread Martin Marinschek
MyFaces uses the unified EL - to my knowledge, nobody has ever tried to use it with the OGNL. It would certainly be worthwile trying to get it up and running, however, but there are quite a few locations in MyFaces where we refer to the unified EL API, so I am not sure if this is possible at all

Re: Trinidad FileUpload failing with Tomahawk Extension Filter

2008-03-18 Thread Martin Marinschek
No other features of Tomahawk will fail due to this... this is really a singular problem with the file-upload! regards, Martin On 3/18/08, Samba [EMAIL PROTECTED] wrote: Thanks for the advise... At least in my situation it did not break anything we currently have. And we do not use Tomahawk

Re: announcement: Orchestra Core 1.1 released

2008-03-13 Thread Martin Marinschek
Hi Simon, great! I hope to be able to use it soon... regards, Martin On Wed, Mar 12, 2008 at 8:00 AM, simon [EMAIL PROTECTED] wrote: The Apache MyFaces Orchestra team is pleased to announce the release of Apache MyFaces Orchestra Core 1.1. Apache MyFaces Orchestra is a library which

Re: Ajax + Inmediate=true Problem

2008-03-13 Thread Martin Marinschek
Hi Daniel, putting immediate=true to your input component will not be sufficient. The problem is that immediate=true will trigger the validation for your input-component, but nothing more than that. So what happens is your value is converted and validated, but not put into your managed bean. What

Re: Converter-For-Class : getAsObject does not get called

2008-03-13 Thread Martin Marinschek
Hi Michael, no, this is not a known problem. Can you please re-test carefully, and if you keep seeing this problem, file an issue? regards, Martin On Thu, Mar 13, 2008 at 3:40 PM, Michael Heß [EMAIL PROTECTED] wrote: Hi List, I'm having some strange issues with a custom converter I just

Re: iframe and saveState

2008-03-13 Thread Martin Marinschek
Hi Piotr, if you do not want session scope, how about some dialog/conversation-scope, like Orchestra? regards, Martin On Thu, Mar 13, 2008 at 5:59 PM, Piotr [EMAIL PROTECTED] wrote: any ideas please. Piotr wrote: Hi users, I'm trying to do file upload functionality kind

Re: inputFileUpload issue when file does not exists

2008-03-13 Thread Martin Marinschek
Hi jorge, the HTML file-upload behaviour in IE is severely flawed. What you could do is what Gmail is doing: just not display the file-entry-field at all, display a link which allows the user to choose the file, internally connect the link with the hidden file-input field via JavaScript, then the

Re: [Trinidad] subform defaultCommand

2008-03-04 Thread Martin Marinschek
Hi Matthias, it would certainly make sense, but the way the defaultCommand currently works, it exchanges the onkeypress-handler of the form. In the case of subforms, there is no HTML-element for which the default-command can be registered. regards, Martin On 3/3/08, Mathias Walter [EMAIL

Re: Doubt about ADF Faces Trinidad

2008-03-04 Thread Martin Marinschek
Yeah, it took a while to get Trinidad out of incubation, but I think that good stuff needs time to mature. The Apache folks take good care that no rubbish appears on their website and that all projects are with a healthy community driving them. Frankly - I am quite thankful for this. *

Re: Checkbox and required=true

2008-03-04 Thread Martin Marinschek
Hi Michael, you are on the right track - the required==true flag will not help in the case of the checkbox, as for checkboxes, JSF will _always_ set a value (either true or false, due to the problems you mentioned above - there is no way to distinguish between false and value not set at all...).

Re: tiles vs facelets

2008-03-04 Thread Martin Marinschek
Hi, there are no additional features in Facelets for templating - Facelets also offers dynamic, template-based components, however. regards, Martin On 2/25/08, aaa java [EMAIL PROTECTED] wrote: Hi I developed a sample application using JSF and tiles. Now I want to implement the same using

Re: MyFaces @PostConstruct and DI issue

2008-03-04 Thread Martin Marinschek
Hi Curtiss, I don't think Bernhard ever got around to commit something which works based on the discussion he had with Paul. Do you have a patch which takes this into consideration? @Bernhard: please, if you can spare a few hours, it would be great if you could close this out... regards,

Re: SERIALIZE_IN_SESSION with Sun Mojarra?

2008-03-04 Thread Martin Marinschek
Hi Simon, I think I remember from discussions before (haven't checked the source) that no, it doesn't serialize. regards, Martin On 2/22/08, Simon Kitching [EMAIL PROTECTED] wrote: Hi, Myfaces Core property SERIALIZE_IN_SESSION is true by default, meaning that when using server-side state

Re: FacesContext.getCurrentInstance() provoking StackTraceException on initialization

2008-03-01 Thread Martin Marinschek
The comment is a bit wrong - the method is present in JSF1.2, not in JSF 1.1 ;) regards, Martin 2008/2/28 Bruno Aranda [EMAIL PROTECTED]: The problem seems to be that the orchestra FacesContextWrapper does not implement/override the getELContext(), the code was commented out. (seems to cause

Re: Re: [core] MyFaces 1.2.2 and t:saveState problem

2008-02-25 Thread Martin Marinschek
Could you guys open an issue with a small sample app reproducing the issue? regards, Martin On Thu, Feb 21, 2008 at 9:50 PM, Zheng, Xiahong [EMAIL PROTECTED] wrote: Was there any resolution on this problem? I start seeing problem as well with MyFaces 1.2.2 and t:saveState. If I switch to RI

[OFFTOPIC] Reminder: JSFDays Vienna

2008-02-13 Thread Martin Marinschek
Hi all, we'd like to invite you to a JSF conference in Vienna, Austria from 12-14th of March. Anyone who wants to register as an attendee? Here is the link: http://conference.irian.at - click on preregister. Attendees will pay a very small conference fee - 100€. Speaker slots are pretty much

Re: [core] MyFaces 1.2.2 and t:saveState problem

2008-02-12 Thread Martin Marinschek
Hi Werner, nothing has been enabled by default. regards, Martin On Feb 12, 2008 12:02 PM, Werner Punz [EMAIL PROTECTED] wrote: context-param descriptionDefine partial state saving as true/false./description param-namejavax.faces.PARTIAL_STATE_SAVING_METHOD/param-name

Re: MyFaces and templates

2008-02-08 Thread Martin Marinschek
Hi Ognjen, use Facelets, Shale-Clay or JSF-Templating. regards, Martin On 2/8/08, Ognjen Blagojevic [EMAIL PROTECTED] wrote: Hi all, Is there an integrated templating solution for MyFaces? Or one should use independant framework like Facelets? Regards, Ognjen --

Re: License Question: web-facesconfig.dtd for MyFaces Impl 1.2 Jar

2008-02-07 Thread Martin Marinschek
Ah right, we retyped them - so notice.txt should not refer to this anymore at all. regards, Martin On 2/7/08, Matthias Wessendorf [EMAIL PROTECTED] wrote: Hey, However, these files have been licensed to the ASF using an ASL-license by Sun, kudos to one of the Apache Committers who also

Re: Portlet Environment and Orchestra

2008-02-07 Thread Martin Marinschek
If you wrap the FacesContext, then maybe when FacesContext.release is called? regards, Martin On 2/7/08, Mario Ivankovits [EMAIL PROTECTED] wrote: Hi! The short answer to your question is no, the bridge won't help you here. Portlet 1.0 didn't define support for filters or wrapping

Re: Custom DataScroller (t:dataScroller)

2008-02-07 Thread Martin Marinschek
time. Tathagat On 2/6/08, Martin Marinschek [EMAIL PROTECTED] wrote: Hi Tathagat, I am very sorry, but I do not understand where you are heading. Why should the second scroller have all data then? I really don't get your explanation. regards, Martin On Feb 1, 2008 4:18 PM

Re: MyFaces 1.1.5 Strange validation behaviour

2008-02-07 Thread Martin Marinschek
PROTECTED]: Sorry for not being explicit by enter I ment navigating there by actions. When I'm on the page clicking refresh in browser causes the same behaviour - sometimes the correct value is shown, and sometimes the rejected one. Regards Adam 2008/2/7, Martin Marinschek [EMAIL

Re: License Question: web-facesconfig.dtd for MyFaces Impl 1.2 Jar

2008-02-07 Thread Martin Marinschek
. Barb -Original Message- From: Martin Marinschek [mailto:[EMAIL PROTECTED] Sent: Thursday, February 07, 2008 3:41 AM To: MyFaces Discussion Subject: Re: License Question: web-facesconfig.dtd for MyFaces Impl 1.2 Jar Ah right, we retyped them - so notice.txt should not refer

Re: what is this thing?

2008-02-06 Thread Martin Marinschek
Hi Lukasz, you should try it with MyFaces 1.2.2 for JSP 2.1. regards, Martin On Mon, Feb 4, 2008 at 8:57 PM, Łukasz Budnik [EMAIL PROTECTED] wrote: Hi All! What a strange error occurred to me when I tried to run a simple web app (MyFaces version 1.1.5 - available at

Re: MyFaces and Tiles

2008-02-06 Thread Martin Marinschek
There is a sample app which shows the interaction - myfaces-tiles in the myfaces-source-tree. Did you check this out? regards, Martin On Sat, Feb 2, 2008 at 5:36 PM, Jonathan Fullam [EMAIL PROTECTED] wrote: Hello, I've been unsuccessfully trying to integrate tiles 2.0.5 with MyFaces 1.2.

Re: Upgrading from myfaces 1.6 to 2.2?

2008-02-06 Thread Martin Marinschek
Feb 2008 10:21:32 + Bruno Aranda [EMAIL PROTECTED] wrote: Yes, I do use the same combination, it even works in Tomcat 5.5 if you are using facelets. On 01/02/2008, Martin Marinschek [EMAIL PROTECTED] wrote: Hi BTJ, for me, tomahawk 1.1.5 works

Re: MyFaces-Orchestra-ViewController : NullpointerException

2008-02-06 Thread Martin Marinschek
Hi Mario, just shooting into the dark: do you have a phase-listener registered before restore-view for Orchestra? This phase-listener will not be called in the portlet-case if only rendering is executed. regards, Martin On 2/6/08, Matthias Wessendorf [EMAIL PROTECTED] wrote: Hi Mario,

Re: MyFaces 1.1.5 Strange validation behaviour

2008-02-06 Thread Martin Marinschek
Hi Adam, do you use component-binding with a session-scoped bean? regards, Martin On Feb 5, 2008 8:04 PM, Adam Perlik [EMAIL PROTECTED] wrote: Hi, I have a jsp page with text input on it and a long range validator (0 to 99) connected with that field. Now I run the following scenario:

Re: Custom DataScroller (t:dataScroller)

2008-02-06 Thread Martin Marinschek
Hi Tathagat, I am very sorry, but I do not understand where you are heading. Why should the second scroller have all data then? I really don't get your explanation. regards, Martin On Feb 1, 2008 4:18 PM, Tathagat [EMAIL PROTECTED] wrote: Hi All. Current data scroller gives a paginator in

Re: inputHtml

2008-02-06 Thread Martin Marinschek
I have a fix for this problem - please open an issue, I will commit it. regards, Martin On Feb 5, 2008 4:54 AM, Ken McArthur [EMAIL PROTECTED] wrote: Attempting to upgrade from myfaces 1.1.5 to 1.2.2 and all works great except for inputHtml. Using myfaces 1.2.2, tomahawk 1.1.6, facelets

Re: submitOnEvent callback

2008-02-06 Thread Martin Marinschek
adding a onsubmit=javascript code that can return true/false. Thanks. dave *Martin Marinschek [EMAIL PROTECTED]* wrote: I have prepared a fix and will commit it, if someone (Dave?) provides me with an issue-number ;) regards, Martin On 2/1/08, Martin Marinschek wrote: Hi guys

Re: inputHtml

2008-02-06 Thread Martin Marinschek
On Feb 6, 2008 1:14 PM, Martin Marinschek [EMAIL PROTECTED] wrote: I have a fix for this problem - please open an issue, I will commit it. regards, Martin On Feb 5, 2008 4:54 AM, Ken McArthur [EMAIL PROTECTED] wrote: Attempting to upgrade from myfaces 1.1.5 to 1.2.2

Re: [Trinidad] Tags aren't getting rendered (but I can see them when I go to view-source)

2008-02-06 Thread Martin Marinschek
The Faces-Servlet might not be triggered properly, and you might end up viewing the pages directly. In facelets, the tag-libs might not be found. regards, Martin On Feb 7, 2008 6:15 AM, Richard Yee [EMAIL PROTECTED] wrote: Hi, I am using Trinidad 1.0.5 and MyFaces 1.1.5 with JDeveloper

Re: inputHtml

2008-02-06 Thread Martin Marinschek
Thanks again and have a great day, Ken On Feb 6, 2008 5:21 PM, Martin Marinschek [EMAIL PROTECTED] wrote: http://myfaces.apache.org/issue-tracking.html regards, Martin On Feb 7, 2008 1:08 AM, Ken McArthur [EMAIL PROTECTED] wrote: Martin, That's very cool you found

Re: inputHtml

2008-02-06 Thread Martin Marinschek
P.S.: it als helps if you send me a mail with the link to the issue. regards, Martin On Feb 7, 2008 7:57 AM, Martin Marinschek [EMAIL PROTECTED] wrote: Hi Ken, as far as I can tell, you have been reporting a bug for Tomahawk - so it should have a TOMAHAWK- issue key. I deleted the issue

Re: License Question: web-facesconfig.dtd for MyFaces Impl 1.2 Jar

2008-02-06 Thread Martin Marinschek
They should be included - I see: web-facesconfig_1_0.dtd web-facesconfig_1_1.dtd and web-facesconfig_1_2.xsd in the source under impl/src/main/resources However, these files have been licensed to the ASF using an ASL-license by Sun, kudos to one of the Apache Committers who also works at Sun

Re: Serialization issue with app scoped beans referenced by session scoped beans

2008-02-06 Thread Martin Marinschek
Hi Simon, Spring's aop:scoped-proxy/ might help - if it is serializable, and retrieves the beanFactory on deserialization. However, it doesn't do it right now; I think - but we discussed with Jürgen once, and maybe it will be supported in the future. I doubt the JSF managed-bean facility is

Re: Question about filling page objects

2008-02-01 Thread Martin Marinschek
Are you using JSF1.2? Check out f:setPropertyActionListener for changing from a list-page to a detail-page. regards, Martin On 2/1/08, Martyn Hiemstra [EMAIL PROTECTED] wrote: Hi All My company has chosen to use jsf in a new project. I myself am used to SpringMVC which works perfectly for

Re: Upgrading from myfaces 1.6 to 2.2?

2008-02-01 Thread Martin Marinschek
Are you using Tomcat 6? You need a JSP 1.2.1 compatible container. Also, we are using Tiles2 now - you would need to upgrade this as well. regards, Martin On 2/1/08, Bjørn T Johansen [EMAIL PROTECTED] wrote: Is there something I need to do to upgrade? I am using Spring, Tiles, and myfaces

Re: submitOnEvent callback

2008-02-01 Thread Martin Marinschek
I have prepared a fix and will commit it, if someone (Dave?) provides me with an issue-number ;) regards, Martin On 2/1/08, Martin Marinschek [EMAIL PROTECTED] wrote: Hi guys, the clue is that restoreState/saveState was implemented wrongly in submitOnEvent - another reason to get

Re: submitOnEvent callback

2008-02-01 Thread Martin Marinschek
Hi guys, the clue is that restoreState/saveState was implemented wrongly in submitOnEvent - another reason to get the component-generator up and running. This is the erronous code - it uses the getter to access the component-attributes (and will therefore store the return-value of the method as

Re: Upgrading from myfaces 1.6 to 2.2?

2008-02-01 Thread Martin Marinschek
Hi Matthias, right - sorry, Tomahawk hasn't been released so far. regards, Martin On 2/1/08, Matthias Wessendorf [EMAIL PROTECTED] wrote: Also, we are using Tiles2 now - you would need to upgrade this as well. that is in tomahawk, right ? regards, Martin On 2/1/08, Bjørn T

Re: Upgrading from myfaces 1.6 to 2.2?

2008-02-01 Thread Martin Marinschek
:37:20 +0100 Martin Marinschek [EMAIL PROTECTED] wrote: Hi Matthias, right - sorry, Tomahawk hasn't been released so far. regards, Martin On 2/1/08, Matthias Wessendorf [EMAIL PROTECTED] wrote: Also, we are using Tiles2 now - you would need to upgrade this as well

Re: [tomahawk] oamSubmitForm causes parse error

2008-01-31 Thread Martin Marinschek
No ideas, no patches. Is it the which is not liked by the parser? regards, Martin On Thu, Jan 31, 2008 at 6:33 PM, Michael Heinen [EMAIL PROTECTED] wrote: I am using myFaces in combination with ajax4jsf (or richfaces) and tried to use the Nekko Parser (or Neko?) in the richfaces filter to

Re: Can I use MyFaces Tomahawk 1.1.6 with MyFaces Core 1.1.5?

2008-01-31 Thread Martin Marinschek
Yes, it should work. regards, Martin On Thu, Jan 31, 2008 at 10:41 PM, merkas [EMAIL PROTECTED] wrote: Hello, can I use MyFaces Tomahawk 1.1.6 with MyFaces Core 1.1.5? Because in the in the http://wiki.apache.org/myfaces/CompatibilityMatrix compatibility matrix ther is no entry.

Re: Checking Event Queue inside Value Change Listener

2008-01-31 Thread Martin Marinschek
Hi Mihajlo, you would need to override the UIViewRoot component and its method queueEvent - in this method, you could keep a list of events, and then check if there is more to come in your value-change-listener. There is no public API to do this in the standard UIViewRoot, so no chance otherwise.

Re: [Trinidad] Configuring debug-output in trinidad-config.xml with EL-expression

2008-01-30 Thread Martin Marinschek
Hi Harald, well, the FacesContext is only created in the FacesServlet, and obviously, in the filter, you are before this creation. It might be possible to patch the Trinidad-Filter to create a FacesContext and release it to properly evaluate these properties. Maybe the Trinidad-Filter could also

Re: JSF pages rendering 4 times more slowly in IE7 than Firefox

2008-01-30 Thread Martin Marinschek
Are you using any javascript libraries? Dojo? regards, Martin On 1/30/08, Simon Kitching [EMAIL PROTECTED] wrote: caped crusader [EMAIL PROTECTED] schrieb: Hi I have a JSF application with some quite unusual performance problems. Loading pages in IE7 takes 4 times as long as in

Re: performance comparison between 1.1.5 and 1.2.2?

2008-01-30 Thread Martin Marinschek
Hi Simon (and Mario) Yes, definitely. This is just a block of verbatim text, which is written out very efficiently. Using a component to write the same text is much slower and gains nothing. well - not quite. in JSF1.2, every static text in your app will be converted to a JSF-component. So

Re: [Trinidad] Configuring debug-output in trinidad-config.xml with EL-expression

2008-01-30 Thread Martin Marinschek
: Amtsgericht Offenbach/Main, HRB 8119 -Original Message- From: Martin Marinschek [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 30, 2008 11:58 AM To: MyFaces Discussion Subject: Re: [Trinidad] Configuring debug-output in trinidad-config.xml with EL-expression Hi Harald

Re: JBoss Portal and encodeNamespace

2008-01-30 Thread Martin Marinschek
Hi Luca, it would be great if you could open an issue - and maybe you could solve this generally by doing some encoding of the problematic characters - whatever this encoding might be. If you attach a patch to the issue, it might as well be committed ;) regards, Martin On 1/30/08, Luca

Re: [Trinidad] Configuring debug-output in trinidad-config.xml with EL-expression

2008-01-30 Thread Martin Marinschek
Hi Matthias, did you see Harald's quote from the Trinidad docs? I'm including it here again: quote Apache Trinidad is configured with an trinidad-config.xml file. If you need an trinidad-config.xml file then it must be placed in the WEB-INF directory of your web application. This file has a very

Re: [Trinidad] Configuring debug-output in trinidad-config.xml with EL-expression

2008-01-30 Thread Martin Marinschek
Hey Andy, I believe you are correct - ie. the doc is not accurate. Looking at RequestContextBean.java, it seems that the following properties cannot be EL-bound: ... I think we should mark this as not-bindable and update the doc accordingly. However, I do not buy Matthias argument that

Re: [Trinidad] Configuring debug-output in trinidad-config.xml with EL-expression

2008-01-30 Thread Martin Marinschek
Oh, well - this fix sounds really simple then. regards, Martin On Thu, Jan 31, 2008 at 12:38 AM, Andy Schwartz [EMAIL PROTECTED] wrote: On Jan 30, 2008 5:45 PM, Martin Marinschek [EMAIL PROTECTED] wrote: However, I do not buy Matthias argument that this is due to security reasons

Re: JBoss Portal and encodeNamespace

2008-01-30 Thread Martin Marinschek
Perfect - than this should be an issue for JBoss Portal. regards, Martin

Re: Get pixel size from left: attribute via getter

2008-01-29 Thread Martin Marinschek
IntelliJ doesn't realize this is allowed syntax - just ignore the error message of IntelliJ in this case! It should work anyways. regards, Martin On Jan 23, 2008 9:19 AM, Wolfgang [EMAIL PROTECTED] wrote: Hi Andrew, if I try to access my int variable from the backing bean, which has

Re: Re: Re: [Trinidad] tr:form/subform issue: form fields not passed

2008-01-18 Thread Martin Marinschek
very strange - both fields are trinidad-fields? regards, Martin On 1/17/08, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: FYI ..the problem was a side effect of an input component actually consisting of two input media, one being an input field and the other a select field, and both

Re: Is it possible to use AddResource with my own components?

2008-01-16 Thread Martin Marinschek
Thanks a lot! regards, Martin On 1/16/08, David Delbecq [EMAIL PROTECTED] wrote: http://wiki.apache.org/myfaces/External_Resources :) En l'instant précis du 15/01/08 21:33, Martin Marinschek s'exprimait en ces termes: Hi David, would you be willing - if time permits - to post a short

Re: Is it possible to use AddResource with my own components?

2008-01-15 Thread Martin Marinschek
Hi David, would you be willing - if time permits - to post a short outline of your solution on our Wiki? Thanks very much in advance! regards, Martin On Jan 12, 2008 2:33 PM, David Delbecq [EMAIL PROTECTED] wrote: Did here, nothing difficult or fancy about it. Just use the

[OFFTOPIC] JSF Days Vienna

2008-01-11 Thread Martin Marinschek
Hi *, I'd like to repeat my invitation to come to the JSF Days Vienna - the program promises to be very interesting, and we have a lot of attendees already - we are sure it will be an exciting conference for everyone. The 3-day conference costs 100€, and you will meet a lot of people working

Re: h:outputText converters and null objects

2008-01-04 Thread Martin Marinschek
The converter does not get activated when the value is null? If this doesn't work in the RI, it is clearly a bug in the RI... regards, Martin On 1/4/08, MC PHERSON Sandy [EMAIL PROTECTED] wrote: Hi I have switched to using the Sun-RI because of a bug in the Weblogic Portal 10 JSF portlet

Re: [Trinidad] Are compatibles Trinidad and Tobago?

2007-12-20 Thread Martin Marinschek
Hi Rafa, Tomahawk should be compatible, Tobago is not. regards, Martin On 12/18/07, Rafa Pérez [EMAIL PROTECTED] wrote: Hello all, I am developing an application based on MyFaces 1.1.5, Trinidad 1.1.4 and JBoss Seam. I have been browsing MyFaces' project stack and have found some

Re: problems with t:commandLink

2007-12-20 Thread Martin Marinschek
what version did you upgrade to? what servlet container version are you using? (if MyFaces 1.2, you'll need Tomcat 6) regards, Martin On 12/20/07, Jörg Niepenberg [EMAIL PROTECTED] wrote: Hello all, i recently updated my MyFaces libs. Now all the h:blabla wont work anymore and i get this

Re: How to Hack the HtmlFormRenderer?

2007-12-16 Thread Martin Marinschek
Hi ole, what form are you using? h:form or s:form? If you are using h:form, then you'll be working against: org/apache/myfaces/shared_impl/renderkit/html/HtmlFormRendererBase.java In any case, you are right, they stem from the same source in: org.apache.myfaces.shared.renderkit.html - you

Re: t:saveState

2007-12-13 Thread Martin Marinschek
Hi Simon, serialization should not be necessary - it should work without (if restoreState/saveState get called at least, and that should happen for any recent version of the RI). @shyamprasad: in the very first versions of the RI the stateSaving/Restoring was not processed - which version of the

Re: Getting all currently loaded managed beans in a phase listener

2007-12-13 Thread Martin Marinschek
Hi Todd, yes, but if you are using Spring for your service beans, you can easily use it also for your JSF managed beans. The suggestion of Gerald and Simon was - don't use the JSF managed bean facility at all, use only spring beans (since spring 2.0, you can scope them with

[OFFTOPIC] JSFDays Vienna

2007-10-25 Thread Martin Marinschek
Hi all, we'd like to invite you to a JSF conference in Vienna, Austria from 12-14th of March. Anyone who wants to present a session or (pre-)register as an attendee? Here is the link: http://conference.irian.at - click on preregister. Attendees will pay a very small conference fee - 100€

Re: optional validator - missing rendered attribute

2007-10-24 Thread Martin Marinschek
Hi Mike, Michael, you should not use component-bindings with session-scoped beans - if you take a look at Orchestra, you can however find a way how to embed a request-scoped bean into a session-scoped bean, and put your component-bindings there. Looking forward to JSF 2.0, I would not use

Re: MyFaces for production? Not even conformance with HTML 4.01?

2007-10-24 Thread Martin Marinschek
Hi Stefan, if you want to use 1.2, you should currently use 1.2.1-SNAPSHOT. There are several major bugs in 1.2 which have been fixed in the meantime. The problem with the value-expressions I cannot reproduce - are you talking about Tomahawk there? @warnings in the produced HTML: I can't follow

Re: optional validator - missing rendered attribute

2007-10-24 Thread Martin Marinschek
, Matthias Wessendorf [EMAIL PROTECTED] wrote: are some docs on that out there ? On 10/24/07, Martin Marinschek [EMAIL PROTECTED] wrote: Hi Mike, Michael, you should not use component-bindings with session-scoped beans - if you take a look at Orchestra, you can however find a way how to embed

Re: Conformance with HTML 4.01?

2007-10-24 Thread Martin Marinschek
: Martin Marinschek [EMAIL PROTECTED] schrieb: @warnings in the produced HTML: I can't follow you there - both the RI and MyFaces produce ids of the form _id42, so I don't see how this would be different between the implementations? This is an interesting point. The HTML401 spec does say

Re: Exception from MyFaces JSF 1.2 and Weblogic Portal 10 whilst using SUN RI 1.2

2007-10-19 Thread Martin Marinschek
Bear in mind that running MyFaces 1.2.0 offline is not possible - this is a bug. it is possible however to run MyFaces 1.2.1-SNAPSHOT offline. You cannot download the snapshot, however, as the MyFaces snapshots are not available. You can only checkout the head-version and build it yourself (this

Re: [Announce] Release of Apache MyFaces Orchestra 1.0

2007-10-12 Thread Martin Marinschek
Yeah!! regards, Martin On 10/12/07, Mario Ivankovits [EMAIL PROTECTED] wrote: The Apache MyFaces Orchestra team is pleased to announce the release of Apache MyFaces Orchestra Core 1.0. Apache MyFaces Orchestra is a library which introduce a new scope called conversation scope to your web

Re: Daily Builds

2007-10-11 Thread Martin Marinschek
Hi Timm, there has been a recent mail to the dev-list about this. Also the maven snapshot builds are missing. I'm forwarding to dev as well. regards, Martin On 10/9/07, Timm Helbig [EMAIL PROTECTED] wrote: Hi, the link to the Nightly Builds from the Trinidad Download page is leading to old

Re: inputTextHelp value if no change

2007-10-11 Thread Martin Marinschek
Hi Dave, yes, this is a bug - the field should automatically remove the help text and set it to null (at least this is how I intended it). regards, Martin On 10/10/07, Dave [EMAIL PROTECTED] wrote: t:inputTextHelp value=#{bean.value} helpText=Please input a name/ if user does not input

Re: curious decode problem

2007-10-11 Thread Martin Marinschek
Very interesting - wouldn't see what would cause this. Can you debug through the first phase of JSF (restore-view) to see what happens? In the end, the state will be restored if you do have a javax.faces.ViewState parameter send along, and this parameter can properly be decrypted into an

Re: Behaviour of JSF related to renderer instances

2007-10-04 Thread Martin Marinschek
Hi Simon, David, it's of course 2 ;) regards, Martin On 10/1/07, Simon Kitching [EMAIL PROTECTED] wrote: David Delbecq [EMAIL PROTECTED] schrieb: Hello, I have a quite technical question related to Renderers in JSF. When several components references the same Renderers, what's

Re: Behaviour of JSF related to renderer instances

2007-10-04 Thread Martin Marinschek
Well, not quite: it is one renderer-instance per application, per renderer-type and component-family. regards, Martin On 10/4/07, Martin Marinschek [EMAIL PROTECTED] wrote: Hi Simon, David, it's of course 2 ;) regards, Martin On 10/1/07, Simon Kitching [EMAIL PROTECTED] wrote

Re: Errors and Messages

2007-09-29 Thread Martin Marinschek
Hi Daniel, there is no filtering available on the component - you'd need to write a new renderer. regards, Martin On 9/28/07, daniel ccss [EMAIL PROTECTED] wrote: Anyone?? On 9/26/07, daniel ccss [EMAIL PROTECTED] wrote: Thanks, but how can I have two h:messages one for errors and one

Re: [Trinidad] selectOneChoice with autoSubmit problem

2007-09-28 Thread Martin Marinschek
Hi Stephen, do this: tr:form id=departmentForm tr:selectOneChoice id=departments label=Department value=#{scoreEntryHome.department} autoSubmit=true s:selectItems

Re: [Trinidad] selectOneChoice with autoSubmit problem

2007-09-28 Thread Martin Marinschek
Oh, right. Wonder why Stephen's solution finally works then? regards, Martin On 9/28/07, Matthias Wessendorf [EMAIL PROTECTED] wrote: tr:form isn't a namingcontainer On 9/28/07, Martin Marinschek [EMAIL PROTECTED] wrote: Hi Stephen, do this: tr:form id=departmentForm

Re: [Trinidad] selectOneChoice with autoSubmit problem

2007-09-28 Thread Martin Marinschek
. Also currently individual component messages are not shown as a result of PPR. tr:form isn't a namingcontainer On 9/28/07, Martin Marinschek [EMAIL PROTECTED] wrote: Hi Stephen, do this: tr:form id=departmentForm tr:selectOneChoice id

Re: [Trinidad] selectOneChoice with autoSubmit problem

2007-09-28 Thread Martin Marinschek
Does the subform then have a prependId attribute? regards, Martin On 9/28/07, Matthias Wessendorf [EMAIL PROTECTED] wrote: On 9/28/07, Martin Marinschek [EMAIL PROTECTED] wrote: @Stephen: tr:subform is a naming-container? ok. interesting. wonder why. that allows you to reuse IDs inside

Re: Orchestra Question / another solution?

2007-09-28 Thread Martin Marinschek
I wouldn't call spring-webflow too complicated in comparison to Orchestra - but what you can't do with spring-webflow is to handle the underlying JPA-persistence context out of the box, you can do that with Orchestra. regards, Martin On 9/28/07, Simon Kitching [EMAIL PROTECTED] wrote: See here

Re: General JSF Question regarding duplicate component ID

2007-09-27 Thread Martin Marinschek
Hi CD, Volker, in MyFaces this isn't necessary anymore - and hasn't been for over a year. If you are using Facelets, though - there is a bug in Facelets with Facets handling (so with unique ids of components in Facets), which has only been resolved after the last production release (so 1.11.

Re: error page not working in MF 1.2?

2007-09-27 Thread Martin Marinschek
Hi Piotr, can you please open an issue, and attach a small sample app? regards, Martin On 9/27/07, Piotr [EMAIL PROTECTED] wrote: Hi users, I have upgraded recently MF to 1.2 version and I'm facing strange situation where in case of error with 500 code instead of my custom error page

Re: [Trinidad] tr:iterator

2007-09-27 Thread Martin Marinschek
May I also suggest to look at t:dataList? regards, Martin On 9/28/07, William Gosse [EMAIL PROTECTED] wrote: I've seen tr:iterator not behave well when laying out commandLinks horizontally. I've had much better luck with the Facelets ui:repeat tag for this kind of stuff. Unfortunately

Re: pls help with exception

2007-09-24 Thread Martin Marinschek
Hi guys, don't want to sound pedantic, but please stay in English while discussing here on the list - except you mark the conversation clearly as off-topic and explain why you have to write in a language apart from English. regards, Martin On 9/24/07, Alonso Isidoro Roman [EMAIL PROTECTED]

  1   2   3   4   5   6   7   8   9   10   >