[prev in list] [next in list] [prev in thread] [next in thread] 

List:       htmlunit-user
Subject:    Re: [Htmlunit-user] Am I doing anything wrong?
From:       Ahmed Ashour <asashour () yahoo ! com>
Date:       2012-09-27 17:50:34
Message-ID: F14E0E85-EE09-481A-AB24-1BAFA142B9C8 () yahoo ! com
[Download RAW message or body]

[Attachment #2 (--Apple-Mail-8D9E379B-7237-434C-86A6-0C677EFFB6E0)]


Hi Vasu,

2.6 is too old, and even if a bug exists, it won't make it's way to SVN.

Ahmed Ashour

On Sep 27, 2012, at 13:48, Vasudevan Comandur <vcomandur@gmail.com> wrote:

> Hi Ahmed,
> 
> Thanks for pointing out the mistake. The code works on 2.10 of HTMLUnit but still \
> did not work with 2.6 which uses HTTPClient 3.1.
> 
> Is there anything that I need to set to make this work in 2.6?
> 
> Looking forward to your reply.
> 
> Regards
> Vasu
> 
> On Wed, Sep 26, 2012 at 10:36 AM, Ahmed Ashour <asashour@yahoo.com> wrote:
> Hi Vasu,
> 
> The domain is incorrectly spelled.
> 
> ieeeexplore or ieeexplore
> 
> Enjoy,
> Ahmed
> From: Vasudevan Comandur <vcomandur@gmail.com>
> To: Ahmed Ashour <asashour@yahoo.com>; htmlunit-user@lists.sourceforge.net 
> Sent: Tuesday, September 25, 2012 8:31 PM
> 
> Subject: Re: [Htmlunit-user] Am I doing anything wrong?
> 
> Hi Ahmed,
> 
> I tried the same with 2.10/snapshot and I did not see the Cookie header set in HTTP \
> Request. 
> I called this JAVA function from Clojure. and the Webclient instance was created in \
> Clojure. After the java call, I was making a call to send the request to webserver \
> in clojure. Before sending the request, I was printing the values and it was there. \
>  I could see the URL going out but not with the HTTP Headers.
> 
> Copied below is the JAVA Method
> 
> ***********************************
> 
> public static void AddCookiestoWC(final WebClient wc) throws Exception
> 
> {
> CookieManager ckm = wc.getCookieManager();
> ckm.addCookie(new Cookie("ieeeexplore.ieee.org", "JSESSIONID", "18968jhajh")) ;
> ckm.addCookie(new Cookie("ieeeexplore.ieee.org", "IPCheck", "123.122.45.66")) ;
> System.out.println( " Added two cookies to the cookie manager");
> 
> }
> 
> ****************************************
> 
> HTTP Header set by HTMLUnit
> ---------------------------------------------
> 
> GET /xpl/articleDetails.jsp?tp=&arnumber=67697&contentType=Journals%20%26%20Magazines&queryText=%22computer%20graphics%22 \
> HTTP/1.1 Host	ieeexplore.ieee.org
> User-Agent	Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.8) \
> Gecko/20100722 Firefox/3.6.8 Accept-Language	en-us
> Accept	*/*
> 
> 
> Appreciate your help in solving the issue.
> 
> Regards
> Vasu
> 
> 
> 
> On Tue, Sep 25, 2012 at 2:19 PM, Ahmed Ashour <asashour@yahoo.com> wrote:
> Hi Vasu,
> 
> Please provide sample code that doesn't work with 2.10/snapshot.
> 
> Ahmed
> From: Vasudevan Comandur <vcomandur@gmail.com>
> To: Ahmed Ashour <asashour@yahoo.com>; htmlunit-user@lists.sourceforge.net 
> Sent: Tuesday, September 25, 2012 11:38 AM
> 
> Subject: Re: [Htmlunit-user] Am I doing anything wrong?
> 
> Hi Ahmed,
> 
> I am creating the cookie objects with domain name, name & value and I am not \
> setting PATH. HTTPClient 3.1 API documentation has a constructor with those 3 \
> params which is what I use. 
> The domain string, I specify as "www.sciencedirect.com" and the getPage request is \
> sent to sciencedirect only. 
> I was wondering if I need to do any other settings so that Cookie goes in the HTTP \
> header. Now the header is bare minimum of HTMLUnit sends. I also read the \
> documentation that the WebClient Instance will enable cookies by default. 
> Regards
> Vasu
> 
> On Tue, Sep 25, 2012 at 2:01 PM, Ahmed Ashour <asashour@yahoo.com> wrote:
> Hi Vasu,
> 
> In 2.10, Cookie(String name, String value) was deprecated, you must specify the \
> domain. 
> Yours,
> Ahmed
> From: Vasudevan Comandur <vcomandur@gmail.com>
> To: Ahmed Ashour <asashour@yahoo.com>; htmlunit-user@lists.sourceforge.net 
> Sent: Tuesday, September 25, 2012 11:26 AM
> Subject: Re: [Htmlunit-user] Am I doing anything wrong?
> 
> Hi Ahmed,
> 
> The downloads are nothing but full-text of scholarly papers downloaded by \
> researchers, students and faculty members.  Most of the papers are in PDF format \
> and more than 500K in size. Hence, I am trying to use older version of HTMLUnit. 
> I am storing the cookies received from a server as a string (Name, Value Pair). \
> Whenever, I need to send a request to that server, I create the cookie objects and \
> use the addCookie method to save for all the Name, Value pairs and then use getpage \
> to send the request. But I did not see the HTTPHeader set for "Cookie". 
> Any suggestions and pointers are welcome.
> 
> Regards
> Vasu
> 
> 
> 
> On Tue, Sep 25, 2012 at 11:45 AM, Vasudevan Comandur <vcomandur@gmail.com> wrote:
> Hi Ahmed,
> 
> Thanks for your reply. I am creating few cookie objects with 3 params namely the \
> domain, name of the cookie and the value for it. Is that good enough to work or \
> need to set path also? 
> The reason I am using the older version is that there are downloads of documents \
> being done and 2.8 onwards creates a temp file if the downloaded file size is > \
> 500K and version 2.6 does not create those temp files. 
> Am i doing anything silly?
> 
> Regards
> Vasu
> 
> 
> On Tue, Sep 25, 2012 at 10:03 AM, Ahmed Ashour <asashour@yahoo.com> wrote:
> Hi Vasu,
> 
> Please update to latest version.
> 
> If the case is still there, please enable logging for "org.apache.http.headers" [1] \
> and provide the details. 
> Yours,
> Ahmed
> 
> [1] http://htmlunit.sourceforge.net/logging.html
> From: Vasudevan Comandur <vcomandur@gmail.com>
> To: htmlunit-user@lists.sourceforge.net 
> Sent: Tuesday, September 25, 2012 5:01 AM
> Subject: [Htmlunit-user] Am I doing anything wrong?
> 
> Hi,
> 
> I am using HTMLUnit 2.7 version. I want to set cookies in the webclient before I \
> send any request to a webserver (sciencedirect.com). 
> I did the following:
> 
> 1. Created a webclient Instance.
> 2. In a loop, I added cookies to the cookieManager. The domain was given as \
> "www.sciencedirect.com". The name value pairs were set correctly.
> 3. I was calling getpage method (first call to the site with the URL having \
> www.sciencedirect.com plus other params) and I didn't see the cookie values  set in \
> the HTTP header. 
> Am I missing some settings?
> 
> I appreciate your help in advance.
> 
> Regards
> VAsu
> 
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and 
> threat landscape has changed and how IT managers can respond. Discussions 
> will include endpoint security, mobile security and the latest in malware 
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> Htmlunit-user mailing list
> Htmlunit-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/htmlunit-user
> 
> 
> 
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> Htmlunit-user mailing list
> Htmlunit-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/htmlunit-user
> 
> 
> 
> 
> 
> 
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> Htmlunit-user mailing list
> Htmlunit-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/htmlunit-user
> 
> 
> 
> 
> 
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> Htmlunit-user mailing list
> Htmlunit-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/htmlunit-user
> 
> 
> 
> 
> 
> ------------------------------------------------------------------------------
> Live Security Virtual Conference
> Exclusive live event will cover all the ways today's security and
> threat landscape has changed and how IT managers can respond. Discussions
> will include endpoint security, mobile security and the latest in malware
> threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
> _______________________________________________
> Htmlunit-user mailing list
> Htmlunit-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/htmlunit-user
> 
> 


[Attachment #5 (unknown)]

<html><head></head><body bgcolor="#FFFFFF"><div>Hi Vasu,</div><div><br></div><div>2.6 \
is too old, and even if a bug exists, it won't make it's way to SVN.<br><br>Ahmed \
Ashour</div><div><br>On Sep 27, 2012, at 13:48, Vasudevan Comandur &lt;<a \
href="mailto:vcomandur@gmail.com">vcomandur@gmail.com</a>&gt; \
wrote:<br><br></div><div></div><blockquote type="cite"><div>Hi \
Ahmed,<br><br>&nbsp;&nbsp;&nbsp; Thanks for pointing out the mistake. The code works \
on 2.10 of HTMLUnit but still did not work with 2.6 which uses \
HTTPClient<br>&nbsp;&nbsp;&nbsp; 3.1.<br><br>&nbsp;&nbsp;&nbsp; Is there anything \
that I need to set to make this work in 2.6?<br> <br>&nbsp;&nbsp;&nbsp; Looking \
forward to your reply.<br><br>Regards<br>&nbsp;Vasu<br><br><div \
class="gmail_quote">On Wed, Sep 26, 2012 at 10:36 AM, Ahmed Ashour <span \
dir="ltr">&lt;<a href="mailto:asashour@yahoo.com" \
target="_blank">asashour@yahoo.com</a>&gt;</span> wrote:<br> <blockquote \
class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex"><div><div style="font-size:12pt;font-family:times new \
roman,new york,times,serif">Hi Vasu,<br><br>The domain is incorrectly spelled.<br> \
<br><a rel="nofollow" href="http://ieeeexplore.ieee.org/" target="_blank">i<span \
style="color:rgb(255,0,0)">e</span>eeexplore</a> or <a rel="nofollow" \
href="http://ieeeexplore.ieee.org/" target="_blank">ieeexplore</a><div> \
<span><br></span></div><div>Enjoy,<br>Ahmed<br></div>  <div style="font-family:times \
new roman,new york,times,serif;font-size:12pt"> <div style="font-family:times new \
roman,new york,times,serif;font-size:12pt"> <div dir="ltr">  <font face="Arial"><div \
class="im"> <hr size="1">  <b><span style="font-weight:bold">From:</span></b> \
Vasudevan Comandur &lt;<a href="mailto:vcomandur@gmail.com" \
target="_blank">vcomandur@gmail.com</a>&gt;<br> <b><span \
style="font-weight:bold">To:</span></b> Ahmed Ashour &lt;<a \
href="mailto:asashour@yahoo.com" target="_blank">asashour@yahoo.com</a>&gt;; <a \
href="mailto:htmlunit-user@lists.sourceforge.net" \
target="_blank">htmlunit-user@lists.sourceforge.net</a> <br>  </div><b><span \
style="font-weight:bold">Sent:</span></b> Tuesday, September 25, 2012 8:31 \
PM<div><div class="h5"><br> <b><span style="font-weight:bold">Subject:</span></b> Re: \
[Htmlunit-user] Am I doing anything wrong?<br>  </div></div></font> </div><div><div \
class="h5"> <br> <div>Hi Ahmed,<br><br>&nbsp;&nbsp; I tried the same with \
2.10/snapshot and I did not see the Cookie header set in HTTP Request.<br><br>&nbsp; \
I called this JAVA function from Clojure. and the Webclient instance was created in \
Clojure. After the java call, I was making a<br>

&nbsp; call to send the request to webserver in clojure. Before sending the request, \
I was printing the values and it was there.<br><br>&nbsp; I could see the URL going \
out but not with the HTTP Headers.<br><br>&nbsp; Copied below is the JAVA Method<br>

<br>***********************************<br><br>public static void \
AddCookiestoWC(final WebClient wc) throws \
Exception<br><br>{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CookieManager ckm = \
wc.getCookieManager();<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \
ckm.addCookie(new Cookie("<a rel="nofollow" href="http://ieeeexplore.ieee.org/" \
target="_blank">ieeeexplore.ieee.org</a>", "JSESSIONID", "18968jhajh")) ;<br>

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ckm.addCookie(new Cookie("<a \
rel="nofollow" href="http://ieeeexplore.ieee.org/" \
target="_blank">ieeeexplore.ieee.org</a>", "IPCheck", "123.122.45.66")) \
;<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; System.out.println( " Added two \
cookies to the cookie manager");<br>

<br>}<br><br>****************************************<br><br>HTTP Header set by \
HTMLUnit<br>---------------------------------------------<br>

<table>
<tbody><tr>
  <td><br></td>
  <td>GET /xpl/articleDetails.jsp?tp=&amp;arnumber=67697&amp;contentType=Journals%20%26%20Magazines&amp;queryText=%22computer%20graphics%22 \
HTTP/1.1</td> </tr>
<tr>
  <td>Host</td>
  <td><a rel="nofollow" href="http://ieeexplore.ieee.org/" \
target="_blank">ieeexplore.ieee.org</a></td> </tr>
<tr>
  <td>User-Agent</td>
  <td>Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.8) Gecko/20100722 \
Firefox/3.6.8</td> </tr>
<tr>
  <td>Accept-Language</td>
  <td>en-us</td>
</tr>
<tr>
  <td>Accept</td>
  <td>*/*</td>
