Re: acegi and JSF

2008-04-15 Thread Ryan Wynn
Are you using WAS 6.1 by any chance? I fixed a similiar problem just today by setting the following custom was server property to true: com.ibm.ws.webcontainer.invokefilterscompatibility = true That just tells was to invoke filters even if the physical resource does not exist on the filesystem.

Re: t:dataScroller issue: scrollerprevious is duplicated in the faces tree

2008-01-17 Thread Ryan Wynn
On Jan 17, 2008 4:00 AM, Marko Asplund [EMAIL PROTECTED] wrote: Ryan Wynn wrote: see https://issues.apache.org/jira/browse/TOMAHAWK-596 Thanks, Ryan. Based on the bug report activity there doesn't seem to be any work being done to fix this in Tomahawk. How did you end up working around

Re: t:dataScroller issue: scrollerprevious is duplicated in the faces tree

2008-01-16 Thread Ryan Wynn
On Jan 16, 2008 3:13 PM, Marko Asplund [EMAIL PROTECTED] wrote: Hi, I'm developing a portlet with JSF using the Tomahawk t:dataTable action in combination with t:dataScroller for implementing a pageable search results page. The page includes a form for typing in search criteria and dataTable

Re: Log each call to an JSF action method

2007-08-29 Thread Ryan Wynn
I like to use spring's variable resolver + support for proxy beans to do this. I guess the aspect oriented approach you were referring to. On 8/29/07, Svilen Ivanov [EMAIL PROTECTED] wrote: Andrew, I think it is fine to wait for the action to end. However, if NavigationHandlerImpl does it

Re: designing h:dataTable

2007-06-05 Thread Ryan Wynn
t:dataList allows you more fine grained control over the display. On 6/5/07, ncheltsov [EMAIL PROTECTED] wrote: I am not sure, that I fully understand your question, but I think, that h:dataTable element is not intended for such use. You can display with it some tabular information, set header

Re: using portlet modes

2007-05-15 Thread Ryan Wynn
expression. This method will be invoked in the jsf process action phase. Inside this method it is ok to change the portlet mode. You do not need to introduce phase listeners. On May 10, 2007, at 6:07 PM, Ryan Wynn wrote: On 5/10/07, Alexander Wallace [EMAIL PROTECTED] wrote: Hi All... I'm

Re: using portlet modes

2007-05-10 Thread Ryan Wynn
On 5/10/07, Alexander Wallace [EMAIL PROTECTED] wrote: Hi All... I'm finding using portlet modes in jsf at the very least cumbersome... Is this really how it is? Should I just forget about portlet modes and use jsf navigation rules to compensate? I'm doing stuff like this: If you hit the edit

Re: Documentation about MyFacesGenericPortlet

2007-05-09 Thread Ryan Wynn
On 5/9/07, Kevin Irmscher [EMAIL PROTECTED] wrote: Hi is there any documentation available about the structure of MyFaces, especially about MyFacesGenericPortlet. I'm looking for an overview how the JSF lifecycle is mapped to the portlet lifecycle, sequence diagrams and so on. From what I've

Re: Access portal user information in JSF Portlet application

2007-05-04 Thread Ryan Wynn
On 5/4/07, Nebinger, David [EMAIL PROTECTED] wrote: First of all, it's easier to get the request map from the ExternalContext: Map requestMap = externalContext.getRequestMap(); For the http request parameters, sure you're correct. But he's got a portlet and he's looking for a portlet

Re: Access portal user information in JSF Portlet application

2007-05-04 Thread Ryan Wynn
On 5/4/07, Ryan Wynn [EMAIL PROTECTED] wrote: On 5/4/07, Nebinger, David [EMAIL PROTECTED] wrote: First of all, it's easier to get the request map from the ExternalContext: Map requestMap = externalContext.getRequestMap(); For the http request parameters, sure you're correct. But he's

Re: MyFaces on WAS 6.1.0.2

2007-03-21 Thread Ryan Wynn
In the web based WAS Admin Console you can see exactly the order of the jars that websphere is loading for your application. You have to dig into the nested links for classloader after clicking on your app under Enterprise Apps. The end result is a tree view consisting of all the jars in the

