On Sun, 2011-04-03 at 08:22 -0700, Ken Krugler wrote:
> On Apr 3, 2011, at 8:14am, Sam Crawford wrote:
>
> > Steve,
> >
> > I've had a dig around the code this afternoon and understand the
> > issues you've run into. The java.net.URI class is fairly well embedded
> > throughout, and overriding Ht
the URI class throws an exception. I'm
>> trying to avoid having to have to re-invent the wheel and build my own
>> HTTPClient class.You think I have another option?
>>
>> Thanks in advance for the help,
>>
>> Steve
>>
>>
>>
>>
t
> class.You think I have another option?
>
> Thanks in advance for the help,
>
> Steve
>
>
>
>
>
>
>
>
> _
> From: Sam Crawford [samcrawf...@gmail.com]
> Sent: Saturday, April 02, 2011 3:00 PM
> To: HttpClient User Discussion
> Cc: Stev
er Discussion
Cc: Steve Labarbera
Subject: Re: Trying to send raw requests without URL encodings?
Hi Steve,
A very similar question was asked here:
http://old.nabble.com/Apache's-HttpClient-don't-want-URL-Encoding-any-ideas-how-I-can-bypass--td25762297.html
This only deals with the re
Hi Steve,
A very similar question was asked here:
http://old.nabble.com/Apache's-HttpClient-don't-want-URL-Encoding-any-ideas-how-I-can-bypass--td25762297.html
This only deals with the request URL, but it would mean you don't need
to move to HttpCore.
Implementing your own RequestEntity makes th
I'm trying to send requests out without any URL encoding. This is necessary
because we need to simulate sending requests bypassing the browser encoding the
parameters. I have done a bunch of reading and it appears that one user
mentioned implementing my own RequestEntity class. Is this the best