kjaxx Posted February 3, 2009 Share Posted February 3, 2009 My java app is doing a POST with Multipart format as thetype for a certain file size when uploading a file. The application server is checking the size and returing results, but the Web server is giving a page not found with the results. It appears to be trying do the POST twice even though the response should be just writing an error message to the same page versus submitting a form. I thought there might be a setting in httpd.conf that I could have Apache recognize responses should be text/html or similar versus trying a POST again when writing back to a JSP page. Any help would be welcomed. Quote Link to comment Share on other sites More sharing options...
corbin Posted February 3, 2009 Share Posted February 3, 2009 Apache doesn't control whether or not a request is POST/GET/HEAD/whatever. It simply responds to the request appropriately. Sounds to me like you've got a problem with the client/code. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.