Re: h:outputStylesheet

2012-06-12 Thread Martin Koci
Hi, it is not possible to use / in library name. Try 1) outputStylesheet library=css name=test/my.css 2) or set context param org.apache.myfaces.STRICT_JSF_2_ALLOW_SLASH_LIBRARY_NAME to true José Luis Cetina píše v Út 12. 06. 2012 v 15:00 -0500: If i use outputStylesheet

Re: Weird partial-response behavior with 2 partial-response tags

2012-06-11 Thread Martin Koci
Thomas Andraschko zoi...@googlemail.com Maybe if lazy loading fails? 2012/2/23 Martin Koci martin.kocicak.k...@gmail.com Yes, that's a problem. We can force solution for this for JSF 2.2. But: in normal MVC application the render response phase reads only values from beans

Re: EL Resolver throws InvocationTargetException (char-long conversation)

2012-06-10 Thread Martin Koci
Hi, this is not a Myfaces issue, but bug in EL implementation. You can see org.apache.el.lang in stack = tomcat EL implementation. Do you use tomcat 7.0.8 or WAS 8.0.02? If so, please upgrade. See [1] [2] and [3] for details. [1] https://issues.apache.org/jira/browse/MYFACES-3533 [2]

Re: Clear Input Components after validation or conversion error with JSF 2.1

2012-03-28 Thread Martin Koci
(PhaseEvent pe) { } @Override public PhaseId getPhaseId() { return PhaseId.RESTORE_VIEW; } } Am 26.03.2012 17:22, schrieb Martin Koci: Hi, normal JSF behaviour (as you already know) is preserving and resdisplaying the invalid input to allow re

Re: Clear Input Components after validation or conversion error with JSF 2.1

2012-03-26 Thread Martin Koci
Hi, normal JSF behaviour (as you already know) is preserving and resdisplaying the invalid input to allow re-type it later, for example: '12-14-21 can be understood as date': a user can fix it with minimal effort only by removing two additional zeros. The classic solution for your problem

Re: Weird partial-response behavior with 2 partial-response tags

2012-02-23 Thread Martin Koci
Hi, your exception comes from render response phase, right? see [1]. It is a know problem but not solveable know - it requires specification change I think. Regards, Kočičák [1] https://issues.apache.org/jira/browse/MYFACES-3191 Thomas Andraschko píše v Čt 23. 02. 2012 v 14:51 +0100:

Re: Weird partial-response behavior with 2 partial-response tags

2012-02-23 Thread Martin Koci
can be fixed during development but what about other exceptions? Regards, Thomas 2012/2/23 Martin Koci martin.kocicak.k...@gmail.com Hi, your exception comes from render response phase, right? see [1]. It is a know problem but not solveable know - it requires specification

Re: Logging in Myfaces 2.0

2012-01-17 Thread Martin Koci
Hi, this is related to [1] and generally to [2]. I suppose that you have ActionListener like this: h:commandButton actionListener=#{testBean.processAction}/ public void processAction(ActionEvent event) throws AbortProcessingException { throw new NullPointerException(); }

Re: Weird PlexusContainer object in ViewRoot

2011-12-30 Thread Martin Koci
Hi, Plexus container is a IoC container used by Maven, so this must be bug/feature in maven jetty plugin in combination with statelessjsf. Do you deploy it with mvn jetty:run? Regards, Kočičák Thomas Andraschko píše v Út 27. 12. 2011 v 15:00 +0100: Hi, i'm trying to use the statelessjsf

Re: How to troubleshoot ViewExpiredException ?

2011-12-30 Thread Martin Koci
Hi, I had similar problem once and it was caused by combination of unhandled exception + ajax-error. When exception occurs in partial/ajax request/respose (for example SQL exception), JSF send back to client XML with following structure: partial-response error error-name.../error-name

Re: Weird PlexusContainer object in ViewRoot

