Re: FW: URLConnection.getOutputStream().write() fails

2005-08-03 Thread julian
Hi Wade :) Not sure what you are trying to do here, but what you are doing is attempting to POST to a text file. Correct. One your TC server is probably only allowing a GET on the .txt file as it will not process the .txt file, So, as a Tomcat newbie, is there a configuration I need to

Re: FW: URLConnection.getOutputStream().write() fails

2005-08-03 Thread julian
Hi Wade :) Not sure what you are trying to do here, but what you are doing is attempting to POST to a text file. Correct. One your TC server is probably only allowing a GET on the .txt file as it will not process the .txt file, So, as a Tomcat newbie, is there a configuration I need to

Re: FW: URLConnection.getOutputStream().write() fails

2005-08-03 Thread Wade Chandler
Yes this is a PUT actually. A POST will simply send parameters to the server as a stream with the server some how making a process operate on the POST info (usually the file POST to such as a .jsp or a .php file) unless you have a special servlet for taking a POST and dumping the input stream to

Re: FW: URLConnection.getOutputStream().write() fails

2005-08-03 Thread Wade Chandler
You can also learn more about the default servlet here: http://jakarta.apache.org/tomcat/tomcat-5.5-doc/catalina/funcspecs/fs-default.html Hope it helps, Wade --- [EMAIL PROTECTED] wrote: Hi Wade :) Not sure what you are trying to do here, but what you are doing is attempting to POST