Server returned HTTP response code: 411
Hi
I am getting the following exception
Exception in thread "main" java.io.IOException: Server returned HTTP response code: 411 for URL: http://somehost/media/test/chriskennedydqv01-3.wmv
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1133)
The java code follows
InputStream inputStream =null;
BufferedOutputStream outputStream =null;
URLConnection connection =new URL("http://somehost/media/test/chriskennedydqv01-3.wmv").openConnection();
inputStream = connection.getInputStream();
outputStream =new BufferedOutputStream(new FileOutputStream("Sample.wwmv"));
Can someone help me on this. Very urgent

