You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-user@ws.apache.org by weidemann thomas <th...@BridgeCo.NET> on 2001/06/28 11:13:41 UTC

SOAP2.2, StringOutOfBoundsException

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