<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic afficher un nom lié à un matricule in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/afficher-un-nom-li%C3%A9-%C3%A0-un-matricule/m-p/150606#M105460</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;bonjour &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;j ai crée un utilisateur dont le nom est "toto" et son nom d utilisation est 679928 &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;mnt je cherche l aide pour récupérer et afficher logout(toto) au lieu de logout(679928) ;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;sachant que je voudrai me connecté par 679928 dans la page d autentification et que "toto" soit afficher aprés l authentification&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;version :Alfresco-Community-3.2r2-Ful&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jul 2010 15:16:17 GMT</pubDate>
    <dc:creator>akramoun</dc:creator>
    <dc:date>2010-07-20T15:16:17Z</dc:date>
    <item>
      <title>afficher un nom lié à un matricule</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/afficher-un-nom-li%C3%A9-%C3%A0-un-matricule/m-p/150606#M105460</link>
      <description>bonjour j ai crée un utilisateur dont le nom est "toto" et son nom d utilisation est 679928 mnt je cherche l aide pour récupérer et afficher logout(toto) au lieu de logout(679928) ;sachant que je voudrai me connecté par 679928 dans la page d autentification et que "toto" soit afficher aprés l authen</description>
      <pubDate>Tue, 20 Jul 2010 15:16:17 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/afficher-un-nom-li%C3%A9-%C3%A0-un-matricule/m-p/150606#M105460</guid>
      <dc:creator>akramoun</dc:creator>
      <dc:date>2010-07-20T15:16:17Z</dc:date>
    </item>
    <item>
      <title>Re: afficher un nom lié à un matricule</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/afficher-un-nom-li%C3%A9-%C3%A0-un-matricule/m-p/150607#M105461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;à quelle propriété du modele toto fait référence ? &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;vous devriez pouvoir assez facilement placer le full name (prénom + nom de famille) à la place de l'identifiant utilisateur. remplacez : &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;#{NavigationBean.currentUser.userName}&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;par &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;#{NavigationBean.currentUser.fullName}&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;dans tomcat/webapps/alfresco/jsp/parts/titlebar.jsp . si c'est une autre propriété que vous voulez, il vous faudra étendre la classe org.alfresco.web.bean.repository.User pour permettre d'exposer la propriété souhaitée. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dans l'idéal, il serait propre de redéfinir sa jsp en extension et de la référencer dans les navigation rules plutôt que d'éditer celle du war.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jul 2010 16:41:10 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/afficher-un-nom-li%C3%A9-%C3%A0-un-matricule/m-p/150607#M105461</guid>
      <dc:creator>rguinot</dc:creator>
      <dc:date>2010-07-20T16:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: afficher un nom lié à un matricule</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/afficher-un-nom-li%C3%A9-%C3%A0-un-matricule/m-p/150608#M105462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;exactement je voulais mettre (le nom et le prénom) aprés l authentification par le matricule ;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;j ai édité "titilebar.jsp" comme suit: &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="language-none line-numbers"&gt;&lt;CODE&gt;&amp;lt;a:actionLink id="logout" image="/images/icons/logout.gif" value="#{msg.logout}&amp;nbsp; (#{NavigationBean.currentUser.fullName})" rendered="#{!NavigationBean.isGuest}" action="#{LoginBean.logout}" immediate="true"&amp;gt;&lt;BR /&gt;&amp;lt;f:param name="outcome" value="#{LoginBean.logoutOutcome}" /&amp;gt;&lt;BR /&gt;&amp;lt;/a:actionLink&amp;gt;&lt;BR /&gt;&amp;lt;a:actionLink id="login" image="/images/icons/login.gif" value="#{msg.login} (#{NavigationBean.currentUser.userName})" rendered="#{NavigationBean.isGuest}" action="#{LoginBean.logout}" /&amp;gt; &lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;et ca marche pas &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://connect.hyland.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;eske je devrai modifier un autre fichier ? et merci bien&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 09:26:58 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/afficher-un-nom-li%C3%A9-%C3%A0-un-matricule/m-p/150608#M105462</guid>
      <dc:creator>akramoun</dc:creator>
      <dc:date>2010-07-21T09:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: afficher un nom lié à un matricule</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/afficher-un-nom-li%C3%A9-%C3%A0-un-matricule/m-p/150609#M105463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;vous avez oublié de modifier la deuxième référence au userName semble-t-il (avant dernière ligne de l'extrait de code).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 10:14:54 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/afficher-un-nom-li%C3%A9-%C3%A0-un-matricule/m-p/150609#M105463</guid>
      <dc:creator>rguinot</dc:creator>
      <dc:date>2010-07-21T10:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: afficher un nom lié à un matricule</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/afficher-un-nom-li%C3%A9-%C3%A0-un-matricule/m-p/150610#M105464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;j ai changé la 2eme "userName" mais j ai eu la meme erreur &lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://connect.hyland.com/i/smilies/16x16_smiley-sad.png" alt="Smiley Sad" title="Smiley Sad" /&gt; , alors dans ce cas que dois je faire ?? et merci&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 16:29:50 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/afficher-un-nom-li%C3%A9-%C3%A0-un-matricule/m-p/150610#M105464</guid>
      <dc:creator>akramoun</dc:creator>
      <dc:date>2010-07-21T16:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: afficher un nom lié à un matricule</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/afficher-un-nom-li%C3%A9-%C3%A0-un-matricule/m-p/150611#M105465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;quelle erreur ? postez le log&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 16:42:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/afficher-un-nom-li%C3%A9-%C3%A0-un-matricule/m-p/150611#M105465</guid>
      <dc:creator>rguinot</dc:creator>
      <dc:date>2010-07-21T16:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: afficher un nom lié à un matricule</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/afficher-un-nom-li%C3%A9-%C3%A0-un-matricule/m-p/150612#M105466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;salut ,merci pour l aide ,voici l erreur :&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;javax.faces.FacesException: javax.faces.el.PropertyNotFoundException: Bean: org.alfresco.web.bean.repository.User, property: fullName&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;caused by:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;org.apache.jasper.JasperException: javax.faces.el.PropertyNotFoundException: Bean: org.alfresco.web.bean.repository.User, property: fullName&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;caused by:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;javax.faces.el.PropertyNotFoundException: Bean: org.alfresco.web.bean.repository.User, property: fullName&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hide Details&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;javax.faces.FacesException: javax.faces.el.PropertyNotFoundException: Bean: org.alfresco.web.bean.repository.User, property: fullName &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:425) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:211) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(RenderResponseExecutor.java:41) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:132) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at javax.faces.webapp.FacesServlet.service(FacesServlet.java:140) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.alfresco.web.app.servlet.AuthenticationFilter.doFilter(AuthenticationFilter.java:124) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at java.lang.reflect.Method.invoke(Method.java:597) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.alfresco.repo.management.subsystems.ChainingSubsystemProxyFactory$1.invoke(ChainingSubsystemProxyFactory.java:122) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at $Proxy190.doFilter(Unknown Source) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.alfresco.repo.web.filter.beans.BeanProxyFilter.doFilter(BeanProxyFilter.java:88) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.alfresco.repo.web.filter.beans.NullFilter.doFilter(NullFilter.java:74) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at java.lang.reflect.Method.invoke(Method.java:597) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.alfresco.repo.management.subsystems.ChainingSubsystemProxyFactory$1.invoke(ChainingSubsystemProxyFactory.java:122) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at $Proxy190.doFilter(Unknown Source) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.alfresco.repo.web.filter.beans.BeanProxyFilter.doFilter(BeanProxyFilter.java:88) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:845) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at java.lang.Thread.run(Thread.java:619) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Caused by: org.apache.jasper.JasperException: javax.faces.el.PropertyNotFoundException: Bean: org.alfresco.web.bean.repository.User, property: fullName &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:522) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:416) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:630) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:436) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:374) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:302) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:419) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;… 40 more &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Caused by: javax.faces.el.PropertyNotFoundException: Bean: org.alfresco.web.bean.repository.User, property: fullName &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.myfaces.el.PropertyResolverImpl.getPropertyDescriptor(PropertyResolverImpl.java:500) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.myfaces.el.PropertyResolverImpl.getPropertyDescriptor(PropertyResolverImpl.java:472) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.myfaces.el.PropertyResolverImpl.getProperty(PropertyResolverImpl.java:436) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.myfaces.el.PropertyResolverImpl.getValue(PropertyResolverImpl.java:85) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.myfaces.el.ELParserHelper$MyPropertySuffix.evaluate(ELParserHelper.java:535) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.commons.el.ComplexValue.evaluate(ComplexValue.java:145) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.commons.el.ExpressionString.evaluate(ExpressionString.java:114) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.myfaces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:386) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at javax.faces.component.UICommand.getValue(UICommand.java:173) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.alfresco.web.ui.common.renderer.ActionLinkRenderer.encodeEnd(ActionLinkRenderer.java:95) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:539) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at javax.faces.webapp.UIComponentTag.encodeEnd(UIComponentTag.java:498) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:366) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.jsp.jsp.browse.browse_jsp._jspx_meth_a_005factionLink_005f5(browse_jsp.java:1319) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.jsp.jsp.browse.browse_jsp._jspService(browse_jsp.java:470) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at javax.servlet.http.HttpServlet.service(HttpServlet.java:717) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374) &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;… 50 more&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jul 2010 08:42:37 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/afficher-un-nom-li%C3%A9-%C3%A0-un-matricule/m-p/150612#M105466</guid>
      <dc:creator>akramoun</dc:creator>
      <dc:date>2010-07-22T08:42:37Z</dc:date>
    </item>
  </channel>
</rss>

