I use HttpClient in my http debugger project.
And I need send parameters without any conversion.
I found a way for POST method, but I couldn't found that functionality
for GET method.
When I try  to send something like that "GET http://localhost/?e...@%";
I get exception. Of course I realized that my request is incorrect,
but I have to send it to server.

I checked out in HttpClient sources and saw this:

public HttpGet(final String uri) {
        super();
        setURI(URI.create(uri));
    }


Have I got any possibilities for circumvent restriction?

Thanks for your help.

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to