Hello,
try to add following parameter for "action" servlet (web.xml file):
---
action
org.apache.struts.action.ActionServlet
convertNull
true
--
Perhaps the JSESSIONID cookie is lost when you switch from ip-address
to host-name or vice versa
This happens because cookie is assosiated with the host (and path), so
if you redirect IP request to HOSTNAME path the cookie is not
attached to this request (it is supposed to belong to IP-based "doma
Another solution is to implement a Filter that does
request.setCharacterEncoding("UTF-8");
Dima.
VR> Hi,
VR> Try setting request character encoding to UTF-8. I've had the same problem
VR> and solved it by extending ActionServlet to e.g. MyActionServlet (of course
VR> you have to rewrite th
Hello josh,
this is the way we do it:
How to prevent struts application from session creation
===
You must prevent calls to "request.getSession()" (<==> request.getSession(true))
method wich creates HttpSession if it does not exist.
1. Add to
try this
=
function doCancel(p_btn) {
var v_url = "";
v_url = '';
...
=
Dima.
Rj> Hi,
Rj> Let me give more details.
Rj> The actionForm is used thro
5 matches
Mail list logo