Re: Using POST to send bitmap image with Java
- From: Arne Vajhøj <arne@xxxxxxxxxx>
- Date: Sat, 31 May 2008 15:04:07 -0400
Dave Miller wrote:
Lew wrote:s0suk3@xxxxxxxxx wrote:Apache - POST, DELETE and PUT all require handlers. The below is an old article but, AFAIK, the server hasn't changed as of 2.2 (If you know different, please post reference - I'd like to know how to implement.)On May 30, 6:44 pm, Arne Vajhøj <a...@xxxxxxxxxx> wrote:Not all web servers support or is configured to allow PUT,
while POST is supported by all web servers.
Not necessarily. An HTTP compliant server is only required to
implement GET and HEAD; all other methods are optional.
Example from the real world?
http://www.apacheweek.com/features/put
That article is pretty bad.
#In fact, Apache handles PUT exactly like it handles the POST method.
#That is, it supports it, but in order for it to do anything useful you
#need to supply a suitable CGI program. This is on contrast to the GET
#method, which Apache supports internally by sending back files or SSI
#documents.
is not a very accurate description.
GET and POST are identical:
* the browser specify what script to run
* no special configuration of method is needed
(the only difference is that GET is good for both static and
dynamic resources while POST is only good for dynamic
resources)
PUT requires special configuration in the server and the
script is specified there - not by the browser.
Arne
.
- References:
- Using POST to send bitmap image with Java
- From: Dexter
- Re: Using POST to send bitmap image with Java
- From: Dave Miller
- Re: Using POST to send bitmap image with Java
- From: Kenneth P. Turvey
- Re: Using POST to send bitmap image with Java
- From: Arne Vajhøj
- Re: Using POST to send bitmap image with Java
- From: s0suk3
- Re: Using POST to send bitmap image with Java
- From: Lew
- Re: Using POST to send bitmap image with Java
- From: Dave Miller
- Using POST to send bitmap image with Java
- Prev by Date: Re: Using POST to send bitmap image with Java
- Next by Date: Concurrency and Performance
- Previous by thread: Re: Using POST to send bitmap image with Java
- Next by thread: Re: Using POST to send bitmap image with Java
- Index(es):
Relevant Pages
|