From jira-events at lists.jboss.org Fri Feb 8 05:41:03 2008 Content-Type: multipart/mixed; boundary="===============8139700329487316788==" MIME-Version: 1.0 From: prashant verma (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Created: (RF-2203) suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to obtain Response#setHeader() method: java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" Date: Fri, 08 Feb 2008 05:41:03 -0500 Message-ID: <16993975.1202467263762.JavaMail.jira@cloud.prod.atl2.jboss.com> --===============8139700329487316788== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to obta= in Response#setHeader() method: java.lang.NoSuchMethodException: org.jboss.= portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" ---------------------------------------------------------------------------= ---------------------------------------------------------------------------= ------------------------------------------------------------------------- Key: RF-2203 URL: http://jira.jboss.com/jira/browse/RF-2203 Project: RichFaces Issue Type: Bug Environment: jboss portal 2.4.1 jdk1.5 RF3.1.4GA Reporter: prashant verma hi here is my code. <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> <%@ taglib uri=3D"http://richfaces.org/rich" prefix=3D"rich"%> <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> repeater bean is this :- = public class Bean { private String text =3D ""; public Bean() { } public String getText() { return text; } public void setText(String text) { this.text =3D text; } public List autocomplete(Object event) { String pref =3D event.toString(); System.out.println("pref : "+pref); ArrayList a =3D new ArrayList(); for(int i =3D0 ;i<10;i++) a.add(i+""); System.out.println("a - "+a); = return a; = } }} i have made appropriate enteries in the faces-config.xml Everything is fine but when I try to access the page in the jbossportal the= n while rerendering this err occurs ..... 16:07:10,923 INFO [STDOUT] pref : 1 16:07:10,923 INFO [STDOUT] engineModelValues - [0, 1, 2, 3, 4, 5, 6, 7, 8,= 9] 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Detecting request cha= racter encoding is disable. 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Failed to obtain Resp= onse#setHeader() method: java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.setH= eader(java.lang.String, java.lang.String) ..... Please suggest. Thanks in Advance -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= p://jira.jboss.com/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8139700329487316788==-- From jira-events at lists.jboss.org Fri Feb 8 15:32:05 2008 Content-Type: multipart/mixed; boundary="===============2446399402371740084==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-2203) suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to obtain Response#setHeader() method: java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" Date: Fri, 08 Feb 2008 15:32:05 -0500 Message-ID: <4038786.1202502725170.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 16993975.1202467263762.JavaMail.jira@cloud.prod.atl2.jboss.com --===============2446399402371740084== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ http://jira.jboss.com/jira/browse/RF-2203?page=3Dall ] Nick Belaevski updated RF-2203: ------------------------------- Fix Version/s: 3.2.0 Affects Version/s: 3.2.0 Assignee: Alexander Smirnov > suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to ob= tain Response#setHeader() method: java.lang.NoSuchMethodException: org.jbos= s.portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" > -------------------------------------------------------------------------= ---------------------------------------------------------------------------= --------------------------------------------------------------------------- > > Key: RF-2203 > URL: http://jira.jboss.com/jira/browse/RF-2203 > Project: RichFaces > Issue Type: Bug > Affects Versions: 3.2.0 > Environment: jboss portal 2.4.1 jdk1.5 RF3.1.4GA > Reporter: prashant verma > Assigned To: Alexander Smirnov > Fix For: 3.2.0 > > > hi here is my code. > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://richfaces.org/rich" prefix=3D"rich"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > > > repeater > > > > > > > suggestionAction=3D"#{bean.autocomplete}" var=3D"suggest" height=3D"50" > width=3D"100"> > > > > > > > > > > bean is this :- = > public class Bean { > private String text =3D ""; > public Bean() { > } > public String getText() { > return text; > } > public void setText(String text) { > this.text =3D text; > } > public List autocomplete(Object event) { > String pref =3D event.toString(); > System.out.println("pref : "+pref); > ArrayList a =3D new ArrayList(); > for(int i =3D0 ;i<10;i++) > a.add(i+""); > System.out.println("a - "+a); = > return a; = > } > }} > i have made appropriate enteries in the faces-config.xml > Everything is fine but when I try to access the page in the jbossportal t= hen while rerendering this err occurs > ..... > 16:07:10,923 INFO [STDOUT] pref : 1 > 16:07:10,923 INFO [STDOUT] engineModelValues - [0, 1, 2, 3, 4, 5, 6, 7, = 8, 9] > 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Detecting request c= haracter encoding is disable. > 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Failed to obtain Re= sponse#setHeader() method: > java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.se= tHeader(java.lang.String, java.lang.String) > ..... > Please suggest. > Thanks in Advance -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= p://jira.jboss.com/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============2446399402371740084==-- From jira-events at lists.jboss.org Wed Mar 26 21:17:54 2008 Content-Type: multipart/mixed; boundary="===============5641203538017453052==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-2203) suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to obtain Response#setHeader() method: java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" Date: Wed, 26 Mar 2008 21:17:54 -0400 Message-ID: <14712749.1206580674752.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 16993975.1202467263762.JavaMail.jira@cloud.prod.atl2.jboss.com --===============5641203538017453052== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ http://jira.jboss.com/jira/browse/RF-2203?page=3Dall ] Nick Belaevski updated RF-2203: ------------------------------- Component/s: portal > suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to ob= tain Response#setHeader() method: java.lang.NoSuchMethodException: org.jbos= s.portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" > -------------------------------------------------------------------------= ---------------------------------------------------------------------------= --------------------------------------------------------------------------- > > Key: RF-2203 > URL: http://jira.jboss.com/jira/browse/RF-2203 > Project: RichFaces > Issue Type: Bug > Components: portal > Affects Versions: 3.2.0 > Environment: jboss portal 2.4.1 jdk1.5 RF3.1.4GA > Reporter: prashant verma > Assigned To: Alexander Smirnov > Fix For: 3.2.0 > > > hi here is my code. > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://richfaces.org/rich" prefix=3D"rich"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > > > repeater > > > > > > > suggestionAction=3D"#{bean.autocomplete}" var=3D"suggest" height=3D"50" > width=3D"100"> > > > > > > > > > > bean is this :- = > public class Bean { > private String text =3D ""; > public Bean() { > } > public String getText() { > return text; > } > public void setText(String text) { > this.text =3D text; > } > public List autocomplete(Object event) { > String pref =3D event.toString(); > System.out.println("pref : "+pref); > ArrayList a =3D new ArrayList(); > for(int i =3D0 ;i<10;i++) > a.add(i+""); > System.out.println("a - "+a); = > return a; = > } > }} > i have made appropriate enteries in the faces-config.xml > Everything is fine but when I try to access the page in the jbossportal t= hen while rerendering this err occurs > ..... > 16:07:10,923 INFO [STDOUT] pref : 1 > 16:07:10,923 INFO [STDOUT] engineModelValues - [0, 1, 2, 3, 4, 5, 6, 7, = 8, 9] > 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Detecting request c= haracter encoding is disable. > 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Failed to obtain Re= sponse#setHeader() method: > java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.se= tHeader(java.lang.String, java.lang.String) > ..... > Please suggest. > Thanks in Advance -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= p://jira.jboss.com/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============5641203538017453052==-- From jira-events at lists.jboss.org Mon Mar 31 17:52:43 2008 Content-Type: multipart/mixed; boundary="===============3105602582156243043==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-2203) suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to obtain Response#setHeader() method: java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" Date: Mon, 31 Mar 2008 17:52:43 -0400 Message-ID: <28770268.1207000363204.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 16993975.1202467263762.JavaMail.jira@cloud.prod.atl2.jboss.com --===============3105602582156243043== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ http://jira.jboss.com/jira/browse/RF-2203?page=3Dall ] Nick Belaevski updated RF-2203: ------------------------------- Fix Version/s: 3.2.1 (was: 3.2.0) > suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to ob= tain Response#setHeader() method: java.lang.NoSuchMethodException: org.jbos= s.portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" > -------------------------------------------------------------------------= ---------------------------------------------------------------------------= --------------------------------------------------------------------------- > > Key: RF-2203 > URL: http://jira.jboss.com/jira/browse/RF-2203 > Project: RichFaces > Issue Type: Bug > Components: portal > Affects Versions: 3.2.0 > Environment: jboss portal 2.4.1 jdk1.5 RF3.1.4GA > Reporter: prashant verma > Assigned To: Alexander Smirnov > Fix For: 3.2.1 > > > hi here is my code. > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://richfaces.org/rich" prefix=3D"rich"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > > > repeater > > > > > > > suggestionAction=3D"#{bean.autocomplete}" var=3D"suggest" height=3D"50" > width=3D"100"> > > > > > > > > > > bean is this :- = > public class Bean { > private String text =3D ""; > public Bean() { > } > public String getText() { > return text; > } > public void setText(String text) { > this.text =3D text; > } > public List autocomplete(Object event) { > String pref =3D event.toString(); > System.out.println("pref : "+pref); > ArrayList a =3D new ArrayList(); > for(int i =3D0 ;i<10;i++) > a.add(i+""); > System.out.println("a - "+a); = > return a; = > } > }} > i have made appropriate enteries in the faces-config.xml > Everything is fine but when I try to access the page in the jbossportal t= hen while rerendering this err occurs > ..... > 16:07:10,923 INFO [STDOUT] pref : 1 > 16:07:10,923 INFO [STDOUT] engineModelValues - [0, 1, 2, 3, 4, 5, 6, 7, = 8, 9] > 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Detecting request c= haracter encoding is disable. > 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Failed to obtain Re= sponse#setHeader() method: > java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.se= tHeader(java.lang.String, java.lang.String) > ..... > Please suggest. > Thanks in Advance -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= p://jira.jboss.com/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3105602582156243043==-- From jira-events at lists.jboss.org Mon Apr 28 15:10:08 2008 Content-Type: multipart/mixed; boundary="===============0048309952035708998==" MIME-Version: 1.0 From: Alexander Smirnov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Commented: (RF-2203) suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to obtain Response#setHeader() method: java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" Date: Mon, 28 Apr 2008 15:10:08 -0400 Message-ID: <33184952.1209409808803.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 16993975.1202467263762.JavaMail.jira@cloud.prod.atl2.jboss.com --===============0048309952035708998== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ http://jira.jboss.com/jira/browse/RF-2203?page=3Dcomments#action_1241= 0999 ] = = Alexander Smirnov commented on RF-2203: --------------------------------------- Wich version of the Jboss PortletBridge library is used ? > suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to ob= tain Response#setHeader() method: java.lang.NoSuchMethodException: org.jbos= s.portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" > -------------------------------------------------------------------------= ---------------------------------------------------------------------------= --------------------------------------------------------------------------- > > Key: RF-2203 > URL: http://jira.jboss.com/jira/browse/RF-2203 > Project: RichFaces > Issue Type: Bug > Components: portal > Affects Versions: 3.2.0 > Environment: jboss portal 2.4.1 jdk1.5 RF3.1.4GA > Reporter: prashant verma > Assigned To: Alexander Smirnov > Fix For: 3.2.1 > > > hi here is my code. > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://richfaces.org/rich" prefix=3D"rich"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > > > repeater > > > > > > > suggestionAction=3D"#{bean.autocomplete}" var=3D"suggest" height=3D"50" > width=3D"100"> > > > > > > > > > > bean is this :- = > public class Bean { > private String text =3D ""; > public Bean() { > } > public String getText() { > return text; > } > public void setText(String text) { > this.text =3D text; > } > public List autocomplete(Object event) { > String pref =3D event.toString(); > System.out.println("pref : "+pref); > ArrayList a =3D new ArrayList(); > for(int i =3D0 ;i<10;i++) > a.add(i+""); > System.out.println("a - "+a); = > return a; = > } > }} > i have made appropriate enteries in the faces-config.xml > Everything is fine but when I try to access the page in the jbossportal t= hen while rerendering this err occurs > ..... > 16:07:10,923 INFO [STDOUT] pref : 1 > 16:07:10,923 INFO [STDOUT] engineModelValues - [0, 1, 2, 3, 4, 5, 6, 7, = 8, 9] > 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Detecting request c= haracter encoding is disable. > 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Failed to obtain Re= sponse#setHeader() method: > java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.se= tHeader(java.lang.String, java.lang.String) > ..... > Please suggest. > Thanks in Advance -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= p://jira.jboss.com/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============0048309952035708998==-- From jira-events at lists.jboss.org Fri May 2 15:39:55 2008 Content-Type: multipart/mixed; boundary="===============1397887457989755960==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-2203) suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to obtain Response#setHeader() method: java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" Date: Fri, 02 May 2008 15:39:55 -0400 Message-ID: <28926586.1209757195344.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 16993975.1202467263762.JavaMail.jira@cloud.prod.atl2.jboss.com --===============1397887457989755960== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ http://jira.jboss.com/jira/browse/RF-2203?page=3Dall ] Nick Belaevski updated RF-2203: ------------------------------- Fix Version/s: 3.2.2 (was: 3.2.1) > suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to ob= tain Response#setHeader() method: java.lang.NoSuchMethodException: org.jbos= s.portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" > -------------------------------------------------------------------------= ---------------------------------------------------------------------------= --------------------------------------------------------------------------- > > Key: RF-2203 > URL: http://jira.jboss.com/jira/browse/RF-2203 > Project: RichFaces > Issue Type: Bug > Components: portal > Affects Versions: 3.2.0 > Environment: jboss portal 2.4.1 jdk1.5 RF3.1.4GA > Reporter: prashant verma > Assigned To: Alexander Smirnov > Fix For: 3.2.2 > > > hi here is my code. > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://richfaces.org/rich" prefix=3D"rich"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > > > repeater > > > > > > > suggestionAction=3D"#{bean.autocomplete}" var=3D"suggest" height=3D"50" > width=3D"100"> > > > > > > > > > > bean is this :- = > public class Bean { > private String text =3D ""; > public Bean() { > } > public String getText() { > return text; > } > public void setText(String text) { > this.text =3D text; > } > public List autocomplete(Object event) { > String pref =3D event.toString(); > System.out.println("pref : "+pref); > ArrayList a =3D new ArrayList(); > for(int i =3D0 ;i<10;i++) > a.add(i+""); > System.out.println("a - "+a); = > return a; = > } > }} > i have made appropriate enteries in the faces-config.xml > Everything is fine but when I try to access the page in the jbossportal t= hen while rerendering this err occurs > ..... > 16:07:10,923 INFO [STDOUT] pref : 1 > 16:07:10,923 INFO [STDOUT] engineModelValues - [0, 1, 2, 3, 4, 5, 6, 7, = 8, 9] > 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Detecting request c= haracter encoding is disable. > 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Failed to obtain Re= sponse#setHeader() method: > java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.se= tHeader(java.lang.String, java.lang.String) > ..... > Please suggest. > Thanks in Advance -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= p://jira.jboss.com/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============1397887457989755960==-- From jira-events at lists.jboss.org Fri May 2 21:26:17 2008 Content-Type: multipart/mixed; boundary="===============8355263870688482747==" MIME-Version: 1.0 From: Nick Belaevski (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-2203) suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to obtain Response#setHeader() method: java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" Date: Fri, 02 May 2008 21:26:16 -0400 Message-ID: <16912157.1209777976896.JavaMail.jira@cloud.prod.atl2.jboss.com> In-Reply-To: 16993975.1202467263762.JavaMail.jira@cloud.prod.atl2.jboss.com --===============8355263870688482747== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ http://jira.jboss.com/jira/browse/RF-2203?page=3Dall ] Nick Belaevski updated RF-2203: ------------------------------- Fix Version/s: Future (was: 3.2.2) > suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to ob= tain Response#setHeader() method: java.lang.NoSuchMethodException: org.jbos= s.portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" > -------------------------------------------------------------------------= ---------------------------------------------------------------------------= --------------------------------------------------------------------------- > > Key: RF-2203 > URL: http://jira.jboss.com/jira/browse/RF-2203 > Project: RichFaces > Issue Type: Bug > Components: portal > Affects Versions: 3.2.0 > Environment: jboss portal 2.4.1 jdk1.5 RF3.1.4GA > Reporter: prashant verma > Assigned To: Alexander Smirnov > Fix For: Future > > > hi here is my code. > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://richfaces.org/rich" prefix=3D"rich"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > > > repeater > > > > > > > suggestionAction=3D"#{bean.autocomplete}" var=3D"suggest" height=3D"50" > width=3D"100"> > > > > > > > > > > bean is this :- = > public class Bean { > private String text =3D ""; > public Bean() { > } > public String getText() { > return text; > } > public void setText(String text) { > this.text =3D text; > } > public List autocomplete(Object event) { > String pref =3D event.toString(); > System.out.println("pref : "+pref); > ArrayList a =3D new ArrayList(); > for(int i =3D0 ;i<10;i++) > a.add(i+""); > System.out.println("a - "+a); = > return a; = > } > }} > i have made appropriate enteries in the faces-config.xml > Everything is fine but when I try to access the page in the jbossportal t= hen while rerendering this err occurs > ..... > 16:07:10,923 INFO [STDOUT] pref : 1 > 16:07:10,923 INFO [STDOUT] engineModelValues - [0, 1, 2, 3, 4, 5, 6, 7, = 8, 9] > 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Detecting request c= haracter encoding is disable. > 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Failed to obtain Re= sponse#setHeader() method: > java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.se= tHeader(java.lang.String, java.lang.String) > ..... > Please suggest. > Thanks in Advance -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= p://jira.jboss.com/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============8355263870688482747==-- From jira-events at lists.jboss.org Fri Jun 4 16:34:25 2010 Content-Type: multipart/mixed; boundary="===============3165221437505624759==" MIME-Version: 1.0 From: Alexander Smirnov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Updated: (RF-2203) suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to obtain Response#setHeader() method: java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" Date: Fri, 04 Jun 2010 16:34:25 -0400 Message-ID: <764164027.1970.1275683665423.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 16993975.1202467263762.JavaMail.jira@cloud.prod.atl2.jboss.com --===============3165221437505624759== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://jira.jboss.org/browse/RF-2203?page=3Dcom.atlassian.jira.plug= in.system.issuetabpanels:all-tabpanel ] Alexander Smirnov updated RF-2203: ---------------------------------- Original Estimate: 0 minutes Remaining Estimate: 0 minutes These error messages would be ignored > suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to ob= tain Response#setHeader() method: java.lang.NoSuchMethodException: org.jbos= s.portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" > -------------------------------------------------------------------------= ---------------------------------------------------------------------------= --------------------------------------------------------------------------- > > Key: RF-2203 > URL: https://jira.jboss.org/browse/RF-2203 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: portal > Affects Versions: 3.2.0 > Environment: jboss portal 2.4.1 jdk1.5 RF3.1.4GA > Reporter: prashant verma > Assignee: Alexander Smirnov > Fix For: Future > > Original Estimate: 0 minutes > Remaining Estimate: 0 minutes > > hi here is my code. > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://richfaces.org/rich" prefix=3D"rich"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > > > repeater > > > > > > > suggestionAction=3D"#{bean.autocomplete}" var=3D"suggest" height=3D"50" > width=3D"100"> > > > > > > > > > > bean is this :- = > public class Bean { > private String text =3D ""; > public Bean() { > } > public String getText() { > return text; > } > public void setText(String text) { > this.text =3D text; > } > public List autocomplete(Object event) { > String pref =3D event.toString(); > System.out.println("pref : "+pref); > ArrayList a =3D new ArrayList(); > for(int i =3D0 ;i<10;i++) > a.add(i+""); > System.out.println("a - "+a); = > return a; = > } > }} > i have made appropriate enteries in the faces-config.xml > Everything is fine but when I try to access the page in the jbossportal t= hen while rerendering this err occurs > ..... > 16:07:10,923 INFO [STDOUT] pref : 1 > 16:07:10,923 INFO [STDOUT] engineModelValues - [0, 1, 2, 3, 4, 5, 6, 7, = 8, 9] > 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Detecting request c= haracter encoding is disable. > 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Failed to obtain Re= sponse#setHeader() method: > java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.se= tHeader(java.lang.String, java.lang.String) > ..... > Please suggest. > Thanks in Advance -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= ps://jira.jboss.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============3165221437505624759==-- From jira-events at lists.jboss.org Fri Jun 4 16:34:25 2010 Content-Type: multipart/mixed; boundary="===============7233884646438685828==" MIME-Version: 1.0 From: Alexander Smirnov (JIRA) To: richfaces-issues at lists.jboss.org Subject: [richfaces-issues] [JBoss JIRA] Resolved: (RF-2203) suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to obtain Response#setHeader() method: java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" Date: Fri, 04 Jun 2010 16:34:25 -0400 Message-ID: <83266255.1974.1275683665577.JavaMail.tomcat@jira02.app.mwc.hst.phx2.redhat.com> In-Reply-To: 16993975.1202467263762.JavaMail.jira@cloud.prod.atl2.jboss.com --===============7233884646438685828== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable [ https://jira.jboss.org/browse/RF-2203?page=3Dcom.atlassian.jira.plug= in.system.issuetabpanels:all-tabpanel ] Alexander Smirnov resolved RF-2203. ----------------------------------- Resolution: Out of Date > suggestionbox in Jboss portal gives err "AjaxRendererUtils - Failed to ob= tain Response#setHeader() method: java.lang.NoSuchMethodException: org.jbos= s.portlet.JBossRenderResponse.setHeader(java.lang.String, jave.lan.string)" > -------------------------------------------------------------------------= ---------------------------------------------------------------------------= --------------------------------------------------------------------------- > > Key: RF-2203 > URL: https://jira.jboss.org/browse/RF-2203 > Project: RichFaces > Issue Type: Bug > Security Level: Public(Everyone can see) = > Components: portal > Affects Versions: 3.2.0 > Environment: jboss portal 2.4.1 jdk1.5 RF3.1.4GA > Reporter: prashant verma > Assignee: Alexander Smirnov > Fix For: Future > > Original Estimate: 0 minutes > Remaining Estimate: 0 minutes > > hi here is my code. > <%@ taglib uri=3D"http://richfaces.org/a4j" prefix=3D"a4j"%> > <%@ taglib uri=3D"http://richfaces.org/rich" prefix=3D"rich"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/html" prefix=3D"h"%> > <%@ taglib uri=3D"http://java.sun.com/jsf/core" prefix=3D"f"%> > > > repeater > > > > > > > suggestionAction=3D"#{bean.autocomplete}" var=3D"suggest" height=3D"50" > width=3D"100"> > > > > > > > > > > bean is this :- = > public class Bean { > private String text =3D ""; > public Bean() { > } > public String getText() { > return text; > } > public void setText(String text) { > this.text =3D text; > } > public List autocomplete(Object event) { > String pref =3D event.toString(); > System.out.println("pref : "+pref); > ArrayList a =3D new ArrayList(); > for(int i =3D0 ;i<10;i++) > a.add(i+""); > System.out.println("a - "+a); = > return a; = > } > }} > i have made appropriate enteries in the faces-config.xml > Everything is fine but when I try to access the page in the jbossportal t= hen while rerendering this err occurs > ..... > 16:07:10,923 INFO [STDOUT] pref : 1 > 16:07:10,923 INFO [STDOUT] engineModelValues - [0, 1, 2, 3, 4, 5, 6, 7, = 8, 9] > 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Detecting request c= haracter encoding is disable. > 16:07:10,923 INFO [STDOUT] ERROR AjaxRendererUtils - Failed to obtain Re= sponse#setHeader() method: > java.lang.NoSuchMethodException: org.jboss.portlet.JBossRenderResponse.se= tHeader(java.lang.String, java.lang.String) > ..... > Please suggest. > Thanks in Advance -- = This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: htt= ps://jira.jboss.org/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira =20 --===============7233884646438685828==--