Re: [Solved] Never before seen exception (facelets.FaceletViewHandler handleRenderException) - ??

2007-03-01 Thread Ryan Wynn
I haven't used facelets, but I use clay. There was recently a problem on the shale mailing list sort of related to this. I guess way back in myfaces 1.1.1 component ids were generated in sequence per-request. The internal sequence was always reset even after a view restore. Post 1.1.1 it seems

Corporate Open Source Strategy

2006-10-04 Thread Ryan Wynn
Trying to get approval for a myfaces-shale stack in a corporate environment and facing the question of what is the strategy for fixing a production showstopper in the open source code. Anyone have any recommendations on this topic? Or any links regarding the topic? Filing through JIRA does not

Re: Corporate Open Source Strategy

2006-10-04 Thread Ryan Wynn
if that's something you want to purchase. A number of the MyFaces committers appear to do work for irian.at. There is currently no process in place for fixing bugs on older release branches, although I'm hopeful that we will start doing so from 1.1.4 onward. On 10/4/06, Ryan Wynn [EMAIL PROTECTED

Re: Shale 1.0.x change to servlet 2.4 spec

2006-08-24 Thread Ryan Wynn
Just wondering what people think about not including listener listener-classorg.apache.shale.view.faces.LifecycleListener/listener-class /listener in the taglib.tld of myfaces-core. I believe correct me if I am wrong that this is the only shale class that uses servlet 2.4. If shale users

Re: Shale 1.0.x change to servlet 2.4 spec

2006-08-16 Thread Ryan Wynn
On 8/16/06, Craig McClanahan [EMAIL PROTECTED] wrote: On 8/16/06, Joe Shevland [EMAIL PROTECTED] wrote: Hi, Sorry if this has been discussed but I haven't found a huge amount of discussion on it, just a few comments describing that it was an important and necessary change. Some time

Re: commandLink problem

2006-07-24 Thread Ryan Wynn
On 7/21/06, Ryan Wynn [EMAIL PROTECTED] wrote: using api, impl, tomahawk 1.1.3... I cannot seem to get the commandLink without javascript to work. commandButton works like a charm. The parameters in the actionUrl seem to be getting encoded properly, but when I click on the link I am not going

Re: ALLOW_JAVASCRIPT

2006-07-24 Thread Ryan Wynn
I think I fixed the problem where the commandLink doesn't work with javascript turned off. It is working for me now. See https://issues.apache.org/jira/browse/MYFACES-1370 On 7/24/06, Jesse Alexander (KSFD 121) [EMAIL PROTECTED] wrote: Whether a single component gracefully degrades is up

Re: ALLOW_JAVASCRIPT

2006-07-24 Thread Ryan Wynn
On 7/24/06, Ryan Wynn [EMAIL PROTECTED] wrote: I think I fixed the problem where the commandLink doesn't work with javascript turned off. It is working for me now. See https://issues.apache.org/jira/browse/MYFACES-1370 Basically the way it was written it was almost working. The problem

Re: ALLOW_JAVASCRIPT

2006-07-24 Thread Ryan Wynn
component-familyjavax.faces.Command/component-family renderer-typejavax.faces.Link/renderer-type renderer-classHtmlLinkRendererFix/renderer-class /renderer /render-kit Works without javascript enabled. On 7/24/06, Ryan Wynn [EMAIL

commandLink problem

2006-07-21 Thread Ryan Wynn
using api, impl, tomahawk 1.1.3... I cannot seem to get the commandLink without javascript to work. commandButton works like a charm. The parameters in the actionUrl seem to be getting encoded properly, but when I click on the link I am not going into my action handler. I tried with my

Re: deploy MyFaces as portlet into Websphere Portal 5.1

2006-07-17 Thread Ryan Wynn
Storm, Are you running the app on the Portal Server 5.1 Test Environment or the full blown Portal 5.1 Server? Have you packaged the myfaces dependencies in your portlet war or do you have them at a higher classloader level? If you are running from within Rational Application Developer what do

Re: deploy MyFaces as portlet into Websphere Portal 5.1

2006-07-17 Thread Ryan Wynn
-digester-1.6.jar commons-el-1.0.jar commons-lang-2.1.jar jsp-api.jar myfaces-api-1.1.3.jar myfaces-impl-1.1.3.jar Regards, Bruce On 7/18/06, Ryan Wynn [EMAIL PROTECTED] wrote: Storm, Are you running the app on the Portal Server 5.1 Test Environment or the full blown Portal 5.1 Server? Have

Re: deploy MyFaces as portlet into Websphere Portal 5.1

2006-07-17 Thread Ryan Wynn
value/Jsr168_2View.jsp/value /init-param Did that fix your problem or are you still seeing a blank portlet page? I think it may be required by tomcat. Regards, Bruce On 7/18/06, Ryan Wynn [EMAIL PROTECTED] wrote: On 7/17/06, Storm Spire [EMAIL PROTECTED] wrote: Hi Ryan

Re: jsf portlet input components do not set their values to the model

2006-05-15 Thread Ryan Wynn
On 5/12/06, Papaioannou, Todd [EMAIL PROTECTED] wrote: Liferay 3.6.1 had a lot of problems with JSF portlets. I've been using the new 4.0.0 rc2 version with a lot more success. Make sure you use the updated util-jsf.jar in your portlets and things should improve. Todd -Original

Re: 'Simulating' commandLink from Javascript

2006-02-01 Thread Ryan Wynn
On 2/1/06, Laurie Harper [EMAIL PROTECTED] wrote: Hi, I need to do the equivalent of clicking a commandLink in Javascript; in other words, I need to write an onClick handler that does the same thing as clicking on a commandLink would. Is there a standard way to do that? I'm not sure if the JSF

Re: link inside extendedDataTable

2006-01-14 Thread Ryan Wynn
On 1/13/06, Simon Kitching [EMAIL PROTECTED] wrote: On Fri, 2006-01-13 at 17:22 -0500, Ryan Wynn wrote: Can anyone explain to me how a link inside extendedDataTable whose action is bound to a rowVar bean method gets executed? I have a case where I invoke a method binding on the rowVar bean

link inside extendedDataTable

2006-01-13 Thread Ryan Wynn
Can anyone explain to me how a link inside extendedDataTable whose action is bound to a rowVar bean method gets executed? I have a case where I invoke a method binding on the rowVar bean in the table. When I click on the link the method is executed but not on the correct row/bean in the table.

Re: MyFaces Portlet Issue on WebSphere 5.1

2005-12-19 Thread Ryan Wynn
On 12/17/05, Ryan Wynn [EMAIL PROTECTED] wrote: On 12/16/05, Louis Burroughs [EMAIL PROTECTED] wrote: I posted on this forum a couple of days ago about issues I was having running a MyFaces app as a portlet and someone sent me a hello world ear called SamEar.ear to test

Re: MyFaces Portlet Issue on WebSphere 5.1

2005-12-16 Thread Ryan Wynn
On 12/16/05, Louis Burroughs [EMAIL PROTECTED] wrote: I posted on this forum a couple of days ago about issues I was having running a MyFaces app as a portlet and someone sent me a hello world ear called SamEar.ear to test with. Unfortunately my inbox got wiped out and I cannot find the

Re: Why phaseListener is invoked twice on each phase?

2005-12-14 Thread Ryan Wynn
On 12/14/05, Bruno Aranda [EMAIL PROTECTED] wrote: You can add the issue to the wiki, which you can modify at your will to add important information for the myfaces community [1]. I guess that eventually some of the FAQs will be added to the FAQ in the myfaces site as well... Regards,

Re: MyFaces Portlet Issue on WebSphere 5.1

2005-12-14 Thread Ryan Wynn
On 12/14/05, Louis Burroughs [EMAIL PROTECTED] wrote: Issue: My Faces portlets are not rendering. I think it's because the FacesServlet is not being invoked to render the faces content. If I set my default-view to mypage.jsf or mypage.faces instead of mypage.jsp in the portlet.xml get an

Re: PhaseListener Doubts

2005-12-13 Thread Ryan Wynn
On 12/13/05, Julián García [EMAIL PROTECTED] wrote: Thanks. I included this in my config xml lifecycle phase-listenerco.com.atenaerp.seguridad.acegi.jsf.AccessDecicionManagerPhaseListener/phase-listener /lifecycle within the application tagbut now it doesn't print anything at

Re: PhaseListener Doubts

2005-12-13 Thread Ryan Wynn
On 12/13/05, Ryan Wynn [EMAIL PROTECTED] wrote: On 12/13/05, Julián García [EMAIL PROTECTED] wrote: Thanks. I included this in my config xml lifecycle phase-listenerco.com.atenaerp.seguridad.acegi.jsf.AccessDecicionManagerPhaseListener/phase-listener /lifecycle within

[OT] innerHTML, AjaxAnywhere, problems

2005-12-09 Thread Ryan Wynn
Has anyone had any problems with AA and setting the innerHTML property. I am getting a super informative javascript unknown runtime exception in IE at the line where AA tries to set my returned html into the zone span. The html looks okay. Thanks, Ryan

Re: [OT] myfaces, a portal, and ajax

2005-12-08 Thread Ryan Wynn
On 12/7/05, Volker Weber [EMAIL PROTECTED] wrote: Hi, Ryan Wynn wrote: Anyway, this works as intended. The span gets updated with the correct html and it looks far better than an entire page refresh. My problem is that setting the innerHtml does not seem to be reinterpreting embedded

Re: [OT] myfaces, a portal, and ajax

2005-12-08 Thread Ryan Wynn
On 12/8/05, Ryan Wynn [EMAIL PROTECTED] wrote: On 12/7/05, Volker Weber [EMAIL PROTECTED] wrote: Hi, Ryan Wynn wrote: Anyway, this works as intended. The span gets updated with the correct html and it looks far better than an entire page refresh. My problem is that setting

Question about tomahawk calendar javascript

2005-12-08 Thread Ryan Wynn
I am using myfaces 1.1.1. Does the calendar javascript require dom support? The reason I ask this is because I am trying to use it in conjunction with ajax. There is a flag called jscalendarDom which among other things determines if document.write is used. I want to avoid the calls to

Re: MyFaces and IBM Portal

2005-12-07 Thread Ryan Wynn
On 12/7/05, Kandasamy, Uma [EMAIL PROTECTED] wrote: All, I am having problems when trying to deploy JSR 168 portlets (built using MyFaces Impl) on IBM Portal 5.1. It could very well be a problem with IBM supporting the MyFaces JSF Implementation. As far as I know, the RAD tool used for

[OT] myfaces, a portal, and ajax

2005-12-07 Thread Ryan Wynn
I have a working myfaces application working inside websphere portal 5.1. I thought it would be cool if I ajaxized my portlet with dojo. This way I don't suffer from the entire page refresh which in a portal can be expensive. So I overwrote the myfaces renderer for forms. My new form renderer

Re: MyFaces and IBM Portal

2005-12-07 Thread Ryan Wynn
On 12/7/05, Kandasamy, Uma [EMAIL PROTECTED] wrote: Thanks Ryan. I will try this one. Also, does your web.xml reference any of the sun's classes (like ConfigureListener). Do you mind posting your web.xml ? -Original Message- From: Ryan Wynn [mailto:[EMAIL PROTECTED] Sent: Wednesday

Re: Tree2 preserveToggle and server side

2005-11-30 Thread Ryan Wynn
On 11/30/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Currently preserveToggle only works with client-side toggle. If you want to keep the state in server-side toggle, provide a session scoped TreeModel instead of a TreeNode as the model. Thanks, I switched from TreeNode to TreeModel and

Tree2 preserveToggle and server side

2005-11-29 Thread Ryan Wynn
I hava a tree2 component with server side state saving and preserveToggle = true. When the view that contains the tree is left and returned to the tree does not retain expanded state but returns to a collapsed tree. Any ideas what I could be doing wrong? Is this expanded state management

Re: phase event...

2005-11-17 Thread Ryan Wynn
This kind of thing may be put into shale clay as well. It's not there yet, but I have been writing to Gary V. to put it in. See the following thread - http://www.mail-archive.com/dev%40struts.apache.org/msg13515.html Basically, the idea is that with commons chain you get a hook that lets you

Re: phase event...

2005-11-17 Thread Ryan Wynn
On 11/17/05, Simon Kitching [EMAIL PROTECTED] wrote: Of course using Clay means a totally different layout technology, just like using Facelets. That's not entirely true. I believe you can still use jsp with clay and take advantage of my earlier example. You just would need to wrap your jsp

RE: Problem while deploying in IBM WebSpher Application Server 5.1

2005-10-26 Thread Ryan Wynn
What type of jsf configuration are you trying to support? Only MyFaces, reference impl. + tomahawk, any of the ibm-jsf stuff? I have had problems with some of the combinations. For example, when I tried reference impl. + tomahawk I could not start the web app because the faces-config parser was

RE: Problem while deploying in IBM WebSpher Application Server 5.1

2005-10-26 Thread Ryan Wynn
. Ryan Wynn/Vienna/[EMAIL PROTECTED] 10/26/2005 03:03 PM Please respond to MyFaces Discussion To MyFaces Discussion users@myfaces.apache.org cc Subject RE: Problem while deploying in IBM WebSpher Application Server 5.1 What type of jsf configuration are you trying

Best way to reset DataScroller

2005-10-21 Thread Ryan Wynn
Is there an API for setting the UIDataScroller to a certain page?

MyFaces 1.1.1 RC3 - Tree2

2005-10-21 Thread Ryan Wynn
Tree2 from MyFaces 1.1.1 RC3 seems to behave differently in a portlet environment. I have the same application deployed in WebSphere Portal and Tomcat. In Tomcat the actions associated with the tree node links get triggered. In portal, they do not. Otherwise the application behaves correctly in

JSR 168 Portlet and ExtensionsFilter

2005-10-18 Thread Ryan Wynn
I am trying to get the inputCalendar to work inside a Portlet. It seems to me that although I have the myfaces ExtensionsFilter mapped in my web.xml the appropriate _javascript_ is not being included in the response. I get DateFormatSymbols is undefined which looks like it is declared in

Tomahawk view config for Shale-Clay

2005-10-10 Thread Ryan Wynn
I have constructed a view config xml file for the tomahawk components for use with Clay. I thought it would be helpful to contribute to the Shale project. Can anyone help/direct me on contributing this file? The end result is pretty nice. All my views are just plain html files with references to

Re: MyFaces and Shale Clay again

2005-10-08 Thread Ryan Wynn
[EMAIL PROTECTED] (Gary VanMatre) wrote on 10/06/2005 02:24:38 PM: I've not tried the tomahawk components yet but I think Clay should have a base configuration file for these components. If you take on that task and would like to contribute back to Shale, please let us know:-) I agree,

MyFaces and Shale Clay again

2005-10-06 Thread Ryan Wynn
Has anyone been able to utilize myfaces tomahawk components with clay, specifically the clay html views. Myfaces core components are working fine for me, I have just not yet been able to use tomahawk. In my clay-config.xml I have component jsfid=dataTableTmk

Re: MyFaces and Shale Clay again

2005-10-06 Thread Ryan Wynn
I just answered my own question. I was referring to the component class when I should have been referring to the component type. so org.apache.myfaces.HtmlDataTable instead of org.apache.myfaces.component.html.ext.HtmlDataTable Ryan Wynn/Vienna/[EMAIL PROTECTED] 10/06/2005 01:26 PM

MyFaces + Shale Clay

2005-10-06 Thread Ryan Wynn
Has anyone been able to utilize myfaces tomahawk components with clay, specifically the clay html views. Myfaces core components are working fine for me, I have just not yet been able to use tomahawk. In my clay-config.xml I have component jsfid=dataTableTmk

MyFaces/Facelets integration

2005-10-05 Thread Ryan Wynn
Has anyone come across a problem where the facelet viewHandler does not interpret MyFaces core tags (e.g. h:commandLink)? In my case it is simply writing the source to the response. I think my namespaces are all correct. When I first access the page the myfaces RenderKitFactoryImpl successfully

Hibernate and Datascroller

2005-09-29 Thread Ryan Wynn
Any hibernate-spring experts out there that could tell me how I can still get a LazyInit exception inside my spring OpenSessionInViewFilter. My stack trace clearly says I am inside the Filter. Exception - No session or session was closed. This is happening when using the myfaces datascroller for

Re: Hibernate and Datascroller

2005-09-29 Thread Ryan Wynn
To users@myfaces.apache.org cc Subject Re: Hibernate and Datascroller Ryan Wynn wrote: Any hibernate-spring experts out there that could tell me how I can still get a LazyInit exception inside my spring OpenSessionInViewFilter. My stack trace clearly says I am inside

Re: Hibernate and Datascroller

2005-09-29 Thread Ryan Wynn
Ryan Wynn wrote: The problem was the old/new session as Rich described. Instead of rerunning the query I just reattached the objects to the new session with session.lock. I opted for this because the table data comes from 1 of 2 queries depending on user interaction within the page. Instead

Re: if-else

2005-09-28 Thread Ryan Wynn
My personal opinion is keep if-else/jstl away from jsf. I like to put logic evaluation in backing beans and a keep the MVC distinction clear. Couldn't you do h:outputText value=#{bean.threeLetters} / and do the logic in threeLetters Instead of h:outputText value=ABC

Re: How to deal with ugly issue - Back/Refresh

2005-09-27 Thread Ryan Wynn
How does this problem present itself? My app is stateless and uses saveState at some points. I have not had any problems with the back button. === Ryan Wynn Websphere Portal Developer IBM Business Consulting Services - Public Sector Reston Office: 703-668

Re: How to deal with ugly issue - Back/Refresh

2005-09-27 Thread Ryan Wynn
No, I use client that must be why. Thanks. === Ryan Wynn Websphere Portal Developer IBM Business Consulting Services - Public Sector Reston Office: 703-668-2478 Cell: 703-622-1977 [EMAIL PROTECTED] Martin Marinschek [EMAIL PROTECTED] 09/27/2005 10:19 AM

Re: Question about dynamic navigation actions

2005-09-27 Thread Ryan Wynn
How do you plug a custom NavigationHandler into the faces-config.xml? What is the syntax? === Ryan Wynn Websphere Portal Developer IBM Business Consulting Services - Public Sector Reston Office: 703-668-2478 Cell: 703-622-1977 [EMAIL PROTECTED] Mike

Tree2 9/24

2005-09-26 Thread Ryan Wynn
? === Ryan Wynn Websphere Portal Developer IBM Business Consulting Services - Public Sector Reston Office: 703-668-2478 Cell: 703-622-1977 [EMAIL PROTECTED]

Re: Tree2 9/24

2005-09-26 Thread Ryan Wynn
MYFACES-621 created to document this. Thanks, Sean. === Ryan Wynn Websphere Portal Developer IBM Business Consulting Services - Public Sector Reston Office: 703-668-2478 Cell: 703-622-1977 [EMAIL PROTECTED] Sean Schofield [EMAIL PROTECTED] 09/26/2005 02

Re: Migration from 1.0.9m9 to 1.1.0 in myfaces wiki

2005-09-25 Thread Ryan Wynn
in all the configurations or all the circumstances, as the application at irian had a different behaviour than mine in this issue... Regards, Bruno 2005/9/25, Martin Marinschek [EMAIL PROTECTED]: Can you post more of your output and your jsps? regards, Martin On 9/25/05, Ryan Wynn [EMAIL P

InputSuggestAjax question

2005-09-25 Thread Ryan Wynn
I have the following s:inputSuggestAjax suggestedItemsMethod=#{app.findMessages} styleLocation= / what is the expected signature for findMessages? Retuns a list of SelectItems? take any parameters? How do I get the value of the input field; what the user has typed so far? I assume this would

Re: InputSuggestAjax question

2005-09-25 Thread Ryan Wynn
)); } return li; } } On 9/26/05, Ryan Wynn [EMAIL PROTECTED] wrote: I have the following s:inputSuggestAjax suggestedItemsMethod=#{app.findMessages} styleLocation= / what is the expected signature for findMessages? Retuns a list of SelectItems? take any

Re: Migration from 1.0.9m9 to 1.1.0 in myfaces wiki

2005-09-24 Thread Ryan Wynn
My apologies if this was already discussed as I just joined the group. I have have recently had problems with the JSCookMenu component displaying icons. It seems that depending on where I place the jscook tag within the myfaces tree I either see the icon or I see the string img src="" I checked