uestLine().getMethod();
> if (method.equalsIgnoreCase("CONNECT")) {
> request.setHeader(PROXY_CONN_DIRECTIVE,
> HTTP.CONN_KEEP_ALIVE);
> return;
> }
>
> Omar Khateeb | QA Engineer, IDA & DLP
> Check Point Software Technolo
ogiesĀ | | om...@checkpoint.com
-Original Message-
From: Omar Alkhateeb [mailto:om...@checkpoint.com]
Sent: Thursday, January 10, 2019 3:16 PM
To: HttpComponents Project
Subject: RE: Http CONNECT Method with XFF Header
I found this class, but can't edit because it is .class bi
ginal Message-
From: Omar Alkhateeb [mailto:om...@checkpoint.com]
Sent: Thursday, January 10, 2019 3:15 PM
To: HttpComponents Project
Subject: RE: Http CONNECT Method with XFF Header
Hi Oleg,
Thanks for the response, Can you show me example of the steps you guided me, I
can't find a way
Omar
rg]
Sent: Wednesday, January 09, 2019 6:38 PM
To: HttpComponents Project
Subject: Re: Http CONNECT Method with XFF Header
On Wed, 2019-01-09 at 14:54 +, Omar Alkhateeb wrote:
> Hi All,
>
> As I noticed, there is no Class for HttpConnect method
>
> I need to add specific Http Header on C
On Wed, 2019-01-09 at 14:54 +, Omar Alkhateeb wrote:
> Hi All,
>
> As I noticed, there is no Class for HttpConnect method
>
> I need to add specific Http Header on CONNECT which is called X-For-
> Forward
>
> I can successfully add XFF Header on HttpGet Request using :
>
> HttpClientContext
Hi All,
As I noticed, there is no Class for HttpConnect method
I need to add specific Http Header on CONNECT which is called X-For-Forward
I can successfully add XFF Header on HttpGet Request using :
HttpClientContext context = HttpClientContext.create();
HttpGet httpget = new HttpGet(URL);
Req