</tr>
</tbody></table>

<br><br>Appreciate your help in solving the \
issue.<br><br>Regards<br>&nbsp;Vasu<br><br><br><br><div>On Tue, Sep 25, 2012 at 2:19 \
PM, Ahmed Ashour <span dir="ltr">&lt;<a rel="nofollow" \
href="mailto:asashour@yahoo.com" target="_blank">asashour@yahoo.com</a>&gt;</span> \
wrote:<br>

<blockquote style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex"><div><div style="font-size:12pt;font-family:times new \
roman,new york,times,serif">Hi Vasu,<br><br>Please provide sample code that doesn't \
work with 2.10/snapshot.<br>

<br>Ahmed<br>  <div style="font-family:times new roman,new \
york,times,serif;font-size:12pt"> <div style="font-family:times new roman,new \
york,times,serif;font-size:12pt"> <div dir="ltr"> <font face="Arial"><div>  <hr \
size="1">  <b><span style="font-weight:bold">From:</span></b> Vasudevan Comandur \
&lt;<a rel="nofollow" href="mailto:vcomandur@gmail.com" \
target="_blank">vcomandur@gmail.com</a>&gt;<br> <b><span \
style="font-weight:bold">To:</span></b> Ahmed Ashour &lt;<a rel="nofollow" \
href="mailto:asashour@yahoo.com" target="_blank">asashour@yahoo.com</a>&gt;; <a \
rel="nofollow" href="mailto:htmlunit-user@lists.sourceforge.net" \
target="_blank">htmlunit-user@lists.sourceforge.net</a> <br>

 </div><b><span style="font-weight:bold">Sent:</span></b> Tuesday, September 25, 2012 \
