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
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
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
|{
|
"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
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..