Thanks Stuart for the idea on running the java program to make sure.
Of course that works perfectly. But at least one more issue taken care
of.
So recapping, here is what it does NOT appear to be
- proxy problem
- java permission problem
- firewall problem
- network problem
- JAVA_HOME problem
Anyone else got any other brilliant ideas ?
> have you tried running a simple Java app, such as:
>
> //==================================
> import java.net.InetAddress;
>
> public class getByName {
> public static void main(String[] args) throws Exception {
> if (args.length > 0) {
> System.out.println(InetAddress.getByName(args[0]));
> } else {
> System.out.println("java getByName <host>");
> }
> }
> }
> //==================================
>
> to make sure that this isn't an application permissions/access issue?
>
> example: java getByName repo1.maven.org
> result: repo1.maven.org/63.246.20.112
>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]