11:38 AM<div><div><br> <b><span style="font-weight:bold">Subject:</span></b> Re: \
[Htmlunit-user] Am I doing anything wrong?<br>  </div></div></font> </div><div><div> \
<br> <div>Hi Ahmed,<br><br>&nbsp;&nbsp; I am creating the cookie objects with domain \
name, name &amp; value and I am not setting PATH. HTTPClient 3.1 API \
documentation<br>&nbsp;&nbsp; has a constructor with those 3 params which is what I \
use.<br>

<br>&nbsp;&nbsp; The domain string, I specify as "<a rel="nofollow" \
href="http://www.sciencedirect.com/" target="_blank">www.sciencedirect.com</a>" and \
the getPage request is sent to sciencedirect only.<br> <br>&nbsp;&nbsp; I was \
wondering if I need to do any other settings so that Cookie goes in the HTTP header. \
Now the header is bare minimum<br>&nbsp;&nbsp; of HTMLUnit sends. I also read the \
documentation that the WebClient Instance will enable cookies by default.<br>


<br>&nbsp;Regards<br>&nbsp;Vasu<br><br><div>On Tue, Sep 25, 2012 at 2:01 PM, Ahmed \
Ashour <span dir="ltr">&lt;<a rel="nofollow" href="mailto:asashour@yahoo.com" \
target="_blank">asashour@yahoo.com</a>&gt;</span> wrote:<br><blockquote \
style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


