I have a simple standalone
Java application that opens a URLConnection then reads it as a stream. This is just like reading a web page programmatically.
When I execute the app from the DOS command prompt with 'java', it executes fine. When I run it from the JBuilder
IDE, it fails to "connect" and the contentLength return value is -1. Is this a security issue? Why does it work from the basic Java JRE, but not when run from within an IDE like JBuilder?
What it means is that I cannot debug the rest of the app using JBuilder's debugger I guess.