Hi
I'm trying to do this:
try {
URL url = new URL("http://localhost/manager/reload?path=/DynaServlet");
HttpURLConnection con = (HttpURLConnection)url.openConnection();
BufferedReader in = new BufferedReader(
new InputStreamReader(
con.getInputStream()));
String inputLine;
while ((inputLine = in.readLine()) != null)
out.write(inputLine + "<br>");
in.close();
} catch (Exception e) {
out.write(e.toString()+"<br>");
}
from an HttpServlet. I'm getting:
java.io.IOException: Server returned HTTP response code: 401 for URL:
http://localhost/manager/reload?path=/DynaServlet
even when I change the URL to something like http://user:[EMAIL
PROTECTED]/manager/reload?path=/DynaServet I get the same exception.
Any ideas why?
Thanks
Dom