long URL
Hello,
I am trying to use an HttpURLConnection with a long url (2000 characters). However, when I attempt to make the connection (.connect()), I get an "illegal character in URL" exception because the url is too long. (There really aren't any invalid characters) How can I overcome this problem?
If I create my own socket, compose the http request with that url by hand and write it to the raw socket, the request is transmitted successfully and the server responds as expected.
However, I would like to not do this but have some help from a http library in parsing the response. How can I do this with the libraries that the JKD provides? Thank you.

