[JBoss-user] [JBoss Portal] - Re: preferences from non authenticated user

2006-01-18 Thread kevs3d
That's exactly what i need - a small set (couple of strings) of preferences per user, so I was thinking that a Cookie store would be acceptable. Kev View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3918179#3918179 Reply to the post : http://www.jboss.com/index

[JBoss-user] [JBoss Portal] - Re: preferences from non authenticated user

2006-01-18 Thread kevs3d
Hello, I am interested in finding a way to solve this problem. I couldn't find the PreferencesInterceptor.java class you mention in the 2.2.0 code - has this changed recently? I would like to know what you suggest for solving this kind of issue. Basically we have our own authentication (not us

[JBoss-user] [JBoss Portal] - Re: UTF-8 form support not working Jboss portal?

2005-09-20 Thread kevs3d
So any other interested parties know, I have fixed the issue. I modified the file: org.jboss.portal.server.servlet.AbstractMainServlet and changed this method thus: |protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException |{ |

[JBoss-user] [JBoss Portal] - Re: UTF-8 form support not working Jboss portal?

2005-09-15 Thread kevs3d
"fheldt" wrote : You have to submit the form with the right charset | | | Yes I'm already doing that as I said in my previous message: >So now I attempt to enter UTF-8 characters in my FORM, the HTML FORM has the >following attribute: acceptCharset="UTF-8"... The issue appears to in the

[JBoss-user] [JBoss Portal] - UTF-8 form support not working Jboss portal?

2005-09-15 Thread kevs3d
To get the display of UTF-8 characters to work correctly, I added the following to all of our portlet JSP pages: <%@ page contentType="text/html;charset=UTF-8" %> We found that JBoss Portal will display UTF-8 characters fine - BUT we have not found a why to submit them correctly in a FORM yet..