<div><div style="font-size:12pt;font-family:times new roman,new york,times,serif">Hi \
Vasu,<br><br>In 2.10, Cookie(String name, String value) was deprecated, you must \
specify the domain.<br><br>Yours,<br>Ahmed<br>  <div style="font-family:times new \
roman,new york,times,serif;font-size:12pt">


 <div style="font-family:times new roman,new york,times,serif;font-size:12pt"> <div \
dir="ltr"> <font face="Arial"><div> <hr size="1">  <b><span \
style="font-weight:bold">From:</span></b> Vasudevan Comandur &lt;<a rel="nofollow" \
href="mailto:vcomandur@gmail.com" target="_blank">vcomandur@gmail.com</a>&gt;<br>


 </div><b><span style="font-weight:bold">To:</span></b> Ahmed Ashour &lt;<a \
rel="nofollow" href="mailto:asashour@yahoo.com" \
target="_blank">asashour@yahoo.com</a>&gt;; <a rel="nofollow" \
href="mailto:htmlunit-user@lists.sourceforge.net" \
target="_blank">htmlunit-user@lists.sourceforge.net</a> <br>


 <b><span style="font-weight:bold">Sent:</span></b> Tuesday, September 25, 2012 11:26 \
AM<br> <b><span style="font-weight:bold">Subject:</span></b> Re: [Htmlunit-user] Am I \
doing anything wrong?<br> </font> </div><div><div>


 <br>