2011-12-30 Thread Martin Koci
:) Thomas 2011/12/30 Martin Koci martin.kocicak.k...@gmail.com Hi, Plexus container is a IoC container used by Maven, so this must be bug/feature in maven jetty plugin in combination with statelessjsf. Do you deploy it with mvn jetty:run? Regards, Kočičák Thomas Andraschko

Re: MyFaces installation help

2011-12-30 Thread Martin Koci
Hi, what problem (exception?) do you have? Using myfaces + richfaces on tomcat 6 is very easy, you can try richfaces examples [1] and activate maven profile 'myfaces' Regards, Kočičák [1] https://github.com/richfaces/dev-examples jiminssy píše v Pá 30. 12. 2011 v 05:04 -0800: I am really a

Re: Problems with ui:fragment with version 2.0.7 and 2.1.1

2011-08-25 Thread Martin Koci
Hi, can you create a jira issue for this, please? I think there are some similar issues with ui:fragment and rendered so we can with fix them all at once. The main problem here is that rendered attribute was omitted in jsf 2.0 [1], but is specified in JSF 2.1. Regards, Kočičák [1]

Re: Problems with ui:fragment with version 2.0.7 and 2.1.1

2011-08-25 Thread Martin Koci
, Leonardo Uribe 2011/8/25 Martin Koci martin.kocicak.k...@gmail.com: Hi, can you create a jira issue for this, please? I think there are some similar issues with ui:fragment and rendered so we can with fix them all at once. The main problem here is that rendered attribute was omitted

RE: MyFaces - Thread issues under High load

2011-07-25 Thread Martin Koci
... LieGrue, strub --- On Mon, 7/4/11, Martin Koci martin.kocicak.k...@gmail.com wrote: From: Martin Koci martin.kocicak.k...@gmail.com Subject: Re: MyFaces - Thread issues under High load To: MyFaces Discussion users@myfaces.apache.org Date: Monday, July 4, 2011, 7:29 PM Hi, what

Re: Trinidad2/JSF2/Facelets

2011-07-18 Thread Martin Koci
Hi, can you post please content of faces-config.xml and trindiad-config.xml? Also please list all libraries deployed with your application; or ideally provide simple complete project to reproduce your problem. that anyone is using trinidad2 (with facelets) really... I am using it - but I use

Re: mvn source compilation problem [Trinidad]

2011-07-18 Thread Martin Koci
Hi, you don't have javac on bin path; Does javac command output (in bash shall) anything? Please set up maven according [1], section Unix-based Operating Systems (Linux, Solaris and Mac OS X) [1] http://maven.apache.org/download.html omid p píše v Ne 17. 07. 2011 v 15:28 +0430: Hi, While

Re: File upload and Richfaces or alternatives

2011-07-12 Thread Martin Koci
Hi, I use Richfaces upload with myfaces without problem. There was a issue [1], but it is solved now. This can be caused by [2], can you post snippet of view and web.xml of your project, please ? Regards, Kočičák [1] https://issues.jboss.org/browse/RF-10128 [2]

Re: MyFaces - Thread issues under High load

2011-07-04 Thread Martin Koci
Hi, what is [STUCK] thread? Is that something special from WebLogic thread pooler? All threads are accessing same java.beans.PropertyDescriptor.getReadMethod but this method is synchronized. So one on them is holding java.beans.PropertyDescriptor instance as monitor and the others are trying

Re: ViewExpiredException in MyFaces 2.0.6

2011-06-25 Thread Martin Koci
Hi, Hamed Iravanchi píše v So 25. 06. 2011 v 17:42 +0430: Hi, I'm getting ViewExpiredSession by clicking on any button in my pages after upgrading MyFaces 2.0.5 to 2.0.6. My pages have multiple forms, any button in any of them raises the same error. This is probably related to:

Re: What is wrong with Trinidad's download example?

