Does anbody know whats wrong with this
    
  ...
  URL url = new URL("http://172.16.22.101:5433/ctrTest/";);
  resp = call.invoke(url, null);
  ... 

I always get a StringOutOfBoundsException when the URL contains the port
number.

This works fine:

  ...
  URL url = new URL("http://172.16.22.101/ctrTest/";);
  resp = call.invoke(url, null);
  ...



Thomas Weidemann

Reply via email to