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. Link to comment https://forums.phpfreaks.com/topic/143555-apache-server-jsp-post/ 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. Link to comment https://forums.phpfreaks.com/topic/143555-apache-server-jsp-post/#findComment-753196 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.