Problem using input elements in a datatable

2010-07-06 Thread Marcus Büttner
Hi, I have a problem with input elements in an UIData (e.g. datatable). Example code: h:dataTable value=#{myBean.valueList} var=val h:column h:outputText value=#{val.description}/ /h:column h:column h:selectBooleanCheckbox id=flag value=#{val.flag}/ /h:column /h:dataTable

PortletBridge starting portlet problem

2010-07-06 Thread Yves Deschamps
Hi all, I have this exception when the portlet start... An idea ? GRAVE: Servlet.service() pour la servlet esup-news-mobile a lancé une exception java.lang.NullPointerException at org.apache.myfaces.portlet.faces.bridge.BridgeImpl.doFacesRequest(BridgeImpl.java:428) at

Re: PortletBridge starting portlet problem

2010-07-06 Thread Scott O'Bryan
I don't have time to take a look at the line ring now but do you have a default viewId specified? Also, what version of the bridge are you using? Sent from my iPhone On Jul 6, 2010, at 6:39 AM, Yves Deschamps yves.descha...@univ-lille1.fr wrote: Hi all, I have this exception when the

Re: PortletBridge starting portlet problem

2010-07-06 Thread Yves Deschamps
Hi Scott, Yes i have a default viewId in portlet.xml : init-param namejavax.portlet.faces.defaultViewId.view/name value/home.jsp/value /init-param I am using this version (with good help from Michael Freedman).

MyFaces PMC += Max Starets

2010-07-06 Thread Matthias Wessendorf
Dear MyFaces community, please welcome our new MyFaces PMC member Max Starets. Max is mostly working on Apache MyFaces Trinidad. Therefore last week there was a vote to invite him to the MyFaces Project Management Committee (PMC) and fortunately he did accept. Max, Please subscribe to the

MyFaces PMC += Jan-Kees van Andel

2010-07-06 Thread Matthias Wessendorf
Dear MyFaces community, please welcome our new MyFaces PMC member Jan-Kees van Andel. Jan-Kees is working on several things at Apache MyFaces. Therefore last week there was a vote to invite him to the MyFaces Project Management Committee (PMC) and fortunately he did accept. Jan-Kees, Please

MyFaces PMC += Jakob Korherr

2010-07-06 Thread Matthias Wessendorf
Dear MyFaces community, please welcome our new MyFaces PMC member Jakob Korherr. Jakob is working on several things at Apache MyFaces. Therefore last week there was a vote to invite him to the MyFaces Project Management Committee (PMC) and fortunately he did accept. Jakob, Please subscribe to

MyFaces PMC += Blake Sullivan

2010-07-06 Thread Matthias Wessendorf
Dear MyFaces community, please welcome our new MyFaces PMC member Blake Sullivan. Blake is mostly working on Apache MyFaces Trinidad. Therefore last week there was a vote to invite him to the MyFaces Project Management Committee (PMC) and fortunately he did accept. Blake, Please subscribe to

Re: Problem using input elements in a datatable

2010-07-06 Thread Marcus Büttner
Ok, I think I found the problem. I created an Issue and attached a patch. https://issues.apache.org/jira/browse/MYFACES-2788 Marcus Marcus Büttner schrieb: Hi, I have a problem with input elements in an UIData (e.g. datatable). Example code: h:dataTable value=#{myBean.valueList} var=val

Re: PortletBridge starting portlet problem

2010-07-06 Thread Michael Freedman
Hum... This is what I see for line 428 (BridgeImpl.doFacesRequest(BridgeImpl.java:428): if (request.getPortletSession().getAttribute(key) == null) As the request object has already been dereferenced before this line, the only way, that I can see, that this can throw a NullPointerException

Re: Long transactions

2010-07-06 Thread Luka Surija
Why don't you use EJB SessionBeans with TransactionManagement BEAN, and inject (@EJB) this session bean in session scoped managed bean. This way you can preserve transaction along multiple requests. And yes, use Eclipselink (it has lazy loading ;) ). On 07/02/2010 08:07 PM, Mike Kienenberger