<div>Hi Ahmed,<br><br>&nbsp;&nbsp;&nbsp; The downloads are nothing but full-text of \
scholarly papers downloaded by researchers, students and faculty members. \
<br>&nbsp;&nbsp;&nbsp; Most of the papers are in PDF format and more than 500K in \
size. Hence, I am trying to use older version of HTMLUnit.<br>



<br>&nbsp;&nbsp; I am storing the cookies received from a server as a string (Name, \
Value Pair). Whenever, I need to send a request to that<br>&nbsp;&nbsp; server, I \
create the cookie objects and use the addCookie method to save for all the Name, \
Value pairs and then use<br>



&nbsp;&nbsp; getpage to send the request. But I did not see the HTTPHeader set for \
"Cookie".<br><br>&nbsp; Any suggestions and pointers are \
welcome.<br><br>Regards<br>&nbsp;Vasu<br><br>&nbsp;&nbsp;&nbsp; <br><br><div>On Tue, \
Sep 25, 2012 at 11:45 AM, Vasudevan Comandur <span dir="ltr">&lt;<a rel="nofollow" \
href="mailto:vcomandur@gmail.com" target="_blank">vcomandur@gmail.com</a>&gt;</span> \
wrote:<br>



<blockquote style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi \
Ahmed,<br><br>&nbsp;&nbsp; Thanks for your reply. I am creating few cookie objects \
with 3 params namely the domain, name of the cookie and the value for it.<br>



