Hi guys,
maybe this is a little off topic but perhaps somebody has already met this trouble that torments me. I' ve a WO application which works fine with session id in url and apache mod_ rewrite, but I'm in trouble if I switch to session cookie mode. I enable the cookies in the following way public Session() {
super(); setStoresIDsInURLs(false); setStoresIDsInCookies(true); } and the following is my rule in apache rewrite (v 1.3.x) RewriteRule ^/name/([^/]+)$ /cgi-bin/WebObjects/PasoPage.woa/wa/displayPage?name=$1 [PT]
www.myserver.com/cgi-bin/WebObjects/PasoPage.woa/wa/displayPage?name=MyPage
but WO opens the page in a new session. It seems that WO can't see the rewrited url coming from the same session of the surfing of the previous pages. As I' ve said, there's no problem if I work with session id in url. Can you suggests any hints? Regards
Paolo Sommaruga
|