Closed GoogleCodeExporter closed 8 years ago
Issue 161 has been merged into this issue.
Original comment by martin.grotzke
on 14 Jun 2013 at 11:55
For both sticky and non-sticky sessions a newly created session was not stored
in memcached when the context was configured with cookies="false". This is now
fixed.
Original comment by martin.grotzke
on 15 Jun 2013 at 10:41
[deleted comment]
Hi,
<Context cookies="false" >
<!-- Default set of monitored resources -->
<WatchedResource>WEB-INF/web.xml</WatchedResource>
<!-- Uncomment this to disable session persistence across Tomcat restarts -->
<!--
<Manager pathname="" />
-->
<!-- Uncomment this to enable Comet connection tacking (provides events
on session expiration as well as webapp lifecycle) -->
<!--
<Valve className="org.apache.catalina.valves.CometConnectionManagerValve" />
-->
<Manager className="de.javakaffee.web.msm.MemcachedBackupSessionManager"
memcachedNodes="endpoint:11211"
requestUriIgnorePattern=".*\.(ico|png|gif|jpg|css|js)$"
transcoderFactoryClass="de.javakaffee.web.msm.serializer.kryo.KryoTranscoderFactory"
sessionBackupAsync="false"
sessionBackupTimeout="100"
sticky="false"
copyCollectionsForSerialization="false"
/>
</Context>
when i tried login manually i am able to login but after logging in for each
request i am getting 403 error. I have 1.6.5 jars configured.
Actually, i am doing duration test in the AWS with the tool jmeter. we are
getting 403 after few minutes into the test, pl see the below setting we tried
in the memcache:
<Context >
<!-- Default set of monitored resources -->
<WatchedResource>WEB-INF/web.xml</WatchedResource>
<!-- Uncomment this to disable session persistence across Tomcat restarts -->
<!--
<Manager pathname="" />
-->
<!-- Uncomment this to enable Comet connection tacking (provides events
on session expiration as well as webapp lifecycle) -->
<!--
<Valve className="org.apache.catalina.valves.CometConnectionManagerValve" />
-->
<Manager className="de.javakaffee.web.msm.MemcachedBackupSessionManager"
memcachedNodes="endpoint:11211"
requestUriIgnorePattern=".*\.(ico|png|gif|jpg|css|js)$"
transcoderFactoryClass="de.javakaffee.web.msm.serializer.kryo.KryoTranscoderFactory"
sessionBackupAsync="false"
sessionBackupTimeout="100"
sticky="true"
copyCollectionsForSerialization="false"
/>
</Context>
Can you please let me know why we are getting 403 after a few minutes into the
test. we have configured the 1.6.5 jars.
Original comment by gagan.jo...@snapwiz.com
on 11 Dec 2013 at 1:37
Original issue reported on code.google.com by
lstczhan...@gmail.com
on 2 Apr 2013 at 7:22