&nbsp;&nbsp; Is that good enough to work or need to set path \
also?<br><br>&nbsp;&nbsp; The reason I am using the older version is that there are \
downloads of documents being done and 2.8 onwards creates a temp file<br> \
&nbsp;&nbsp; if the downloaded file size is &gt; 500K and version 2.6 does not create \
those temp files.<br><br>&nbsp;&nbsp; Am i doing anything \
silly?<br><br>Regards<br>&nbsp;Vasu<div><div><br><br><div> On Tue, Sep 25, 2012 at \
10:03 AM, Ahmed Ashour <span dir="ltr">&lt;<a rel="nofollow" \
href="mailto:asashour@yahoo.com" target="_blank">asashour@yahoo.com</a>&gt;</span> \
wrote:<br> <blockquote style="margin:0 0 0 .8ex;border-left:1px #ccc \
solid;padding-left:1ex"><div><div style="font-size:12pt;font-family:times new \
roman,new york,times,serif">Hi Vasu,<br><br>Please update to latest version.<br>

<br>If the case is still there, please enable logging for "org.apache.http.headers" \
[1] and provide the details.<br><br>Yours,<br>Ahmed<br><br>[1] <a rel="nofollow" \
href="http://htmlunit.sourceforge.net/logging.html" \
target="_blank">http://htmlunit.sourceforge.net/logging.html</a><br>




  <div style="font-family:times new roman,new york,times,serif;font-size:12pt"> <div \
style="font-family:times new roman,new york,times,serif;font-size:12pt"> <div \
dir="ltr"> <font face="Arial"> <hr size="1">  <b><span \
style="font-weight:bold">From:</span></b> Vasudevan Comandur &lt;<a rel="nofollow" \
href="mailto:vcomandur@gmail.com" target="_blank">vcomandur@gmail.com</a>&gt;<br>




 <b><span style="font-weight:bold">To:</span></b> <a rel="nofollow" \
href="mailto:htmlunit-user@lists.sourceforge.net" \
target="_blank">htmlunit-user@lists.sourceforge.net</a> <br> <b><span \
style="font-weight:bold">Sent:</span></b> Tuesday, September 25, 2012 5:01 AM<br>




 <b><span style="font-weight:bold">Subject:</span></b> [Htmlunit-user] Am
 I doing anything wrong?<br> </font> </div><div><div> <br>
<div>Hi,<br><br>&nbsp; I am using HTMLUnit 2.7 version. I want to set cookies in the \
webclient before I send any request to a webserver (<a rel="nofollow" \
href="http://sciencedirect.com/" target="_blank">sciencedirect.com</a>).<br>




<br>&nbsp; I did the following:<br><br>
&nbsp; 1. Created a webclient Instance.<br>&nbsp; 2. In a loop, I added cookies to \
the cookieManager. The domain was given as "<a rel="nofollow" \
href="http://www.sciencedirect.com/" target="_blank">www.sciencedirect.com</a>".<br>




&nbsp;&nbsp;&nbsp;&nbsp; The name value pairs were set correctly.<br>
&nbsp; 3. I was calling getpage method (first call to the site with the URL having <a \
rel="nofollow" href="http://www.sciencedirect.com/" \
target="_blank">www.sciencedirect.com</a> plus other params) and I didn't see the \
cookie values <br>




&nbsp;&nbsp;&nbsp;&nbsp; set in the HTTP header.<br>
<br>&nbsp; Am I missing some settings?<br><br>&nbsp; I appreciate your help in \
advance.<br><br>Regards<br>&nbsp;VAsu<br> \
</div><br></div></div>------------------------------------------------------------------------------<br>Live \
Security Virtual Conference<br>Exclusive live event will cover all the ways today's \
security and <br>threat landscape has changed and how IT managers can respond. \
Discussions <br>




will include endpoint security, mobile security and the latest in malware \
<br>threats. <a rel="nofollow" \
href="http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/" \
target="_blank">http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/</a><br>




_______________________________________________<br>Htmlunit-user mailing list<br><a \
rel="nofollow" href="mailto:Htmlunit-user@lists.sourceforge.net" \
target="_blank">Htmlunit-user@lists.sourceforge.net</a><br><a rel="nofollow" \
href="https://lists.sourceforge.net/lists/listinfo/htmlunit-user" \
target="_blank">https://lists.sourceforge.net/lists/listinfo/htmlunit-user</a><br>




