Re: Q: Issues when attempting to send ">". Wind up with ">"

2008-04-15 Thread adam_j_bradley
Bugger! I'll try again. What I want to send is http://www.papernapkin.org/pastebin/view/494/ But what winds up being send it http://www.papernapkin.org/pastebin/view/496/ The ampersand (spaces added to this example) in the "& lt ; " gets further delimated with "& amp ; lt ;" I'm using CXF whic

Re: Q: Issues when attempting to send ">". Wind up with ">"

2008-04-15 Thread Tatu Saloranta
There isn't enough detail here to offer much help. You need to explain what and how you are sending/receiving things, for the question to related to http aspects. But it does sound like your problem might not even lie within httpclient but within your xml-processing package (or soap service framew

Re: calculate bandwidth of HttpClient

2008-04-15 Thread Oleg Kalnichevski
On Tue, 2008-04-15 at 21:41 +0300, Eugeny N Dzhurinsky wrote: > On Tue, Apr 15, 2008 at 07:49:12PM +0200, Oleg Kalnichevski wrote: > > > > On Tue, 2008-04-15 at 19:43 +0300, Eugeny N Dzhurinsky wrote: > > > Hello there! > > > > > > Is there any way to get the bandwidth, used by HttpClient to dow

Re: calculate bandwidth of HttpClient

2008-04-15 Thread Eugeny N Dzhurinsky
On Tue, Apr 15, 2008 at 07:49:12PM +0200, Oleg Kalnichevski wrote: > > On Tue, 2008-04-15 at 19:43 +0300, Eugeny N Dzhurinsky wrote: > > Hello there! > > > > Is there any way to get the bandwidth, used by HttpClient to download > > pages? > > > > Currently we are using version 3.0.1 of HttpClien

RE: Help regarding the detecting NTLM proxy scheme

2008-04-15 Thread Oleg Kalnichevski
On Tue, 2008-04-15 at 13:50 -0400, Sadashiv Patwary wrote: > Can you please suggest how can I retrieve the proxy scheme ?? . > By examining the Proxy-Authenticate response headers. http://hc.apache.org/httpclient-3.x/xref/org/apache/commons/httpclient/HttpMethodDirector.html#746 Oleg >

RE: Help regarding the detecting NTLM proxy scheme

2008-04-15 Thread Sadashiv Patwary
Can you please suggest how can I retrieve the proxy scheme ?? . -Original Message- From: Oleg Kalnichevski [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 15, 2008 1:45 PM To: HttpClient User Discussion Subject: Re: Help regarding the detecting NTLM proxy scheme On Tue, 2008-04-15 at 11

Re: calculate bandwidth of HttpClient

2008-04-15 Thread Oleg Kalnichevski
On Tue, 2008-04-15 at 19:43 +0300, Eugeny N Dzhurinsky wrote: > Hello there! > > Is there any way to get the bandwidth, used by HttpClient to download > pages? > > Currently we are using version 3.0.1 of HttpClient, and we had implemented the > ProtocolSocketFactory which returns an instance of

Re: Help regarding the detecting NTLM proxy scheme

2008-04-15 Thread Oleg Kalnichevski
On Tue, 2008-04-15 at 11:19 -0400, Sadashiv Patwary wrote: > Hi all, > > I am still naïve to httpclient. I want to display a proxy scheme names > (NTLM or digest or basic) on the jsp page. Is it possible do that before I > run the httpclient execute method. > No, it is not. Oleg > R

Re: Problem with order of request host header

2008-04-15 Thread Oleg Kalnichevski
On Tue, 2008-04-15 at 11:07 -0400, Mclean, Brendan wrote: > Hi, > > I'm looking for a workaround to httpclient (3.1) where every request > sent across the wire has the host header as the last and final header > sent. > It seems no matter what order I call > add/setRequestHeader("host","blahh"),

RE: Using NTLM auth with expect continue

2008-04-15 Thread Oleg Kalnichevski
On Mon, 2008-04-14 at 14:24 -0400, Tony Thompson wrote: > Oleg, > > In my seemingly unending quest to continue torturing myself (and even > you, I guess) with this NTLM auth issue, I found some information that > describes my issue exactly (thanks to Google cache): > > http://64.233.169.104/sear

Q: Issues when attempting to send ">". Wind up with ">"

2008-04-15 Thread adam_j_bradley
I'm currently setting this string (which forms part of the WSSecurityHeader), however, when I try and use ">" I wind up with ">". ---snip--- 1033s:sitetoken>t:siteheader xmlns:t="http://url/SiteToken";

calculate bandwidth of HttpClient

2008-04-15 Thread Eugeny N Dzhurinsky
Hello there! Is there any way to get the bandwidth, used by HttpClient to download pages? Currently we are using version 3.0.1 of HttpClient, and we had implemented the ProtocolSocketFactory which returns an instance of the custom Socket class, which returns the InputStream which is able to retur

Help regarding the detecting NTLM proxy scheme

2008-04-15 Thread Sadashiv Patwary
Hi all, I am still naïve to httpclient. I want to display a proxy scheme names (NTLM or digest or basic) on the jsp page. Is it possible do that before I run the httpclient execute method. Regards shiva

Problem with order of request host header

2008-04-15 Thread Mclean, Brendan
Hi, I'm looking for a workaround to httpclient (3.1) where every request sent across the wire has the host header as the last and final header sent. It seems no matter what order I call add/setRequestHeader("host","blahh"), the host header is always sent last. I realize that according to the HT