Greg Wilkins
0b522aee32
javadoc
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1278 7e9141cc-0065-0410-87d8-b60c137991c4
2010-02-19 03:31:40 +00:00
Greg Wilkins
b616fc1e3a
301089 fixed test
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1270 7e9141cc-0065-0410-87d8-b60c137991c4
2010-02-16 21:35:19 +00:00
Jan Bartel
4ad2ddd43e
JETTY-1179
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1269 7e9141cc-0065-0410-87d8-b60c137991c4
2010-02-16 04:15:28 +00:00
Greg Wilkins
176ba8073f
302018 301089 300933 Improve statistics
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1268 7e9141cc-0065-0410-87d8-b60c137991c4
2010-02-15 22:05:22 +00:00
Greg Wilkins
37fe212f35
JETTY-983 range handling cleanup
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1267 7e9141cc-0065-0410-87d8-b60c137991c4
2010-02-15 05:14:07 +00:00
Greg Wilkins
d208d55652
294563 removed UpgradeConnectionException from websocket handling
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1263 7e9141cc-0065-0410-87d8-b60c137991c4
2010-02-11 01:31:17 +00:00
Greg Wilkins
ea14de47b7
improved timeout handling
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1252 7e9141cc-0065-0410-87d8-b60c137991c4
2010-02-09 11:38:25 +00:00
Greg Wilkins
0340565c25
JETTY-1177 Allow error handler to set cacheControl
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1245 7e9141cc-0065-0410-87d8-b60c137991c4
2010-02-06 02:50:11 +00:00
Greg Wilkins
797a69d2b7
using reader for tests
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1243 7e9141cc-0065-0410-87d8-b60c137991c4
2010-02-05 15:39:11 +00:00
Greg Wilkins
7865c22209
improved test for unconsumed
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1242 7e9141cc-0065-0410-87d8-b60c137991c4
2010-02-05 15:06:36 +00:00
Greg Wilkins
50bb0cd8fc
301089 Improve statistics available in StatisticsHandler and AbstractConnector
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1236 7e9141cc-0065-0410-87d8-b60c137991c4
2010-02-03 21:40:16 +00:00
Greg Wilkins
8ea3b1b770
301089 Improve statistics available in StatisticsHandler and AbstractConnector
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1235 7e9141cc-0065-0410-87d8-b60c137991c4
2010-02-03 13:38:57 +00:00
Greg Wilkins
3e15950eed
IBM JVM does not allow renegotiate
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1229 7e9141cc-0065-0410-87d8-b60c137991c4
2010-02-02 14:09:29 +00:00
Greg Wilkins
1a995d876d
key store algorithm for Ibm JVM
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1228 7e9141cc-0065-0410-87d8-b60c137991c4
2010-02-02 14:00:58 +00:00
Jan Bartel
c378bc797b
JETTY-776
...
Remove LightLoad test as this is not applicable for the JDBC solution. It only works with terracotta because terracotta takes out a cluster-wide lock when the session is entered on any node. This means you can bounce the session around nodes. This does not work with the JDBC session implementation as it is not feasible to do a cluster-wide lock on particular row on the sessions table.
Add a method on JDBCSessionManager that would allow a subclass to send a message to all other nodes whenever the session is being written to the database which would cause the other nodes to invalidate that session in their local caches and re-read from the database.
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1218 7e9141cc-0065-0410-87d8-b60c137991c4
2010-01-28 00:54:40 +00:00
Greg Wilkins
4d65767692
300933 - AbstractConnector uses concurrent objects for stats
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1217 7e9141cc-0065-0410-87d8-b60c137991c4
2010-01-27 09:20:05 +00:00
Jan Bartel
28453e9c24
Add new test-sessions module to do testing of various session implementations. The test-session-common module was created based on the terracotta session test suite checked into jetty-codehaus. I've genericized these tests so that they may be applied to the various session clustering solutions.
...
Changes to JDBCSessionIdManager with this checkin were to increase the length of the varchar storing the session id from 60 to 120 char, and also to reduce the amount of time we held a lock over the session id map.
Changes to the JDBCSessionManager with this checkin were to decrease the amount of time we held locks, and when retrieving a session from the database, checking if the session had expired before loading it.
Changes to the AbstractSessionManager with this checkin were to ensure that the SessionListeners were only called if the session was removed (we were calling them anyway).
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1213 7e9141cc-0065-0410-87d8-b60c137991c4
2010-01-26 01:37:03 +00:00
Greg Wilkins
0b7850d179
removed sun tests. dump to std err
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1211 7e9141cc-0065-0410-87d8-b60c137991c4
2010-01-24 23:46:49 +00:00
Greg Wilkins
eaab420027
298667 deployer cleanups
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1193 7e9141cc-0065-0410-87d8-b60c137991c4
2010-01-12 00:44:49 +00:00
Greg Wilkins
ff553a6364
fixed test
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1183 7e9141cc-0065-0410-87d8-b60c137991c4
2010-01-06 01:09:57 +00:00
Greg Wilkins
52fc378b93
298667 various deployer improvements
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1174 7e9141cc-0065-0410-87d8-b60c137991c4
2009-12-31 03:02:16 +00:00
Greg Wilkins
8e19d18057
298667 DeploymentManager improvements
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1173 7e9141cc-0065-0410-87d8-b60c137991c4
2009-12-30 23:45:16 +00:00
Greg Wilkins
1b0347c0ac
JETTY-910 Allow request listeners to access session
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1158 7e9141cc-0065-0410-87d8-b60c137991c4
2009-12-17 13:00:28 +00:00
Greg Wilkins
07e3fa3ac2
JETTY-1157 Do not hold array passed in write bytes
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1147 7e9141cc-0065-0410-87d8-b60c137991c4
2009-12-11 22:22:51 +00:00
Greg Wilkins
5e73e0462c
bind server socket in blocking mode
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1141 7e9141cc-0065-0410-87d8-b60c137991c4
2009-12-11 00:19:30 +00:00
Greg Wilkins
3fea82d8a4
296765 JMX Connector Server and ShutdownThread
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1140 7e9141cc-0065-0410-87d8-b60c137991c4
2009-12-10 23:21:06 +00:00
Joakim Erdfelt
3e91339db5
Adding Jetty DeploymentManager to jetty.xml as default deployer with
...
standard configuration to mimic the legacy deployer behavior.
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1131 7e9141cc-0065-0410-87d8-b60c137991c4
2009-12-07 20:39:49 +00:00
Greg Wilkins
b59b02e81a
executor
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1128 7e9141cc-0065-0410-87d8-b60c137991c4
2009-12-05 21:40:40 +00:00
Greg Wilkins
e143ea826c
[maven-release-plugin] prepare for next development iteration
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1098 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-25 02:10:28 +00:00
Greg Wilkins
184d5df776
[maven-release-plugin] prepare release jetty-7.0.1.v20091125
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1096 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-25 02:06:41 +00:00
Greg Wilkins
61e8a2bf2a
fixed Date handling for 1xx responses
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1094 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-25 01:49:42 +00:00
Jesse McConnell
ef96101e68
[maven-release-plugin] prepare for next development iteration
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1093 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-24 17:59:51 +00:00
Jesse McConnell
a2a38f6a34
[maven-release-plugin] prepare release jetty-7.0.1.v20091123
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1091 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-24 17:59:22 +00:00
Greg Wilkins
d2898371e3
clean up tests
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1089 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-24 00:00:17 +00:00
Greg Wilkins
f9455c7712
demo websocket implementation
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1087 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-23 08:44:37 +00:00
Jesse McConnell
153bd88fc6
[maven-release-plugin] prepare for next development iteration
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1086 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-22 14:11:27 +00:00
Jesse McConnell
dfbd0b47b5
[maven-release-plugin] prepare release jetty-7.0.1.v20091122
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1084 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-22 14:07:52 +00:00
Jesse McConnell
4bb4112521
[maven-release-plugin] prepare for next development iteration
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1067 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-18 17:41:17 +00:00
Jesse McConnell
bdee1f039f
[maven-release-plugin] prepare release jetty-7.0.1.v20091117
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1065 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-18 17:41:02 +00:00
Greg Wilkins
d8f44e67ac
test too non deterministic
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1060 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-17 22:13:18 +00:00
Jesse McConnell
b85de61651
[maven-release-plugin] prepare for next development iteration
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1057 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-17 03:07:25 +00:00
Jesse McConnell
e58f1ca595
[maven-release-plugin] prepare release jetty-7.0.1.v20091116
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1055 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-17 03:06:58 +00:00
Greg Wilkins
a190a5447c
JETTY-1148 Reset partially read request reader
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1049 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-16 13:19:55 +00:00
Greg Wilkins
102625b86c
CVE-2009-3555 prevent renegotiation
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1048 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-16 10:53:15 +00:00
Greg Wilkins
b90ad09443
CVE-2009-3555 prevent renegotiation
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1047 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-15 23:41:46 +00:00
Greg Wilkins
2a3750fe1e
294563 Initial websocket implementation working
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1043 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-12 03:27:35 +00:00
Greg Wilkins
792395284d
JETTY-1144 charset set for tests for bamboo
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1032 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-07 06:56:47 +00:00
Greg Wilkins
e044abdbde
JETTY-1144 removed test for bamboo
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1031 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-07 06:41:08 +00:00
Greg Wilkins
45b6b6abe7
JETTY-1144 fixed multi-byte character overflow
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1030 7e9141cc-0065-0410-87d8-b60c137991c4
2009-11-07 05:42:15 +00:00
Greg Wilkins
b170e765f3
293222 improved statistics collection for async
...
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1022 7e9141cc-0065-0410-87d8-b60c137991c4
2009-10-31 12:10:54 +00:00