<br><br> </div> </div>  \
</div></div><br>------------------------------------------------------------------------------<br>
 Live Security Virtual Conference<br>
Exclusive live event will cover all the ways today's security and<br>
threat landscape has changed and how IT managers can respond. Discussions<br>
will include endpoint security, mobile security and the latest in malware<br>
threats. <a rel="nofollow" \
href="http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/" \
target="_blank">http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/</a><br>_______________________________________________<br>




Htmlunit-user mailing list<br>
<a rel="nofollow" href="mailto:Htmlunit-user@lists.sourceforge.net" \
target="_blank">Htmlunit-user@lists.sourceforge.net</a><br> <a rel="nofollow" \
href="https://lists.sourceforge.net/lists/listinfo/htmlunit-user" \
target="_blank">https://lists.sourceforge.net/lists/listinfo/htmlunit-user</a><br> \
<br></blockquote></div><br> </div></div></blockquote></div><br>
</div><br><br> </div></div></div> </div>  \
</div></div><br>------------------------------------------------------------------------------<br>
 Live Security Virtual Conference<br>
Exclusive live event will cover all the ways today's security and<br>
threat landscape has changed and how IT managers can respond. Discussions<br>
will include endpoint security, mobile security and the latest in malware<br>
threats. <a rel="nofollow" \
href="http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/" \
target="_blank">http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/</a><br>_______________________________________________<br>



Htmlunit-user mailing list<br>
<a rel="nofollow" href="mailto:Htmlunit-user@lists.sourceforge.net" \
target="_blank">Htmlunit-user@lists.sourceforge.net</a><br> <a rel="nofollow" \
href="https://lists.sourceforge.net/lists/listinfo/htmlunit-user" \
target="_blank">https://lists.sourceforge.net/lists/listinfo/htmlunit-user</a><br> \
<br></blockquote></div><br> </div><br><br> </div></div></div> </div>  \
</div></div><br>------------------------------------------------------------------------------<br>
 Live Security Virtual Conference<br>
Exclusive live event will cover all the ways today's security and<br>
threat landscape has changed and how IT managers can respond. Discussions<br>
will include endpoint security, mobile security and the latest in malware<br>
threats. <a rel="nofollow" \
href="http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/" \
target="_blank">http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/</a><br>_______________________________________________<br>


Htmlunit-user mailing list<br>
<a rel="nofollow" href="mailto:Htmlunit-user@lists.sourceforge.net" \
target="_blank">Htmlunit-user@lists.sourceforge.net</a><br> <a rel="nofollow" \
href="https://lists.sourceforge.net/lists/listinfo/htmlunit-user" \
target="_blank">https://lists.sourceforge.net/lists/listinfo/htmlunit-user</a><br> \
<br></blockquote></div><br> </div><br><br> </div></div></div> </div>  \
</div></div><br>------------------------------------------------------------------------------<br>
 Live Security Virtual Conference<br>
Exclusive live event will cover all the ways today's security and<br>
threat landscape has changed and how IT managers can respond. Discussions<br>
will include endpoint security, mobile security and the latest in malware<br>
threats. <a href="http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/" \
target="_blank">http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/</a><br>_______________________________________________<br>
 Htmlunit-user mailing list<br>
<a href="mailto:Htmlunit-user@lists.sourceforge.net">Htmlunit-user@lists.sourceforge.net</a><br>
 <a href="https://lists.sourceforge.net/lists/listinfo/htmlunit-user" \
target="_blank">https://lists.sourceforge.net/lists/listinfo/htmlunit-user</a><br> \
<br></blockquote></div><br> </div></blockquote></body></html>



------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://ad.doubleclick.net/clk;258768047;13503038;j?
http://info.appdynamics.com/FreeJavaPerformanceDownload.html

_______________________________________________
Htmlunit-user mailing list
Htmlunit-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/htmlunit-user


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic