Re: Http CONNECT Method with XFF Header

2019-01-10 Thread Oleg Kalnichevski
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

RE: Http CONNECT Method with XFF Header

2019-01-10 Thread Omar Alkhateeb
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

RE: Http CONNECT Method with XFF Header

2019-01-10 Thread Omar Alkhateeb
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

RE: Http CONNECT Method with XFF Header

2019-01-10 Thread Omar Alkhateeb
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

Re: Http CONNECT Method with XFF Header

2019-01-09 Thread Oleg Kalnichevski
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

Http CONNECT Method with XFF Header

2019-01-09 Thread Omar Alkhateeb
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