2011-06-18 Thread Martin Koci
}/ /tr:commandLink /tr:document --% /f:view /body /html Martin Koci-2 wrote: I don't understand (and I'm not the only one) what you want really. 1) with tr:document and tr:form is your example working. If you still has problem, please provide

Re: What is wrong with Trinidad's download example?

2011-06-18 Thread Martin Koci
, if is it working for you! jitechno píše v So 18. 06. 2011 v 09:43 -0700: Martin, for this example I have mext result, Loot at http://old.nabble.com/file/p31875986/result.jpg printscreen regards Martin Koci-2 wrote: jitechno píše v So 18. 06. 2011 v 07:05 -0700: Martin, my

Re: What is wrong with Trinidad's download example?

2011-06-18 Thread Martin Koci
, download1. jsp (this is a mirror of your example) Thanks Oleg http://old.nabble.com/file/p31876159/TrinidadUpload1.zip TrinidadUpload1.zip Martin Koci-2 wrote: Well, it looks like the same issue for me: please post (attach or upload) full project if possible including: faces

Re: What is wrong with Trinidad's download example?

2011-06-17 Thread Martin Koci
Hi, jitechno píše v Pá 17. 06. 2011 v 01:41 -0700: Scott, may be, there is a little misunderstanding. My question is not about debugging and reverse engineering, but about general approach. I am trying realize example from official Trinidad's page. At least, I am considering as official. Am I

Re: What is wrong with Trinidad's download example?

2011-06-17 Thread Martin Koci
, at 5:20 AM, Martin Koci martin.kocicak.k...@gmail.com wrote: Hi, jitechno píše v Pá 17. 06. 2011 v 01:41 -0700: Scott, may be, there is a little misunderstanding. My question is not about debugging and reverse engineering, but about general approach. I am trying realize example

Re: Tomahawk, Trinidad or Tobago

2011-06-08 Thread Martin Koci
Hi, I tried you project and: 1) faces-config.xml is wrong, it needs faces-config as root element, not root 2) trinidad-config is wrong, it has filter element - this one belongs to web.xml and element uploaded-file-processor-settings with children does not exist: see

Re: Issue with Myfaces NavigationMenuItem

2011-06-05 Thread Martin Koci
Hi, The project has the following libraries in the classpath Sun JSF 1.2 MyFaces 1.2.8 Tomahawk 1.1.9 you cannot have both JSF RI and MyFaces on classpath: remove one and try it again. Regards, Kočičák Julian Osorio Amaya píše v Čt 02. 06. 2011 v 14:10 +: Greetings We've a

Re: Error trying to fix bug MYFACES-3101

2011-05-04 Thread Martin Koci
alex mustieles píše v Út 03. 05. 2011 v 12:32 -0500: Hi Alex, Hi, I downloaded these jar files in order to fix the the bug reported at: https://issues.apache.org/jira/browse/MYFACES-3101?page=com.atlassian.jira.plugin.system.issuetabpanels%3Aall-tabpanel#issue-tabs Jar files:

Re: Problems with orchestra and JSF 2

2010-07-02 Thread Martin Koci
Hi, I have same problem with CDI a it's conversation. Please see my comment on https://issues.apache.org/jira/browse/MYFACES-2688 Best regards, Martin Kočí Leonardo Uribe píše v Pá 02. 07. 2010 v 13:31 -0500: Hi It is not a problem related to orchestra. JSF implementation does not decode

Re: Is there a binary build of ADF Faces?

2006-03-29 Thread Martin Koci
http://maven.apache.org/guides/mini/guide-coping-with-sun-jars.html Frank Russo wrote: I can't find one. I tried building it, but there are maven dependencies that don't seem to exist on Ibiblio. I've tried downloading them directly, but I can't seem to find them. Here are the files if

Re: File Download responseComplete Problem

2005-10-28 Thread Martin Koci
Put this before responseComplete: context.getApplication().getStateManager().saveSerializedView(context); ... context.responseComplete(); Martin