Thanks ! That resolved the error ... I was mixing up the IP addresses...
> Thanks !
Your future lack of top-posting, will be thanks enough.
(further comments below)
> "Andrew Thompson" <andrewthommo@gmail.com> wrote in message
> >
> >> Can anyone point out the error to me here ?
...
> >> } catch (IOException e) {
...
> > // what went wrong?
> > e.printStackTrace();
>That resolved the error ...
Excellent! Glad you sorted it.
Those stacktraces are invaluable, aren't they?
Generally, the only time I will suppress a stacktrace
printout is when I absolutely do not care that a problem
happened..
- a thread 'sleep' is interrupted // wake and continue
- a method/class is missing but we have a
fall-back // 'set always on top' not available, use 'to front'
..even then, I will document why the exception is ignored.
>...I was mixing up the IP addresses...
..and thanks for reporting the solution.
Andrew T.