apache - BIRT behind a proxy on a Tomcat Server: Sessoin expired -


i'm trieing run eclipse birt on tomcat6 server behind proxy. scenario this: request @ pc url www.webseite.de/client/birt-viewer/.... pc redirects url another, special 1 client. on sever apache proxypass rules redirects request birt this:

proxypass /client/birt-viewer http://localhost:8008/client/birt-viewer proxypassreverse /client/birt-viewer http://localhost:8008/client/birt-viewer 

the next thing changes in in server.xml part of following

 <host name="localhost/client"  appbase="webapps"             unpackwars="true" autodeploy="true"             xmlvalidation="false" xmlnamespaceaware="false"> 

now possible birt-viewer expample, everytime determines following error message: "the viewing session not available or has expired."

what have change, birt run corretly?

okay got it. problem cookie. added following line in http.conf

proxypassreversecookiepath /birt-viewer /client/birt-viewer 

now works!


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -