Simone Bordet
06504f2c65
Fixed proxy test.
2013-07-25 17:20:17 +02:00
Simone Bordet
ee3c249579
Merged branch 'jetty-7' into 'jetty-8'.
2013-07-25 16:08:58 +02:00
Simone Bordet
3b18490ead
409028 - Jetty HttpClient does not work with proxy CONNECT method.
...
The problem was due to the fact that the server replied with HTTP/1.0
to the CONNECT request; because of this, the parser was set as non
persistent, and the tunnel was immediately closed.
Now we are setting the parser as persistent if the method is a CONNECT,
no matter what HTTP version the server specifies.
2013-07-25 16:08:02 +02:00
Jesse McConnell
e0ad2c4ee1
[maven-release-plugin] prepare for next development iteration
2013-07-25 07:52:39 -05:00
Jesse McConnell
99712058ca
[maven-release-plugin] prepare release jetty-8.1.11.v20130725
2013-07-25 07:52:32 -05:00
Jesse McConnell
767dbe6778
[maven-release-plugin] prepare for next development iteration
2013-07-25 07:48:09 -05:00
Jesse McConnell
cfa6076c4f
[maven-release-plugin] prepare release jetty-7.6.11.v20130725
2013-07-25 07:48:02 -05:00
Jesse McConnell
c805b15b3e
set for release
2013-07-25 07:17:10 -05:00
Jesse McConnell
7fce5e3950
set for release
2013-07-25 07:16:58 -05:00
Jesse McConnell
e3cc7023f8
Merge branch 'jetty-8' into release-8
2013-07-25 07:12:10 -05:00
Jesse McConnell
4c805903f8
Merge branch 'jetty-7' into release-7
2013-07-25 07:08:49 -05:00
Jan Bartel
72b077921d
Merge remote-tracking branch 'origin/jetty-7' into jetty-8
2013-07-25 11:26:35 +10:00
Greg Wilkins
2f08ba2948
413684 - Trailing slash shows JSP source
...
Fixed alias checkers. Non existent directory does check for none existence. Prefix and Suffix check look for none empty/trivial prefix/suffixes
2013-07-25 11:01:23 +10:00
Joakim Erdfelt
ab7268e516
413684 - Trailing slash shows JSP source
...
+ Adding testcase to replicate issue.
2013-07-24 16:43:02 -07:00
Thomas Becker
af02334ff7
412750 HttpClient close expired connections fix
2013-07-11 15:13:01 +02:00
Simone Bordet
8eb6649709
412712 - HttpClient does not send the terminal chunk after partial writes.
...
HttpGenerator._header and HttpGenerator._buffer may be null when
the content is written after a partial write.
In this case, the terminal chunk was not prepared, and therefore never
written.
The fix simply creates a HttpGenerator._header to prepare the terminal
chunk, so that it will be written.
2013-07-10 22:57:48 +02:00
Greg Wilkins
606c042691
Merge remote-tracking branch 'origin/jetty-7' into jetty-8
2013-07-04 15:52:39 +10:00
Greg Wilkins
cb0084260f
411216 RequestLogHandler handles async completion
2013-07-04 15:22:56 +10:00
Greg Wilkins
37de67d3d7
Merge remote-tracking branch 'origin/jetty-7' into jetty-8
2013-07-04 14:59:55 +10:00
Greg Wilkins
49f865c45a
commented out incomplete test for EOF content
2013-07-04 14:59:22 +10:00
Greg Wilkins
8d455056ec
Merge remote-tracking branch 'origin/jetty-7' into jetty-8
...
Conflicts:
test-continuation/src/test/java/org/eclipse/jetty/continuation/ContinuationTest.java
2013-07-04 14:40:45 +10:00
Greg Wilkins
7ad4d80af2
411216 RequestLogHandler handles async completion
2013-07-04 14:32:47 +10:00
Jan Bartel
8aac3eef48
Merge remote-tracking branch 'origin/jetty-7' into jetty-8
...
Conflicts:
jetty-servlets/src/main/java/org/eclipse/jetty/servlets/MultiPartFilter.java
2013-07-04 11:15:39 +10:00
Jan Bartel
091a419568
411755 MultiPartInputStreamParser fails on base64 encoded content
2013-07-04 11:11:44 +10:00
Jan Bartel
c934bbe45c
411755 MultiPartInputStreamParser fails on base64 encoded content
2013-07-04 10:22:22 +10:00
Joakim Erdfelt
aa1aae182a
Instituting Content-Length OR Transfer-Encoding check in GzipFilter tests
...
+ Tests currently fail, will let greg look deeply into jetty's eyes to
determine why it defiantly doesn't want to cooperate with greg.
2013-06-30 16:37:08 -07:00
Jesse McConnell
f262dce23b
add test for gzip streaming and flushing write
2013-06-28 15:39:12 -05:00
Jesse McConnell
c089335f51
add test for gzip streaming and flushing write
2013-06-28 14:58:55 -05:00
Joakim Erdfelt
568bb3db0d
Merge branch 'jetty-7' into jetty-8
2013-06-28 10:21:17 -07:00
Joakim Erdfelt
162cbc1416
411909 - GzipFilter flushbuffer() results in erroneous finish() call
...
+ Bad finish() call changed to more appropriate flush() call
2013-06-28 10:20:20 -07:00
Jan Bartel
a7436bc774
Merge remote-tracking branch 'origin/jetty-7' into jetty-8
...
Conflicts:
jetty-servlets/src/main/java/org/eclipse/jetty/servlets/MultiPartFilter.java
jetty-servlets/src/test/java/org/eclipse/jetty/servlets/MultipartFilterTest.java
2013-06-24 16:44:45 +10:00
Jan Bartel
0daddd1a3a
411458 MultiPartFilter getParameterMap doesn't preserve multivalued parameters
...
411459 MultiPartFilter.Wrapper getParameter should use charset encoding of part
2013-06-24 16:20:04 +10:00
Greg Wilkins
068e67a8df
Code cleanups for direct RequestDispatcher access
2013-06-24 13:13:03 +10:00
Greg Wilkins
b2b2ce25fc
Revert "Code cleanups for direct RequestDispatcher access"
...
This reverts commit 1ff665f76a
.
2013-06-24 13:11:04 +10:00
Greg Wilkins
1ff665f76a
Code cleanups for direct RequestDispatcher access
2013-06-24 13:00:21 +10:00
Simone Bordet
d7c5418718
Merged branch 'jetty-7' into 'jetty-8'.
2013-06-19 19:44:53 +02:00
Simone Bordet
0bca1974b7
411135 - HttpClient may send proxied https requests to the proxy instead of the target server.
...
Made sure to always tunnel the connection if needs to be tunnelled.
2013-06-19 19:43:49 +02:00
Greg Wilkins
9bf7870c7c
410893 async support defaults to false for spec created servlets and filters
2013-06-17 14:21:53 +10:00
Jan Bartel
1908fff38f
Merge remote-tracking branch 'origin/jetty-7' into jetty-8
2013-06-17 14:11:46 +10:00
Jesse McConnell
78cd94edb3
[Bug 396706] CGI support parameters
2013-06-14 11:24:30 -05:00
Marko Mihovilic
953ab44909
[Bug 410750] NoSQLSessions: implement session context data persistence across server restarts
2013-06-13 16:45:49 -05:00
Jesse McConnell
a582b42d45
add logging properties for testing
2013-06-13 10:31:23 -05:00
Jesse McConnell
bd944080fc
[Bug 397193] MongoSessionManager refresh updates last access time
2013-06-13 09:54:20 -05:00
Jesse McConnell
f9e6cb932c
[Bug 410630] MongoSessionManager conflicting session update op
2013-06-12 16:43:14 -05:00
Jan Bartel
64d979a780
409449 Ensure servlets, filters and listeners added via dynamic registration, annotations or descriptors are cleaned on context restarts
2013-06-12 15:41:03 +10:00
Greg Wilkins
6150f29382
Merge branch 'jetty-8' of ssh://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project into jetty-8
2013-06-11 15:50:29 +10:00
Greg Wilkins
2d661f18dd
410405 Avoid NPE for requestDispatcher(../)
...
Test double encoded dot dot
2013-06-11 15:30:40 +10:00
Jan Bartel
d967ee2c3a
408806 getParameter returns null on Multipart request if called before request.getPart()/getParts()
2013-06-11 14:45:41 +10:00
Greg Wilkins
9b8a78392c
410405 Avoid NPE for requestDispatcher(../)
...
Added extra tests for dotdot and encoded dotdot.
Also protected against dotdot in absolute URIs
2013-06-11 14:44:26 +10:00
Greg Wilkins
ed04753111
410405 Avoid NPE for requestDispatcher(../)
2013-06-11 14:22:54 +10:00