lightbody / browsermob-proxy

A free utility to help web developers watch and manipulate network traffic from their AJAX applications.
http://bmp.lightbody.net
Apache License 2.0
2.16k stars 652 forks source link

Page Never Completely Loads #212

Closed ryanlevell closed 9 years ago

ryanlevell commented 9 years ago

I cloned and built beta 2.1 a few hours ago and I created a small script to try out the new BrowserMobProxy interface with WebDriver. I crammed everything into main() to make it simple to replicate.

I tested out a few large sites (Google, Yahoo, Weather, etc) and weather.com won't finish loading - the other sites complete in a few seconds.

public static void main(String[] args) throws InterruptedException {

    // final String URL = "http://google.com";
    // final String URL = "http://yahoo.com";
    // final String URL = "http://msn.com";
    final String URL = "http://weather.com";

    BrowserMobProxy server = new BrowserMobProxyServer();
    server.start();
    Proxy proxy = ClientUtil.createSeleniumProxy(server);

    DesiredCapabilities caps = new DesiredCapabilities();
    caps.setCapability(CapabilityType.PROXY, proxy);
    WebDriver driver = new ChromeDriver(caps);

    driver.get(URL);
    Thread.sleep(2000);
    System.out.println(server.getHar().getLog().getEntries().size());

    driver.quit();
    server.stop();
}

Here are my capabilities:

Capabilities [{
    applicationCacheEnabled=false,
    rotatable=false,
    mobileEmulationEnabled=false,
    chrome={userDataDir=C:\Users\rlevell\AppData\Local\Temp\scoped_dir10856_862},
    takesHeapSnapshot=true,
    databaseEnabled=false,
    handlesAlerts=true,
    version=42.0.2311.90,
    platform=XP,
    browserConnectionEnabled=false,
    nativeEvents=true,
    acceptSslCerts=true,
    locationContextEnabled=true,
    webStorageEnabled=true,
    browserName=chrome,
    takesScreenshot=true,
    javascriptEnabled=true,
    cssSelectorsEnabled=true}
]

The jars I am using:

    <dependency>
        <groupId>net.lightbody.bmp</groupId>
        <artifactId>browsermob-core</artifactId>
        <version>2.1.0-beta-1-SNAPSHOT</version>
    </dependency>
    <dependency>
        <groupId>net.lightbody.bmp</groupId>
        <artifactId>browsermob-core-littleproxy</artifactId>
        <version>2.1.0-beta-1-SNAPSHOT</version>
    </dependency>
    <dependency>
        <groupId>org.seleniumhq.selenium</groupId>
        <artifactId>selenium-java</artifactId>
        <version>2.45.0</version>
    </dependency>

I am using ChromeDriver version 2.15.322448. The same thing happened when using Firefox, but I could not rely on it as my Firefox version is 37 and I don't believe FirefoxDriver supports it yet. The page loads fine when I comment out the BrowserMob code.

romovs commented 9 years ago

weather.com hangs for me as well. It seems to be related to chunked transfers. The homepage html takes almost 10 minutes to download and one of the javascripts also hangs for 4 minutes. screenshot-3 Well.. they actually download immediately but browser never seems to receive confirmation that the data has finished downloading so it just sits there waiting.

Here are the response headers for the homepage html without proxy:

Cache-Control:max-age=600
Connection:keep-alive
Connection:Transfer-Encoding
Content-Encoding:gzip
Content-Language:en
Content-Type:text/html; charset=utf-8
Date:Fri, 01 May 2015 18:25:11 GMT
ETag:"1430504011.9-1"
Expires:Fri, 01 May 2015 18:35:11 GMT
Link:<http://www.weather.com/>; rel="canonical",<http://m.weather.com/?>; rel="alternate"
Property-id:drupal-prod
Server:nginx
Transfer-Encoding:chunked
Vary:Accept-Encoding
X-AH-Environment:prod
X-Drupal-Cache:HIT
X-Generator:Drupal 7 (http://drupal.org)
X-Origin-Hint:production
X-Request-ID:84d6f4fa-4dbd-41e7-993f-ee699af18391
X-UA-Compatible:IE=edge,chrome=1

and with proxy:

Cache-Control:max-age=600
Content-Encoding:gzip
Content-Language:en
Content-Type:text/html; charset=utf-8
Date:Fri, 01 May 2015 18:17:13 GMT
ETag:"1430504011.9-1"
Expires:Fri, 01 May 2015 18:27:13 GMT
Link:<http://www.weather.com/>; rel="canonical",<http://m.weather.com/?>; rel="alternate"
Property-id:drupal-prod
Server:nginx
Vary:Accept-Encoding
Via:1.1.aelia
X-AH-Environment:prod
X-Drupal-Cache:HIT
X-Generator:Drupal 7 (http://drupal.org)
X-Origin-Hint:production
X-Request-ID:84d6f4fa-4dbd-41e7-993f-ee699af18391
X-UA-Compatible:IE=edge,chrome=1

Headers for the javascript have similar differences.

By the way, would it be possible to add an option for turning off the Via header? This might be useful for working with servers which behave differently with proxy connections.

EDIT Same issue with www.aol.com - one of the resources takes 8.3 minutes to "download".

jekh commented 9 years ago

In your main method, it looks like you're not calling server.newHar() before you access the HAR in the println. Since there's no har, that will throw a NullPointerException, which will bypass the driver.quit() and server.stop() calls and cause Selenium to hang. Add in the server.newHar() call and see if that fixes your problem.

If not, can you paste the log output you get when running the application? And whether you're on Windows, OS X, or Linux. On my Linux system, I'm able to execute the code (with the newHar()) successfully.

ryanlevell commented 9 years ago

I deleted it at some point, oops. That did fix it for Chrome on Windows. I decided to try Firefox again where I initially ran into this issue, and it still hangs with newHar() added. Like I said though, I don't think Firefox 37 is officially supported by FirefoxDriver. Could someone try it with a supported version of Firefox to see if it hangs for them? I can't downgrade easily. I will post the output of Firefox if it finishes. While debugging it seems to hang on driver.get(URL);.

It seems to have been a coincidence that Firefox hanged (with newHar()) and then I somehow removed newHar() and tried with Chrome and it hanged as well and caused me to think it was the same issue. So now it may be the unsupported version after all, but would be helpful if someone confirmed it.

ryanlevell commented 9 years ago

After ~10 minutes Firefox returned:

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
254
May 01, 2015 2:34:18 PM org.openqa.selenium.os.UnixProcess$SeleniumWatchDog destroyHarder
INFO: Command failed to close cleanly. Destroying forcefully (v2). org.openqa.selenium.os.UnixProcess$SeleniumWatchDog@41c204a0
jekh commented 9 years ago

If the Firefox window that pops up is completely blank and doesn't even show the URL in it, it's probably a Selenium/FirefoxDriver compatibility issue. It occurs quite frequently when Firefox is upgraded.

ryanlevell commented 9 years ago

capture Within a few seconds it looks loaded, but the green loading circle continues to circle for minutes. And the bottom left corner reads, "Tranferring data from <some url>".

ryanlevell commented 9 years ago

Also, the page loads and the script completes within a few seconds with FirefoxDriver when I remove the BrowserMob code.

jekh commented 9 years ago

If it were a Firefox-Selenium compatibility issue, you wouldn't see anything at all in the browser window, so it looks like that's not the problem. Can you add a logger to your pom and paste the log output from that? slf4j-simple would be fine:

<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-simple</artifactId>
    <version>1.7.12</version>
</dependency>

And set the log level to debug:

System.setProperty("org.slf4j.simpleLogger.defaultLogLevel", "DEBUG");
jekh commented 9 years ago

@romovs -- Are you able to reproduce the issue reliably on www.aol.com? I'll fire up my Windows machine this weekend and see if I can reproduce it there. Those headers are extremely helpful, too - thank you!

Regarding the Via header, technically the HTTP spec requires it when proxying, but I can see how it would be beneficial to remove it for some tests. Would you like to open a new issue to track that feature request?

jekh commented 9 years ago

@ryanlevell -- could you also test with the latest netty? Add this to your pom:

<dependency>
    <groupId>io.netty</groupId>
    <artifactId>netty-all</artifactId>
    <version>4.0.27.Final</version>
</dependency>
romovs commented 9 years ago

Yep, both aol.com and weather.com hang every single time. This is on Linux and happens both with Chrome and Firefox. The way I run it:

$ ./browsermob-proxy --port 9090 -use-littleproxy true
$ curl -X POST http://localhost:9090/proxy
$ /usr/bin/google-chrome-stable --proxy-server="127.0.0.1:8081" --ignore-certificate-errors www.weather.com

then refresh it with Ctrl+F5 to make sure we don't load anything from cache.

ryanlevell commented 9 years ago

@jekh, here is the output with those 2 additional dependencies. I was printing the har entry URLs, let me rerun without that.

[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xc5cb6bb0, /fe80:0:0:0:d55a:4478:f372:6a44%17:62033 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Finding ProxyToServerConnection for: bcp.crwdcntrl.net
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xc5cb6bb0, /fe80:0:0:0:d55a:4478:f372:6a44%17:62033 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Didn't find existing ProxyToServerConnection for: bcp.crwdcntrl.net
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xc5cb6bb0, /fe80:0:0:0:d55a:4478:f372:6a44%17:62033 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Modifying request headers for proxying
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xc5cb6bb0, /fe80:0:0:0:d55a:4478:f372:6a44%17:62033 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Modifying request for proxy chaining
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xc5cb6bb0, /fe80:0:0:0:d55a:4478:f372:6a44%17:62033 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Stripped host from uri: http://bcp.crwdcntrl.net/5/c=2215/rand=743842966/pv=y/seg=preferredLocation_locid_USNE0363/seg=recentSearchLocations_locid_USNE0363/seg=recentSearchLocations_dma_undefined/seg=level1_HOMEPAGE/seg=level2_HOMEPAGE/seg=level3_NA/seg=level4_MAIN/seg=zip_68110/seg=locid_USNE0363/seg=dma_652/seg=state_NE/seg=locTimeZoneAbbr_CDT/seg=city_Omaha/seg=country_US/seg=loctype_1/seg=locname_Omaha%2C%2520NE/seg=site_undefined/seg=zone_home/seg=lang_en/seg=ampm_pm/seg=wind_lo/seg=hum_lo/seg=relativeHumidity_49/seg=fsnw_nl/seg=tempH_80h/seg=tempHR_warm/seg=tempL_50h/seg=tempLR_thaw/seg=fc1_nl/seg=fc2_thdr/seg=fc3_thdr/seg=cond_cld/seg=snw_nl/seg=tempR_cool/seg=windSpeed_11/seg=pollen_lo/seg=baroTendency_nl/seg=uv_nl/seg=uvIndex_0/seg=temp_60h%2C65f%2C18c%2C19ci/seg=severe_n/seg=realTemp_65/rt=ifr    yielding: /5/c=2215/rand=743842966/pv=y/seg=preferredLocation_locid_USNE0363/seg=recentSearchLocations_locid_USNE0363/seg=recentSearchLocations_dma_undefined/seg=level1_HOMEPAGE/seg=level2_HOMEPAGE/seg=level3_NA/seg=level4_MAIN/seg=zip_68110/seg=locid_USNE0363/seg=dma_652/seg=state_NE/seg=locTimeZoneAbbr_CDT/seg=city_Omaha/seg=country_US/seg=loctype_1/seg=locname_Omaha%2C%2520NE/seg=site_undefined/seg=zone_home/seg=lang_en/seg=ampm_pm/seg=wind_lo/seg=hum_lo/seg=relativeHumidity_49/seg=fsnw_nl/seg=tempH_80h/seg=tempHR_warm/seg=tempL_50h/seg=tempLR_thaw/seg=fc1_nl/seg=fc2_thdr/seg=fc3_thdr/seg=cond_cld/seg=snw_nl/seg=tempR_cool/seg=windSpeed_11/seg=pollen_lo/seg=baroTendency_nl/seg=uv_nl/seg=uvIndex_0/seg=temp_60h%2C65f%2C18c%2C19ci/seg=severe_n/seg=realTemp_65/rt=ifr
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xc5cb6bb0, /fe80:0:0:0:d55a:4478:f372:6a44%17:62033 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Removed sdch and inserted: gzip, deflate
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xc5cb6bb0, /fe80:0:0:0:d55a:4478:f372:6a44%17:62033 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Writing request to ProxyToServerConnection
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED): Requested write of DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /5/c=2215/rand=743842966/pv=y/seg=preferredLocation_locid_USNE0363/seg=recentSearchLocations_locid_USNE0363/seg=recentSearchLocations_dma_undefined/seg=level1_HOMEPAGE/seg=level2_HOMEPAGE/seg=level3_NA/seg=level4_MAIN/seg=zip_68110/seg=locid_USNE0363/seg=dma_652/seg=state_NE/seg=locTimeZoneAbbr_CDT/seg=city_Omaha/seg=country_US/seg=loctype_1/seg=locname_Omaha%2C%2520NE/seg=site_undefined/seg=zone_home/seg=lang_en/seg=ampm_pm/seg=wind_lo/seg=hum_lo/seg=relativeHumidity_49/seg=fsnw_nl/seg=tempH_80h/seg=tempHR_warm/seg=tempL_50h/seg=tempLR_thaw/seg=fc1_nl/seg=fc2_thdr/seg=fc3_thdr/seg=cond_cld/seg=snw_nl/seg=tempR_cool/seg=windSpeed_11/seg=pollen_lo/seg=baroTendency_nl/seg=uv_nl/seg=uvIndex_0/seg=temp_60h%2C65f%2C18c%2C19ci/seg=severe_n/seg=realTemp_65/rt=ifr HTTP/1.1
Host: bcp.crwdcntrl.net
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-US,en;q=0.5
Referer: http://www.weather.com/
Cookie: _cc_cc="ACZ4nGNQMLIwTbYwMjdMSk6xMElMS0pLNbcwN0o0NU%2BxNEpNNEthAIJQF618BjgQXHXxEAfjckGG%2F4yMDPcvfmSFsXcd1IUxdyKYy5fc4YSx30ztYYSxr596xAZjnzt6iBnG7jihDmPO6taCMS%2FPPMAEYx9ePIcFxm74rwljvkYSvoRk%2BKY%2FhTDm24%2BWMCYAvkhK0g%3D%3D"; _cc_aud=ABR4nGNgYGAIddHKZ4ABdgbGnBQwK2gnmMr6DqamQ5RkZ0B4eWBq5nQgAQABMwiF; _cc_id=285c8271bcd84afbfe7872a57d92ea6d; _cc_dc=0
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED): Currently disconnected, connect and then write the message
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED): Starting new connection to: bcp.crwdcntrl.net/199.233.57.15:80
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xc5cb6bb0, /fe80:0:0:0:d55a:4478:f372:6a44%17:62033 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Stopped reading
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED): Processing connection flow step: CONNECTING
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING): Connecting to server with TCP
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0xc5cb6bb0, /fe80:0:0:0:d55a:4478:f372:6a44%17:62033 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Reading: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING): Requested write of EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING): Retaining reference counted message
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING): Attempted to write while still in the process of connecting, waiting for connection.
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0xc5cb6bb0, /fe80:0:0:0:d55a:4478:f372:6a44%17:62033 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Stopped reading
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-1 << "HTTP/1.1 200 OK[\r][\n]"
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-1 << "content-type: application/json; charset=UTF-8[\r][\n]"
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-1 << "connection: close[\r][\n]"
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-1 << "content-length: 87[\r][\n]"
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-1 << "server: httpd.js[\r][\n]"
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-1 << "date: Sat, 02 May 2015 01:46:05 GMT[\r][\n]"
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-1 << "[\r][\n]"
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.headers - http-outgoing-1 << HTTP/1.1 200 OK
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.headers - http-outgoing-1 << content-type: application/json; charset=UTF-8
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.headers - http-outgoing-1 << connection: close
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.headers - http-outgoing-1 << content-length: 87
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.headers - http-outgoing-1 << server: httpd.js
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.headers - http-outgoing-1 << date: Sat, 02 May 2015 01:46:05 GMT
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-1 << "{"name":"get","sessionId":"68c30f51-aaab-479e-bc39-dd99e1af9c72","status":0,"value":""}"
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-1: Shutdown connection
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection discarded
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-1: Close connection
[Forwarding get on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 1][route: {}->http://127.0.0.1:7055][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
http://weather.com/
http://www.weather.com/
http://www.weather.com/sites/acquia-prod/files/advagg_css/css__yPB3eKrT_JwrT1HLlN4rABQ86JyfdbWRlYnzV9D7yDs__4xWr6EE7xAs7u_FnVJcgmKLB0fRaqgi2r5iwLszf1DQ__PZB1IfU4sb6SipDrbCSKW0ivtyz3wMQLlR9HRfudjrU.css
http://www.weather.com/sites/acquia-prod/files/advagg_css/css__b2ApNmzhoeYbI6tt4TiacrnsEo6pOjMsuaFYyqoAiks__s3gktIkVtCBJsEaDEWrnNkZ_o-e6dWqFjlwLsGgM-xQ__PZB1IfU4sb6SipDrbCSKW0ivtyz3wMQLlR9HRfudjrU.css
http://www.weather.com/sites/acquia-prod/files/advagg_css/css__Ci0SB5ZR8kREuH14BgVnS0-JxywiSQf7qOpJwFc1zjo__s05tBT5h3bzPka-DewUPHV00KXG5pR5ggNXhtCfBb1Q__PZB1IfU4sb6SipDrbCSKW0ivtyz3wMQLlR9HRfudjrU.css
http://tags.crwdcntrl.net/c/2215/cc.js?ns=_cc2215
http://www.weather.com/sites/acquia-prod/files/advagg_js/js__plLJEz4AXxjZ2leRVRQqW0fnlcKPgLJ9IT8KLLJF8iQ__d5nDDhg2qg-_hgYTaQQ2fi_BRDN576XlQkn1s8qUClc__PZB1IfU4sb6SipDrbCSKW0ivtyz3wMQLlR9HRfudjrU.js
http://www.weather.com/sites/acquia-prod/files/advagg_js/js__9MbgYh_eU83wGTi6_3K11QEKiUPK1cMaZq_AJgRPc8w__EyHAh1hUCsNRzYMjZHT1L2rBCxPpAPAHT3UBJ191S-I__PZB1IfU4sb6SipDrbCSKW0ivtyz3wMQLlR9HRfudjrU.js
http://www.weather.com/sites/acquia-prod/files/advagg_css/css__XQ3KA4VEv4kJsfeHyQB2JlrscO9vGplZTE7L1BYsAj0__RFhBw_Z3FeqQ2zpnKdwMmuG-n9tmCwv-0PwuVkWOJCM__PZB1IfU4sb6SipDrbCSKW0ivtyz3wMQLlR9HRfudjrU.css
http://www.weather.com/sites/acquia-prod/files/advagg_css/css__XpSlUMnTHo-OnbwOhjQQKzzM29k7lcoAYdcRQkchYGA__u_vtw6PqtuXSim8ihu6SIM1G_I-m1U8jfuMgmgwSU1Q__PZB1IfU4sb6SipDrbCSKW0ivtyz3wMQLlR9HRfudjrU.css
http://www.weather.com/sites/acquia-prod/files/advagg_js/js__EDiTHeZs70c6RSvteJs1sLpYCQRBBlN28J2mntrlq44__USkJe7eRunV9Lmqm6MpoeComR0gx24UGkIIsgMye5kY__PZB1IfU4sb6SipDrbCSKW0ivtyz3wMQLlR9HRfudjrU.js
http://www.weather.com/foresee/foresee-trigger.js?v=1142014
http://www.weather.com/sites/acquia-prod/files/advagg_js/js__4cvVkGS-qKHMHKnfpdLc3bloMlLenOrgGk2xOZQF4ko__PW80PT4NujttunqiYhCTJg0ruZF3nwpwkQX5C_fCGps__PZB1IfU4sb6SipDrbCSKW0ivtyz3wMQLlR9HRfudjrU.js
http://c.amazon-adsystem.com/aax2/amzn_ads.js
http://www.weather.com/sites/acquia-prod/files/advagg_js/js__RnFGPLzjyopdjvtSLWOeqfSqsN3L_0C8BkObZYQaJpc__qLl6I6z81yNsQrvA-3ZOyI1BXJXN6CQEfQN2ZHlLoV8__PZB1IfU4sb6SipDrbCSKW0ivtyz3wMQLlR9HRfudjrU.js
http://www.weather.com/sites/acquia-prod/files/advagg_js/js__3hNWr-SnIKSHoSn2VnMz2JjjKcatfEtbKk2C-Z6SxBk__Vx_DMCjzSIf1VcNyt85UF49B1wuNrHBQjeWe7AOORMw__PZB1IfU4sb6SipDrbCSKW0ivtyz3wMQLlR9HRfudjrU.js
http://www.weather.com/sites/acquia-prod/files/advagg_js/js___kLDfRANqHVSYEXsuGhUJMDGPc6VnThORWgy3347mkA__wpT2Tw2RZdDaA4xwtS8qOQXwugZNIVkl9dvcg2OCWeU__PZB1IfU4sb6SipDrbCSKW0ivtyz3wMQLlR9HRfudjrU.js
http://cdn.optimizely.com/js/177031030.js
http://www.weather.com/sites/acquia-prod/files/advagg_js/js__01IQdI5R0q2qlhrql6hleq3SemYTtOJWkDN70sljLq0__MKN8PgP_BG4_q5SzuBf8VLQq47skcFEjGEFv2jR96Vs__PZB1IfU4sb6SipDrbCSKW0ivtyz3wMQLlR9HRfudjrU.js
http://www.weather.com/sites/acquia-prod/files/advagg_js/js__7hqlQPq8QebzjJ7QT0rEaqjEhij8qEev7-yGp3ytyoU__6qE86D87hkiz0MKkFOgmbSWyLBwOb2ydyZ3oZ6RFWNE__PZB1IfU4sb6SipDrbCSKW0ivtyz3wMQLlR9HRfudjrU.js
http://www.weather.com/sites/acquia-prod/files/advagg_js/js__0QFoAkQUXoxLYol09bPM14GGiAfLLDKSZNPO6lpclJw__SOfRlE0HZyhYgWqNf_H42kTx83nGEPtEIUSVGJt-R1Y__PZB1IfU4sb6SipDrbCSKW0ivtyz3wMQLlR9HRfudjrU.js
http://www.weather.com/sites/acquia-prod/files/advagg_js/js__IclUVuwsXzPzVlDBSCKDPkewvdG6oulTb17egyTild0__zGs1RIp6Cj2KP6syjuma28zQARS5qBw_3eJWg0T7egI__PZB1IfU4sb6SipDrbCSKW0ivtyz3wMQLlR9HRfudjrU.js
http://www.weather.com/apple-touch-icon.png
http://s.w-x.co/TWC_logo_100x100.gif
http://ad.crwdcntrl.net/5/c=2215/pe=y/callback=jQuery18306624977955335962_1430530665283
http://rtax.criteo.com/delivery/rta/rta.js?netId=2305&cookieName=cto_weather&rnd=51677636804&varName=crtg_content
http://aax.amazon-adsystem.com/e/dtb/bid?src=1004&u=http%3A%2F%2Fwww.weather.com%2F&cb=4069721&t=2000
http://d.imwx.com/diag/ua.js?cb=jQuery18306624977955335962_1430530665285
http://gip.imwx.com/wxdata/gip/get.js?cb=jQuery18306624977955335962_1430530665284
http://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js?_=1430530665466
http://dsx.weather.com/(cms/settings/content-mode)?jsonp=TWC.callbacks._0&api=7bb1c920-7027-4289-9c96-ae5e263980bc
http://i.imwx.com/images/maps/truvu/map_specnewsdct-118_ltst_4namus_enus_1280x720.jpg
http://s.w-x.co/sprite_foot_300x72.png
http://www.weather.com/sites/all/themes/radix/icons/wx-iconfont-global/fonts/wx-iconfont-global.woff?5
http://dsx.weather.com/cms/v2/asset-list/most-popular-articles-and-videos/(0,8)?api=7bb1c920-7027-4289-9c96-ae5e263980bc&jsonp=angular.callbacks._2
http://dsx.weather.com/cms/v2/(settings/breakingnow)?api=7bb1c920-7027-4289-9c96-ae5e263980bc&jsonp=angular.callbacks._1
http://dsx.weather.com/cms/asset-collection/(41ebda0f-6471-423a-85b3-78db6392a4d0)?api=7bb1c920-7027-4289-9c96-ae5e263980bc&jsonp=angular.callbacks._0
http://s.w-x.co/American-red-cross-twc-logo-239x30_0.png
http://s.w-x.co/nepal-arc-background.jpg
http://dsx.weather.com/util/image/w/Foxy.jpg?v=at&w=320&h=180&api=7bb1c920-7027-4289-9c96-ae5e263980bc
http://dsx.weather.com//util/image/w/superearths.jpg?v=at&w=320&h=180&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://dsx.weather.com//util/image/w/last-freeze-avg.jpg?v=at&w=650&h=366&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://dsx.weather.com//util/image/w/AllthePrettyLights.jpg?v=at&w=320&h=180&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://dsx.weather.com//util/image/w/eshima1.jpg?v=at&w=650&h=366&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://dsx.weather.com/cms/(assets)?api=7bb1c920-7027-4289-9c96-ae5e263980bc&jsonp=angular.callbacks._3&pg=0,2&q=type:$in(%27video%27,%27article%27)%3Bpcollid:$in(%27storms%2Ftornado%27)&sort=-lastmodifieddate
http://dsx.weather.com/cms/(assets)?api=7bb1c920-7027-4289-9c96-ae5e263980bc&jsonp=angular.callbacks._4&pg=0,5&q=type:$in(%27article%27)%3Btags.keyword:$in(%27photos%27)&sort=-lastmodifieddate
http://i.imwx.com/images/maps/truvu/map_specnewsdct-53_ltst_4namus_enus_485x273.jpg
http://dsx.weather.com//util/image/w/Eddy.jpg?v=at&w=320&h=180&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://dsx.weather.com/(wxd/loc/en_US/41.26,-95.94)?jsonp=TWC.callbacks._1&api=7bb1c920-7027-4289-9c96-ae5e263980bc
http://dsx.weather.com/util/image/w/320x180_severe_alerts_map.jpg?v=at&w=320&h=180&api=7bb1c920-7027-4289-9c96-ae5e263980bc
http://i.imwx.com/images/maps/truvu/map_specnewsdct-62_ltst_4namus_enus_980x551.jpg
http://dsx.weather.com/util/image/w/320x180_interactive_map.jpg?v=at&w=320&h=180&api=7bb1c920-7027-4289-9c96-ae5e263980bc
http://dsx.weather.com//util/image/w/dct_TROP_SEASON_FCST.png?v=at&w=320&h=180&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600,700,800&subset=latin
http://dsx.weather.com/util/image/w/CircleShark.jpg?v=at&w=320&h=180&api=7bb1c920-7027-4289-9c96-ae5e263980bc
http://dsx.weather.com/util/image/w/huff501.jpg?v=at&w=320&h=180&api=7bb1c920-7027-4289-9c96-ae5e263980bc
http://dsx.weather.com/cms/(assets)?api=7bb1c920-7027-4289-9c96-ae5e263980bc&jsonp=angular.callbacks._5&pg=0,1&q=type:$in(%27video%27,%27article%27)%3Bpcollid:$in(%27storms%2Fsevere%27)&sort=-lastmodifieddate
http://fonts.googleapis.com/css?family=Roboto+Condensed:700&subset=latin
http://dsx.weather.com/(wxd/v2/MORecord/en_US/USNE0363:1:US;wxd/v2/DFRecord/en_US/USNE0363:1:US;wxd/v2/BERecord/en_US/USNE0363:1:US;wxd/v2/IDRecord/en_US/11/USNE0363:1:US;wxd/v2/IDRecord/en_US/12/USNE0363:1:US;wxd/v2/IDRecord/en_US/13/USNE0363:1:US)?jsonp=TWC.callbacks.wxdata_callback_0&api=7bb1c920-7027-4289-9c96-ae5e263980bc
http://dsx.weather.com/util/image/w/IAOT_SpringPromo_MF_BG_0.jpg?v=at&w=320&h=180&api=7bb1c920-7027-4289-9c96-ae5e263980bc
http://cdn.gigya.com/js/gigya.js?apiKey=2_zm_J-0UHOLnihq44PTNDi4NgoxbHWy24MhkmKlQMWPd3lOa1a-4r8uViC7HAu8Jr
http://dsx.weather.com/(wxd/v2/BERecord/en_US;wxd/v2/MORecord/en_US;x/v2/web/WebDFRecord/en_US)/USNE0363:1:US?api=7bb1c920-7027-4289-9c96-ae5e263980bc&jsonp=angular.callbacks._7
http://dsx.weather.com/cs/v2/datetime/en_US/(30339:4:US)?api=7bb1c920-7027-4289-9c96-ae5e263980bc&jsonp=angular.callbacks._6
http://dsx.weather.com//util/image/v/0501hail.JPG?v=at&w=320&h=180&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://dsx.weather.com//util/image/v/D-1294128.jpg?v=at&w=160&h=90&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://dsx.weather.com//util/image/v/D-1296116.jpg?v=at&w=160&h=90&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://dsx.weather.com//util/image/w/heartland.jpg?v=at&w=160&h=90&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://dsx.weather.com//util/image/w/03StJohnVirginIslandsFlickrReinhardLink_0.JPG?v=at&w=485&h=273&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://dsx.weather.com//util/image/w/low-setup-earlymay-2015.jpg?v=at&w=160&h=90&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://dsx.weather.com//util/image/v/D-1280838.jpg?v=at&w=160&h=90&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://dsx.weather.com//util/image/w/AP791362372050C.jpg?v=at&w=320&h=180&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://dsx.weather.com//util/image/v/D-1295891.jpg?v=at&w=160&h=90&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://dsx.weather.com//util/image/w/b301bab2-d3a6-48cf-a52d-bde7e5d566d8.jpg?v=at&w=320&h=180&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://www.weather.com/sites/all/modules/custom/angularmods/app/shared/wxicon/svgz/cloudy.svgz?1
http://dsx.weather.com//util/image/w/f8a6f1a7-cb82-4bc6-a67f-28b2860dcb88.jpg?v=at&w=160&h=90&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://dsx.weather.com//util/image/w/3505555511b-1427490153-31.jpg?v=ap&w=320&h=180&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://s.w-x.co/gsk-hp-sponsorship-980x551-MAR2014.jpg
http://fonts.gstatic.com/s/robotocondensed/v13/b9QBgL0iMZfDSpmcXcE8nCSLrGe-fkSRw2DeVgOoWcQ.woff
http://triggers.wfxtriggers.com/json/?resp_type=json&acctid=5E2FB6&current=true&zcs=68110&nzcs=68110&callback=jQuery18306624977955335962_1430530665283&_=1430530666923
http://dsx.weather.com//util/image/w/eshima1_0.jpg?v=at&w=160&h=90&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://dsx.weather.com//util/image/w/34daredevilvacation_devilspool.jpg?v=at&w=320&h=180&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://s.w-x.co/ddi-optimized.jpg
http://s.w-x.co/safety-prep-spring-optimized.jpg
http://dsx.weather.com//util/image/w/4ParaguayWikimediaCommons_0.jpg?v=at&w=320&h=180&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://fonts.gstatic.com/s/opensans/v13/k3k702ZOKiLJc3WVjuplzHhCUOGz7vYGh680lGh-uXM.woff
http://fonts.gstatic.com/s/opensans/v13/xjAJXh38I15wypJXxuGMBobN6UDyHWBl620a-IRfuBk.woff
http://dsx.weather.com//util/image/w/eshima1_0.jpg?v=at&w=320&h=180&api=7db9fe61-7414-47b5-9871-e17d87b8b6a0
http://fonts.gstatic.com/s/opensans/v13/DXI1ORHCpsQm3Vp6mXoaTXhCUOGz7vYGh680lGh-uXM.woff
http://s.w-x.co/ugc-great-outdoors-delivery-unit3.jpg
http://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff
http://fonts.gstatic.com/s/opensans/v13/EInbV5DfGHOiMmvb1Xr-hnhCUOGz7vYGh680lGh-uXM.woff
http://fonts.gstatic.com/s/opensans/v13/MTP_ySUJH_bn48VBG8sNSnhCUOGz7vYGh680lGh-uXM.woff
http://tags.tiqcdn.com/utag/weather/twc/prod/utag.js?_=1430530667652
http://www.googletagservices.com/tag/js/gpt.js
http://tpc.googlesyndication.com/safeframe/1-0-2/html/container.html
http://partner.googleadservices.com/gpt/pubads_impl_60.js
http://www.googletagservices.com/tag/js/check_359604.js
http://pubads.g.doubleclick.net/gampad/ads?gdfp_req=1&correlator=3103001813591511&output=json_html&callback=callbackProxy&impl=fifs&json_a=1&eid=108809047%2C108809035&sc=0&sfv=1-0-2&iu_parts=7646%2Cweb_weather_us%2Chome%2Coutofpage&enc_prev_ius=%2F0%2F1%2F2%2C%2F0%2F1%2F2%2C%2F0%2F1%2F2%2C%2F0%2F1%2F2%2C%2F0%2F1%2F2%2C%2F0%2F1%2F3&prev_iu_szs=205x185%2C300x251%2C300x251%7C320x300%2C300x600%7C300x251%7C300x1050%7C300x276%2C970x66%7C728x91%7C970x90%2C1x1&ists=1&prev_scp=pos%3Dwx_sponstories%7Cpos%3Dwx_bot300%7Cpos%3Dwx_mid300%7Cpos%3Dwx_300var%7Cpos%3Dwx_ws%7Cpos%3Dwx_hdn&cust_params=cat%3Dhome%26ch%3Dnl%26fam%3Dhome%26ad_unit%3D%252F7646%252Fweb_weather_us%26baro%3Dnl%26cnd%3Dcld%26cc%3DUS%26cnty%3DDOUGLAS%26ct%3DOmaha%26d1%3Dnl%26d2%3DIso%2520T-Storms%26d3%3DPM%2520T-Storms%26d4%3DT-Storms%26d5%3DAM%2520T-Storms%26dma%3D652%26ent%3Dcity%26fc1%3Dnl%26fc2%3Dthdr%26fc3%3Dthdr%26fhi%3D80h%26fhr%3Dwarm%26fli%3D50h%26flr%3Dthaw%26fsnw%3Dnl%26vw%3D1%26intl%3DNAM%26hmid%3Dlo%26lang%3Den%26lat%3D41.26%26locale%3Den_US%26loc%3DUSNE0363%25241%26lon%3D-95.94%26ord%3D3031697297550249%26plat%3Dwx%26plln%3Dlo%26rmid%3D3031697297550249%26sev%3Dn%26snw%3Dnl%26st%3DNE%26tf%3Dhome%26tmp%3D60h%252C65f%252C18c%252C19ci%26tmpr%3Dcool%26uv%3Dnl%26wfxtg%3D10%252C26%252C28%252C29%252C30%252C33%252C38%252C40%252C46%252C47%252C48%252C49%252C52%252C57%252C165%252C169%252C176%252C178%252C181%252C182%252C187%252C199%252C216%252C217%252C218%252C221%252C254%252C321%252C325%252C344%252C357%252C375%252C376%252C378%252C384%252C446%252C451%252C479%252C485%252C487%252C501%252C540%252C541%26wind%3Dlo%26zcs%3D242%252C230%26zip%3D68110&cookie_enabled=1&lmt=1430530664&dt=1430530668222&cc=100&frm=20&biw=991&bih=455&oid=3&adks=1425075540%2C859588604%2C1042724463%2C2284175515%2C2430969806%2C2825764915&gut=v2&ifi=1&u_tz=-300&u_his=1&u_java=true&u_h=768&u_w=1365&u_ah=731&u_aw=1365&u_cd=24&u_nplug=16&u_nmime=70&u_sd=1.5&flash=17.0.0&url=http%3A%2F%2Fwww.weather.com%2F&vrg=60&vrp=60&ga_vid=1214580446.1430530668&ga_sid=1430530668&ga_hid=395383062
http://pubads.g.doubleclick.net/gampad/ads?gdfp_req=1&correlator=3103001813591511&output=json_html&callback=callbackProxy&impl=fifs&json_a=1&eid=108809047%2C108809035&sc=0&sfv=1-0-2&iu_parts=7646%2Cweb_weather_us%2Chome&enc_prev_ius=%2F0%2F1%2F2&prev_iu_szs=125x125%7C180x35%7C125x125%7C190x36%7C300x36&prev_scp=pos%3Dwx_sl&cust_params=cat%3Dhome%26ch%3Dnl%26fam%3Dhome%26ad_unit%3D%252F7646%252Fweb_weather_us%26baro%3Dnl%26cnd%3Dcld%26cc%3DUS%26cnty%3DDOUGLAS%26ct%3DOmaha%26d1%3Dnl%26d2%3DIso%2520T-Storms%26d3%3DPM%2520T-Storms%26d4%3DT-Storms%26d5%3DAM%2520T-Storms%26dma%3D652%26ent%3Dcity%26fc1%3Dnl%26fc2%3Dthdr%26fc3%3Dthdr%26fhi%3D80h%26fhr%3Dwarm%26fli%3D50h%26flr%3Dthaw%26fsnw%3Dnl%26vw%3D1%26intl%3DNAM%26hmid%3Dlo%26lang%3Den%26lat%3D41.26%26locale%3Den_US%26loc%3DUSNE0363%25241%26lon%3D-95.94%26ord%3D3031697297550249%26cobr%3D%26par%3D%26plat%3Dwx%26plln%3Dlo%26refurl%3D%26rmid%3D3031697297550249%26sev%3Dn%26sg%3D%26snw%3Dnl%26st%3DNE%26tf%3Dhome%26tmp%3D60h%252C65f%252C18c%252C19ci%26tmpr%3Dcool%26uv%3Dnl%26wfxtg%3D10%252C26%252C28%252C29%252C30%252C33%252C38%252C40%252C46%252C47%252C48%252C49%252C52%252C57%252C165%252C169%252C176%252C178%252C181%252C182%252C187%252C199%252C216%252C217%252C218%252C221%252C254%252C321%252C325%252C344%252C357%252C375%252C376%252C378%252C384%252C446%252C451%252C479%252C485%252C487%252C501%252C540%252C541%26wind%3Dlo%26zcs%3D242%252C230%26zip%3D68110%26nzcs%3D&cookie=ID%3D8bbfdc30ef9846a8%3AT%3D1430530669%3AS%3DALNI_MZstmO25a_jiGPEQXExX-nHhIUltw&cookie_enabled=1&lmt=1430530664&dt=1430530668769&cc=100&frm=20&biw=991&bih=455&oid=3&adks=3592199804&gut=v2&ifi=8&u_tz=-300&u_his=1&u_java=true&u_h=768&u_w=1365&u_ah=731&u_aw=1365&u_cd=24&u_nplug=16&u_nmime=70&u_sd=1.5&flash=17.0.0&url=http%3A%2F%2Fwww.weather.com%2F&vrg=60&vrp=60&ga_vid=1214580446.1430530668&ga_sid=1430530668&ga_hid=395383062
http://pubads.g.doubleclick.net/gampad/ads?gdfp_req=1&correlator=3103001813591511&output=json_html&callback=callbackProxy&impl=fifs&json_a=1&eid=108809047%2C108809035&sc=0&sfv=1-0-2&iu_parts=7646%2Cweb_weather_us%2Chome&enc_prev_ius=%2F0%2F1%2F2&prev_iu_szs=180x35&prev_scp=pos%3Dwx_wreadysl&cust_params=cobr%3D%26par%3D%26refurl%3D%26sg%3D%26nzcs%3D%26cat%3Dhome%26ch%3Dnl%26fam%3Dhome%26ad_unit%3D%252F7646%252Fweb_weather_us%26baro%3Dnl%26cnd%3Dcld%26cc%3DUS%26cnty%3DDOUGLAS%26ct%3DOmaha%26d1%3Dnl%26d2%3DIso%2520T-Storms%26d3%3DPM%2520T-Storms%26d4%3DT-Storms%26d5%3DAM%2520T-Storms%26dma%3D652%26ent%3Dcity%26fc1%3Dnl%26fc2%3Dthdr%26fc3%3Dthdr%26fhi%3D80h%26fhr%3Dwarm%26fli%3D50h%26flr%3Dthaw%26fsnw%3Dnl%26vw%3D1%26intl%3DNAM%26hmid%3Dlo%26lang%3Den%26lat%3D41.26%26locale%3Den_US%26loc%3DUSNE0363%25241%26lon%3D-95.94%26ord%3D3031697297550249%26plat%3Dwx%26plln%3Dlo%26rmid%3D3031697297550249%26sev%3Dn%26snw%3Dnl%26st%3DNE%26tf%3Dhome%26tmp%3D60h%252C65f%252C18c%252C19ci%26tmpr%3Dcool%26uv%3Dnl%26wfxtg%3D10%252C26%252C28%252C29%252C30%252C33%252C38%252C40%252C46%252C47%252C48%252C49%252C52%252C57%252C165%252C169%252C176%252C178%252C181%252C182%252C187%252C199%252C216%252C217%252C218%252C221%252C254%252C321%252C325%252C344%252C357%252C375%252C376%252C378%252C384%252C446%252C451%252C479%252C485%252C487%252C501%252C540%252C541%26wind%3Dlo%26zcs%3D242%252C230%26zip%3D68110&cookie=ID%3D8bbfdc30ef9846a8%3AT%3D1430530669%3AS%3DALNI_MZstmO25a_jiGPEQXExX-nHhIUltw&cookie_enabled=1&lmt=1430530664&dt=1430530668781&cc=100&frm=20&biw=991&bih=455&oid=3&adks=1282499173&gut=v2&ifi=10&u_tz=-300&u_his=1&u_java=true&u_h=768&u_w=1365&u_ah=731&u_aw=1365&u_cd=24&u_nplug=16&u_nmime=70&u_sd=1.5&flash=17.0.0&url=http%3A%2F%2Fwww.weather.com%2F&vrg=60&vrp=60&ga_vid=1214580446.1430530668&ga_sid=1430530668&ga_hid=395383062
http://pubads.g.doubleclick.net/gampad/ads?gdfp_req=1&correlator=3103001813591511&output=json_html&callback=callbackProxy&impl=fifs&json_a=1&eid=108809047%2C108809035&sc=0&sfv=1-0-2&iu_parts=7646%2Cweb_weather_us%2Chome&enc_prev_ius=%2F0%2F1%2F2&prev_iu_szs=180x35&prev_scp=pos%3Dwx_ddisl&cust_params=cobr%3D%26par%3D%26refurl%3D%26sg%3D%26nzcs%3D%26cat%3Dhome%26ch%3Dnl%26fam%3Dhome%26ad_unit%3D%252F7646%252Fweb_weather_us%26baro%3Dnl%26cnd%3Dcld%26cc%3DUS%26cnty%3DDOUGLAS%26ct%3DOmaha%26d1%3Dnl%26d2%3DIso%2520T-Storms%26d3%3DPM%2520T-Storms%26d4%3DT-Storms%26d5%3DAM%2520T-Storms%26dma%3D652%26ent%3Dcity%26fc1%3Dnl%26fc2%3Dthdr%26fc3%3Dthdr%26fhi%3D80h%26fhr%3Dwarm%26fli%3D50h%26flr%3Dthaw%26fsnw%3Dnl%26vw%3D1%26intl%3DNAM%26hmid%3Dlo%26lang%3Den%26lat%3D41.26%26locale%3Den_US%26loc%3DUSNE0363%25241%26lon%3D-95.94%26ord%3D3031697297550249%26plat%3Dwx%26plln%3Dlo%26rmid%3D3031697297550249%26sev%3Dn%26snw%3Dnl%26st%3DNE%26tf%3Dhome%26tmp%3D60h%252C65f%252C18c%252C19ci%26tmpr%3Dcool%26uv%3Dnl%26wfxtg%3D10%252C26%252C28%252C29%252C30%252C33%252C38%252C40%252C46%252C47%252C48%252C49%252C52%252C57%252C165%252C169%252C176%252C178%252C181%252C182%252C187%252C199%252C216%252C217%252C218%252C221%252C254%252C321%252C325%252C344%252C357%252C375%252C376%252C378%252C384%252C446%252C451%252C479%252C485%252C487%252C501%252C540%252C541%26wind%3Dlo%26zcs%3D242%252C230%26zip%3D68110&cookie=ID%3D8bbfdc30ef9846a8%3AT%3D1430530669%3AS%3DALNI_MZstmO25a_jiGPEQXExX-nHhIUltw&cookie_enabled=1&lmt=1430530664&dt=1430530668793&cc=100&frm=20&biw=991&bih=455&oid=3&adks=2138098744&gut=v2&ifi=12&u_tz=-300&u_his=1&u_java=true&u_h=768&u_w=1365&u_ah=731&u_aw=1365&u_cd=24&u_nplug=16&u_nmime=70&u_sd=1.5&flash=17.0.0&url=http%3A%2F%2Fwww.weather.com%2F&vrg=60&vrp=60&ga_vid=1214580446.1430530668&ga_sid=1430530668&ga_hid=395383062
http://js.moatads.com/weatherv36943544254/moatad.js
http://uac.advertising.com/wrapper/aceUAC.js
http://pagead2.googlesyndication.com/pagead/images/google-logo.png
http://pagead2.googlesyndication.com/pagead/js/r20150428/r20110914/abg.js
http://pagead2.googlesyndication.com/pagead/osd.js
http://pagead2.googlesyndication.com/simgad/17193121803962614445
http://pagead2.googlesyndication.com/pagead/expansion_embed.js?source=safeframe
http://pagead2.googlesyndication.com/pagead/imgad?id=CICAgKDTuPmg1wEQARgBMgiK-jpWlSg4FQ
http://ad.doubleclick.net/ddm/ad/N6733.2106.WEATHER.COM/B8430048.117020972;sz=1x1;ord=1874448263?
http://s.moatads.com/swf/cap.swf
http://s.imwx.com/v.1.0/ads/creatives/statefarm/0315/StateFarm_185x35_Spotlight_20150313.png
http://s.imwx.com/v.1.0/ads/creatives/subaru/0115/Subaru_180x35_PM_20150116.png
http://ad.doubleclick.net/ad/N2883.286110.WEATHERCHANNEL/B7939884.112145090;sz=1x1;ord=943067540?
http://r1.ace.advertising.com/site=927201/size=300250/u=2/bnum=14113083/wkhr=140/hr=20/hl=1/scres=1/swh=1365x768/tile=1/f=1/r=1/optn=1/kvismob=2/fv=17/aolexp=1/dref=http%253A%252F%252Fwww.weather.com%252F
http://pagead2.googlesyndication.com/pagead/images/x_button_blue2.png
http://dsx.weather.com/wxd/v2/(Pollen/en_US;loc;)/en_US/(USNE0363:1:US)?api=7bb1c920-7027-4289-9c96-ae5e263980bc&jsonp=csDataSave
http://core.insightexpressai.com/adServer/adServerESI.aspx?bannerID=329054&script=false&redir=http://core.insightexpressai.com/adserver/1pixel.gif
http://googleads.g.doubleclick.net/pagead/drt/s?v=r20120211
http://r1.ace.advertising.com/site=927198/size=300250/u=2/bnum=50356732/wkhr=140/hr=20/hl=1/scres=1/swh=1365x768/tile=1/f=1/r=1/optn=1/kvismob=2/fv=17/aolexp=1/dref=http%253A%252F%252Fwww.weather.com%252F
http://d.agkn.com/pixel/2387/?ct=US&st=NE&city=13361&dma=128&zp=68124&bw=3&che=1512581227&col=8430048,1070455,117020972,289953975,62354219
http://s1.2mdn.net/viewad/1762894/Subaru1x1.gif
http://ad.doubleclick.net/ddm/trackimp/N5767.weather.comOX3962/B8358724.115455220;dc_trk_aid=290132365;dc_trk_cid=61585624;ord=2013614598?
http://bcp.crwdcntrl.net/5/c=2215/b=17868970
http://r1.ace.advertising.com/ctst=1/site=927201/size=300250/u=2/bnum=14113083/wkhr=140/hr=20/hl=1/scres=1/swh=1365x768/tile=1/f=1/r=1/optn=1/kvismob=2/fv=17/aolexp=1/dref=http%253A%252F%252Fwww.weather.com%252F
http://s.imwx.com/v.1.0/ads/creatives/swiffer/0415/300x600_duster/Swiffer.swf
/ad/N9724.2106WEATHERCHANNEL/B8446454.114278078;sz=1x1;ord=1984596926?
http://js.moatads.com/advertisingdotcom370674952587/moatad.js
http://r1.ace.advertising.com/ctst=1/site=927198/size=300250/u=2/bnum=50356732/wkhr=140/hr=20/hl=1/scres=1/swh=1365x768/tile=1/f=1/r=1/optn=1/kvismob=2/fv=17/aolexp=1/dref=http%253A%252F%252Fwww.weather.com%252F
/pagead/drt/ui
/ddm/adj/N8399.4298.ADVERTISING.COM/B8443059.114336439;sz=300x250;click=http://r1.ace.advertising.com/click/site=927198/mnum=1794754/cstr=50356732=_55442a6e_3082676434_927198*1794754*1183*0_1_/xsxdata=$XSXDATA/imptid=AS3973692945e447f7a2fde215e99fb566/bnum=50356732/optn=64?trg=;ord=3082676434?
http://bcp.crwdcntrl.net/5/c=2215/b=17868970
http://bcp.crwdcntrl.net/5/ct=y/c=2215/b=17868970
http://s0.2mdn.net/ads/studio/cached_libs/modernizr_2.8.3_ec185bb44fe5e6bf7455d6e8ef37ed0e_no-classes.js
http://s0.2mdn.net/879366/dfa7banner_flash_html_inpage_rendering_lib_200_66.js
http://s.imwx.com/v.1.0/ads/creatives/swiffer/0415/300x600_duster/images/bg.jpg
http://pagead2.googlesyndication.com/pagead/js/lidar.js
/cookE/geoip/jscript?spacedesc=16697850_11450533_300x250_16697840_16697850&ML_NIF=N&target=_blank&random=0410243217&@CPSC@=http://r1.ace.advertising.com/click/site=927201/mnum=1937572/cstr=14113083=_55442a70_0410243217_927201*1937572*1183*0_1_/xsxdata=$xsxdata/imptid=AS397369d15166412fb0cb6d0e396bfd01/bnum=14113083/optn=64?trg=
/pagead/drt/si?p=CAA&ut=AFAKxlQAAAAAVUQt83dDO9wcM_lRaRWR8VLM8YW0GsV7
http://s0.2mdn.net/3977225/300x250-concept2-business.swf
http://bcp.crwdcntrl.net/5/ct=y/c=2215/b=17868970
/pixel/2387/?ct=US&st=NE&city=13361&dma=128&zp=68124&bw=3&che=1050406420&col=8446454,1553640,114278078,287561276,58415465
/ca?pid=legalzoom01&aid=legalzoom01&cid=8443059_19&js=st0
/view/vt/v1/legalzoom/1/cvo.gif?cvosrc=display.1474596.114336439&cvo_crid=61198833&cvo_buyid=8443059&cvo_adid=287237490&cache=3513754058
/te_re/te_re.js
http://s.moatads.com/swf/MessageSenderV2.swf
/eolas_v2.js
http://cmap.uac.ace.advertising.com/um.ashx?site=927198&rCode=1
http://leadback.advertising.com/cs.ashx?site=927198
http://moat.pxl.ace.advertising.com/mt.ashx?et=m&imptid=AS3973692945e447f7a2fde215e99fb566&site=927198&mnum=1794754&mediawidth=300&mediaheight=250&osss=1183&xsinvid=0&device_category=1_device_category&site_domain=www.weather.com&ord=607687055102
http://tacoda.at.atwola.com/atx/sync/adcom/ACID/DX940014305306710006
http://cm.g.doubleclick.net/pixel?google_nid=aol1&google_hm=RFg5NDAwMTQzMDUzMDY3MTAwMDY%3d
http://ib.adnxs.com/getuid?http://cmap.an.ace.advertising.com/cfcm.ashx?providerId=1006&appnexus_uid=$UID
http://image2.pubmatic.com/AdServer/Pug?vcode=bz0yJnR5cGU9MSZqcz0xJmNvZGU9MjQwNSZ0bD0yNTkyMDA=&piggybackCookie=RUID77upoidzno69rg1f746fadjieg7twk6k77y18u8g17yupzogiuzy====
http://r.casalemedia.com/rum?cm_dsp_id=62&external_user_id=DX940014305306710006
http://us-u.openx.net/w/1.0/sd?id=537073142&val=RUIDhpgzbbn3nwqzs49oejz45qo3ex74d44kb5mpmwr8bjxi7uz6mqey====
http://ums.adtechus.com/mapuser?providerid=1003;userid=RUID1gzfyyqqa5mudmtpj9yh6qbc9yn3uh9to9mjgun7szubnoa8gm4o====
http://uac.advertising.com/cs/beacon.js
http://pagead2.googlesyndication.com/activeview?id=osdim&avi=BpmPIbSpEVenGNYubhATejYG4BgDX5smriwIAABABOAHIAQLgAgDIA5kE4AQBoAYCwhMDEIAB&ti=1&adk=2430969806&p=0,132,90,860&tos=1198,0,0,0,0&mtos=1198,1198,1198,1198,1198&rs=3&ht=0&tfs=214&tls=1412&fp=correlator%3D3103001813591511%26eid%3D108809047%252C108809035%26iu%3D%252F7646%252Fweb_weather_us%252Fhome%26oid%3D3%26url%3Dhttp%253A%252F%252Fwww.weather.com%252F&afp=%26output%3Djson_html%26impl%3Dfif%26dt%3D1430530668229%26adx%3D0%26ady%3D0%26ifi%3D6%26flash%3D17.0.0&tmo=3&tme=213&tdl=87&tcl=144&abd=1-0-6&r=u&bs=991,455&bos=1023,548&ps=991,3715&ss=1365,768&tt=1412&pt=-1&deb=1-0-7-1-7--1&tvt=1199&uc=6&tgt=IMG&cl=1
http://sync.adaptv.advertising.com/aol_user_sync
http://ads.yahoo.com/pixel?id=2261089&t=2&piggyback=https%3A%2F%2Fads.yahoo.com%2Fcms%2Fv1%3Fesig%3D1~ed097b82db382a1fd455fb947bcd01b57e206e42%26nwid%3D10000040578%26sigv%3D1
http://o.aolcdn.com/ads/adchoices.png
http://www.facebook.com/fr/u.php?p=330616970372644&m=DX940014305306710006&t=2592000
http://ib.adnxs.com/bounce?%2Fgetuid%3Fhttp%3A%2F%2Fcmap.an.ace.advertising.com%2Fcfcm.ashx%3FproviderId%3D1006%26appnexus_uid%3D%24UID
http://us-u.openx.net/w/1.0/sd?cc=1&id=537073142&val=RUIDhpgzbbn3nwqzs49oejz45qo3ex74d44kb5mpmwr8bjxi7uz6mqey====
/xl/PROD/12960430/creatives/Spectrum_Refresh_SP-Int_300x250.dir/Spectrum_Refresh_SP-Int_300x250.swf
http://r.casalemedia.com/rum?cm_dsp_id=62&external_user_id=DX940014305306710006&C=1
http://pixel.rubiconproject.com/tap.php?v=7249%7c%7c11203&nid=2146,2309&put=RUID9amem55bfkkpz6fidgoekeu6jndcxgdubonen6ww9y1gw1kz5f3o====&expires=30
http://b.scorecardresearch.com/b?c1=8&c2=2115&c3=1925&ca3=2037&cb3=1919&cc3=1900&ns__t=1430530670897&ns_c=UTF-8&c8=&c7=http%3A%2F%2Fleadback.advertising.com%2Fcs.ashx%3Fsite%3D927198&c9=http%3A%2F%2Fwww.weather.com%2F
http://cmap.dc.ace.advertising.com/cfcm.ashx?providerId=1003
http://ums.adtechus.com/mapuser?providerid=1003;userid=RUID1gzfyyqqa5mudmtpj9yh6qbc9yn3uh9to9mjgun7szubnoa8gm4o====&cfp
http://cmap.an.ace.advertising.com/cfcm.ashx?providerId=1006&appnexus_uid=2939122019275271724
http://b.scorecardresearch.com/b2?c1=8&c2=2115&c3=1925&ca3=2037&cb3=1919&cc3=1900&ns__t=1430530670897&ns_c=UTF-8&c8=&c7=http%3A%2F%2Fleadback.advertising.com%2Fcs.ashx%3Fsite%3D927198&c9=http%3A%2F%2Fwww.weather.com%2F
http://cmap.at.ace.advertising.com/cfcm.ashx?providerId=1&userId=TAd925d68f-f06b-11e4-81e6-00163e13aa47
http://tacoda.at.atwola.com/atx/log/adap/adap/NAX7299216853078230864
http://pixel.rubiconproject.com/tap.php?cookie_redirect=1&v=7249%7c%7c11203&nid=2146,2309&put=RUID9amem55bfkkpz6fidgoekeu6jndcxgdubonen6ww9y1gw1kz5f3o====&expires=30
/ca?aid=legalzoom01&pid=legalzoom01&cid=8443059_19&js=st_1&sz=300x250&c=te-f12c&admarker=default&plc=tr&cam=3&zi=100002&sid=_LBsidLB_&locale=en
/xl/PROD/TrackingTags/fetch.cp?cache=no-cache&default=default_pl_cr.js&file=/12960430/PlacementTags/16697850.js
/cms/v1?esig=1~ed097b82db382a1fd455fb947bcd01b57e206e42&nwid=10000040578&sigv=1
http://moat.pxl.ace.advertising.com/mt.ashx?et=m&imptid=AS397369d15166412fb0cb6d0e396bfd01&site=927201&mnum=1937572&mediawidth=300&mediaheight=250&osss=1183&xsinvid=0&device_category=1_device_category&site_domain=www.weather.com&ord=385010882387
http://cmap.uac.ace.advertising.com/um.ashx?site=927201&rCode=1
http://leadback.advertising.com/cs.ashx?site=927201
/ca?aid=legalzoom01&pid=legalzoom01&locale=en&c=_LBcLB_&cid=8443059_19&sid=_LBsidLB_&language=en&js=st_2&cam=3
http://tags.bluekai.com/site/4470?id=TAd925d68f-f06b-11e4-81e6-00163e13aa47
http://dpm.demdex.net/ibs:dpid=416&dpuuid=TAd925d68f-f06b-11e4-81e6-00163e13aa47
http://d.turn.com/r/du/id/L2NzaWQvMS9tcGlkLzMwNTU3ODEz/mpuid/TAd925d68f-f06b-11e4-81e6-00163e13aa47
http://p.acxiom-online.com/pixel/smt?pid=3034&t=3034&ot=pixel&uid=TAd925d68f-f06b-11e4-81e6-00163e13aa47
http://ckm-m.xp1.ru4.com/cx?_i=42102464&_u=TAd925d68f-f06b-11e4-81e6-00163e13aa47
http://d.p-td.com/r/dt/id/L21rdC80L21waWQvMzMxNTMzNg/mpuid/TAd925d68f-f06b-11e4-81e6-00163e13aa47
http://ib.adnxs.com/getuid?http://cmap.an.ace.advertising.com/cfcm.ashx?providerId=1006&appnexus_uid=$UID
http://s.thebrighttag.com/cs?tp=ao&aolid=TAd925d68f-f06b-11e4-81e6-00163e13aa47
http://ads.yahoo.com/pixel?id=2261089&t=2&piggyback=https%3A%2F%2Fads.yahoo.com%2Fcms%2Fv1%3Fesig%3D1~ed097b82db382a1fd455fb947bcd01b57e206e42%26nwid%3D10000040578%26sigv%3D1
http://b.scorecardresearch.com/b?c1=8&c2=2115&c3=1925&ca3=2037&cb3=1919&cc3=1900&ns__t=1430530671681&ns_c=UTF-8&c8=&c7=http%3A%2F%2Fleadback.advertising.com%2Fcs.ashx%3Fsite%3D927201&c9=http%3A%2F%2Fwww.weather.com%2F
/cfcm.ashx?providerId=1002&xid=CXlqtkuK7IoZBjYjIwag_wNJ
http://adadvisor.net/adscores/g.pixel?sid=9201883608&aid=TAd925d68f-f06b-11e4-81e6-00163e13aa47
http://cmap.an.ace.advertising.com/cfcm.ashx?providerId=1006&appnexus_uid=2939122019275271724
http://idsync.rlcdn.com/362408.gif?partner_uid=TAd925d68f-f06b-11e4-81e6-00163e13aa47
http://dpm.demdex.net/demconf.jpg?et:ibs%7cdata:dpid=416&dpuuid=TAd925d68f-f06b-11e4-81e6-00163e13aa47
http://d.agkn.com/pixel/2609/?atr=069&age=1959&gender=F&st=NE&sk=&pd=113607201&puid=&ex=&at=&mc=315,323,333,376,359,361,367,371,407,415,425,435,814,815,819,820,474,491,413&dm=652&lr=&l0=http://tacoda.at.atwola.com/atx/log/targus/targu/276A9F628AFA8E7F
/cms/v1?esig=1~ed097b82db382a1fd455fb947bcd01b57e206e42&nwid=10000040578&sigv=1
http://idsync.rlcdn.com/362408.gif?partner_uid=TAd925d68f-f06b-11e4-81e6-00163e13aa47&redirect=1
/cfcm.ashx?providerId=1002&xid=CXlqtkuK7IoZBjYjIwag_wNJ
http://gscounters.us1.gigya.com/gscounters.sendReport?reports=%5B%7B%22name%22%3A%22loadc%22%2C%22time%22%3A%221430530667382%22%2C%22reportData%22%3A%7B%22sref%22%3A%22%22%7D%7D%5D&APIKey=2_zm_J-0UHOLnihq44PTNDi4NgoxbHWy24MhkmKlQMWPd3lOa1a-4r8uViC7HAu8Jr&sdk=js_5.4.3&format=jsonp&callback=gigya._.apiAdapters.web.callback&context=R2250198721
http://choices.truste.com/get?name=admarker-icon-tr.png
http://choices.truste.com/get?name=admarker-full-tr.png
http://e.nexac.com/e/aol_sync.xgi?na_exid=TAd925d68f-f06b-11e4-81e6-00163e13aa47
http://e.nexac.com/e/xrefid.xgi?na_exid=TAd925d68f-f06b-11e4-81e6-00163e13aa47&na_pid=2363&ru=
/adscores/r.pixel?sid=9212273008
/pixel/6644/?che=1430530959&sk=019011015820000113061&lr=&py=&cp=&wb=&b2b=
/update/3/GMP/37.0.1/20150402191859/WINNT_x86-msvc/en-US/release/Windows_NT%206.1.1.0%20(x64)/default/default/update.xml
http://odc.weather.com/b/ss/twciwx/1/H.26/s64842329316766?AQB=1&ndh=1&t=1%2F4%2F2015%2020%3A46%3A4%205%20300&fid=7CEC92DCBCD33553-296AF95B010C01B2&ns=twci&pageName=HOMEPAGE%3Ahome&g=http%3A%2F%2Fwww.weather.com%2F&cc=USD&ch=HOMEPAGE&events=event2&c1=D%3Dch&c8=3031697297550249&v8=home&c10=D%3Dch&v10=New&c11=D%3Dh1&v12=D%3Dh1&v13=D%3Dch&c14=HOMEPAGE-HOMEPAGE&v14=D%3Dc14&c15=HOMEPAGE-HOMEPAGE-NA&v15=D%3Dc15&c16=cld&v16=D%3Dc16&c20=9%3A30PM&v20=9%3A30PM%3AFriday&c21=Friday&c24=%2F&c25=USNE0363%3A1%3AUS&c26=Omaha%3ANE%3AUS&v26=D%3Dc26&c27=652&v27=D%3Dc27&c28=68110&v28=D%3Dc28&c29=0%3A&c30=live%3Awww&v30=37.0&v33=http%3A%2F%2Fwww.weather.com%2F&c34=lo&v34=1%7C%7CNew&c38=5-1-2015&v42=D%3DpageName&c46=D%3Dv8&c48=D%3Dv8&c49=nl&c53=D%3Dv34&v62=videoplayer-not-present&v65=en_US&h1=HOMEPAGE-HOMEPAGE-NA-MAIN&h2=home-nl-HOMEPAGE&s=1365x768&c=24&j=1.8.5&v=Y&k=Y&bw=1009&bh=455&p=ActiveTouch%20General%20Plugin%20Container%3BAdobe%20Acrobat%3BGoogle%20Talk%20Plugin%3BGoogle%20Talk%20Plugin%20Video%20Renderer%3BGoogle%20Update%3BIntel%C2%AE%20Identity%20Protection%20Technology%3BJava%20Deployment%20Toolkit%208.0.400.26%3BJava%28TM%29%20Platform%20SE%208%20U40%3BMicrosoft%20Office%202013%3BShockwave%20Flash%3BShockwave%20for%20Director%3BSilverlight%20Plug-In%3B&AQE=1
http://h.nexac.com/e/a-1795/s-3824/c-645/g-2114.xgi?pkey=bijo15bijox40&chpcm=&chpsg=&chpcr=&chpck=&chpth=&_rnd=0.6954777798683897
http://b.scorecardresearch.com/b?c1=2&c2=9576127&ns__t=1430531164759&ns_c=UTF-8&c8=National%20and%20Local%20Weather%20Forecast%2C%20Hurricane%2C%20Radar%20and%20Report&c7=http%3A%2F%2Fwww.weather.com%2F&c9=
http://b.scorecardresearch.com/c2/9576127/cs.js
http://secure-us.imrworldwide.com/v60.js
http://tags.tiqcdn.com/utag/weather/twc/prod/utag.71.js?utv=ut4.35.201505011333
http://tags.tiqcdn.com/utag/weather/twc/prod/utag.86.js?utv=ut4.35.201505011333
http://www.weather.com/foresee/foresee-surveydef.js?build=4
http://static.chartbeat.com/js/chartbeat.js
http://c2.taboola.com/nr/theweatherchannel/newsroom.js
http://tags.tiqcdn.com/utag/tiqapp/utag.v.js?a=weather/twc/201505011333&cb=1430531164848
http://www.weather.com/foresee/foresee-dhtml.css?build=4
http://odc.weather.com/b/ss/twciwx/1/H.26/s64842329316766?AQB=1&pccr=true&vidn=2AA2162F05012E86-6000010B00001244&&ndh=1&t=1%2F4%2F2015%2020%3A46%3A4%205%20300&fid=7CEC92DCBCD33553-296AF95B010C01B2&ns=twci&pageName=HOMEPAGE%3Ahome&g=http%3A%2F%2Fwww.weather.com%2F&cc=USD&ch=HOMEPAGE&events=event2&c1=D%3Dch&c8=3031697297550249&v8=home&c10=D%3Dch&v10=New&c11=D%3Dh1&v12=D%3Dh1&v13=D%3Dch&c14=HOMEPAGE-HOMEPAGE&v14=D%3Dc14&c15=HOMEPAGE-HOMEPAGE-NA&v15=D%3Dc15&c16=cld&v16=D%3Dc16&c20=9%3A30PM&v20=9%3A30PM%3AFriday&c21=Friday&c24=%2F&c25=USNE0363%3A1%3AUS&c26=Omaha%3ANE%3AUS&v26=D%3Dc26&c27=652&v27=D%3Dc27&c28=68110&v28=D%3Dc28&c29=0%3A&c30=live%3Awww&v30=37.0&v33=http%3A%2F%2Fwww.weather.com%2F&c34=lo&v34=1%7C%7CNew&c38=5-1-2015&v42=D%3DpageName&c46=D%3Dv8&c48=D%3Dv8&c49=nl&c53=D%3Dv34&v62=videoplayer-not-present&v65=en_US&h1=HOMEPAGE-HOMEPAGE-NA-MAIN&h2=home-nl-HOMEPAGE&s=1365x768&c=24&j=1.8.5&v=Y&k=Y&bw=1009&bh=455&p=ActiveTouch%20General%20Plugin%20Container%3BAdobe%20Acrobat%3BGoogle%20Talk%20Plugin%3BGoogle%20Talk%20Plugin%20Video%20Renderer%3BGoogle%20Update%3BIntel%C2%AE%20Identity%20Protection%20Technology%3BJava%20Deployment%20Toolkit%208.0.400.26%3BJava%28TM%29%20Platform%20SE%208%20U40%3BMicrosoft%20Office%202013%3BShockwave%20Flash%3BShockwave%20for%20Director%3BSilverlight%20Plug-In%3B&AQE=1
http://ping.chartbeat.net/ping?h=weather.com&p=%2F&u=B-SxvHDlCTWbBrCzQ2&d=weather.com&g=51963&n=1&f=00001&c=0&x=0&m=0&y=3531&o=991&w=455&j=45&R=1&W=0&I=0&E=0&e=0&r=&b=497193&t=CCTCWeDU_5cnCv1ovxCAyY9RD3p2Oq&V=58&i=National%20and%20Local%20Weather%20Forecast%2C%20Hurricane%2C%20Radar%20and%20Report&tz=300&sn=1&_
http://nr.taboola.com/newsroom/1.0/theweatherchannel/get-action?page.url=http%3A%2F%2Fwww.weather.com%2F&view.id=815845148454795914&page.template=homepage&page.dashboard=homepage_v2
http://nr.taboola.com/newsroom/1.0/theweatherchannel/notify-impression?page.url=http%3A%2F%2Fwww.weather.com%2F&view.id=815845148454795914&page.template=homepage&page.dashboard=homepage_v2
http://secure-us.imrworldwide.com/storageframe.html
http://b.scorecardresearch.com/beacon.js
http://b.scorecardresearch.com/b?c1=7&c2=13739933&c3=145231918151513&ns__t=1430531165246&ns_c=UTF-8&c8=National%20and%20Local%20Weather%20Forecast%2C%20Hurricane%2C%20Radar%20and%20Report&c7=http%3A%2F%2Fwww.weather.com%2F&c9=
http://secure-us.imrworldwide.com/cgi-bin/m?rnd=1430531165516&ci=us-803965h&js=1&cg=0&ts=v60.js&vn=6.0.30&cc=1&cd=24&ck=y&je=y&lg=en-US&si=http%3A//www.weather.com/&sr=1365x768&id=lstrg-b6a2af45f84797b37ab80b172c467589&tz=-5
http://secure-us.imrworldwide.com/cgi-bin/m?rnd=1430531165516&ci=us-803965h&js=1&cg=0&ts=v60.js&vn=6.0.30&cc=1&cd=24&ck=y&je=y&lg=en-US&si=http%3A//www.weather.com/&sr=1365x768&id=lstrg-b6a2af45f84797b37ab80b172c467589&tz=-5&ja=1
http://bcp.crwdcntrl.net/5/c=2215/rand=743842966/pv=y/seg=preferredLocation_locid_USNE0363/seg=recentSearchLocations_locid_USNE0363/seg=recentSearchLocations_dma_undefined/seg=level1_HOMEPAGE/seg=level2_HOMEPAGE/seg=level3_NA/seg=level4_MAIN/seg=zip_68110/seg=locid_USNE0363/seg=dma_652/seg=state_NE/seg=locTimeZoneAbbr_CDT/seg=city_Omaha/seg=country_US/seg=loctype_1/seg=locname_Omaha%2C%2520NE/seg=site_undefined/seg=zone_home/seg=lang_en/seg=ampm_pm/seg=wind_lo/seg=hum_lo/seg=relativeHumidity_49/seg=fsnw_nl/seg=tempH_80h/seg=tempHR_warm/seg=tempL_50h/seg=tempLR_thaw/seg=fc1_nl/seg=fc2_thdr/seg=fc3_thdr/seg=cond_cld/seg=snw_nl/seg=tempR_cool/seg=windSpeed_11/seg=pollen_lo/seg=baroTendency_nl/seg=uv_nl/seg=uvIndex_0/seg=temp_60h%2C65f%2C18c%2C19ci/seg=severe_n/seg=realTemp_65/rt=ifr
232
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.client.protocol.RequestAddCookies - CookieSpec selected: best-match
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.client.protocol.RequestAuthCache - Auth cache not set in the context
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection request: [route: {}->http://127.0.0.1:7055][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection leased: [id: 2][route: {}->http://127.0.0.1:7055][total kept alive: 0; route allocated: 1 of 2000; total allocated: 1 of 2000]
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.impl.execchain.MainClientExec - Opening connection {}->http://127.0.0.1:7055
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.impl.conn.HttpClientConnectionOperator - Connecting to /127.0.0.1:7055
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.impl.conn.HttpClientConnectionOperator - Connection established 127.0.0.1:62094<->127.0.0.1:7055
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.impl.execchain.MainClientExec - Executing request DELETE /hub/session/68c30f51-aaab-479e-bc39-dd99e1af9c72 HTTP/1.1
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.impl.execchain.MainClientExec - Target auth state: UNCHALLENGED
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.impl.execchain.MainClientExec - Proxy auth state: UNCHALLENGED
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.headers - http-outgoing-2 >> DELETE /hub/session/68c30f51-aaab-479e-bc39-dd99e1af9c72 HTTP/1.1
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.headers - http-outgoing-2 >> Host: 127.0.0.1:7055
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.headers - http-outgoing-2 >> Connection: Keep-Alive
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.headers - http-outgoing-2 >> User-Agent: Apache-HttpClient/4.3.4 (java 1.5)
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.headers - http-outgoing-2 >> Accept-Encoding: gzip,deflate
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-2 >> "DELETE /hub/session/68c30f51-aaab-479e-bc39-dd99e1af9c72 HTTP/1.1[\r][\n]"
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-2 >> "Host: 127.0.0.1:7055[\r][\n]"
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-2 >> "Connection: Keep-Alive[\r][\n]"
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-2 >> "User-Agent: Apache-HttpClient/4.3.4 (java 1.5)[\r][\n]"
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-2 >> "Accept-Encoding: gzip,deflate[\r][\n]"
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-2 >> "[\r][\n]"
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING) [id: 0x2554ca43, /192.168.1.67:62093 => bcp.crwdcntrl.net/199.233.57.15:80]: ConnectionFlowStep succeeded
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING) [id: 0x2554ca43, /192.168.1.67:62093 => bcp.crwdcntrl.net/199.233.57.15:80]: Connection flow completed successfully: null
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0xc5cb6bb0, /fe80:0:0:0:d55a:4478:f372:6a44%17:62033 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Connection to server succeeded: bcp.crwdcntrl.net/199.233.57.15:80
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0xc5cb6bb0, /fe80:0:0:0:d55a:4478:f372:6a44%17:62033 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: All servers have finished attempting to connect, resuming reading from client.
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0xc5cb6bb0, /fe80:0:0:0:d55a:4478:f372:6a44%17:62033 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Resumed reading
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2554ca43, /192.168.1.67:62093 => bcp.crwdcntrl.net/199.233.57.15:80]: Writing initial request: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /5/c=2215/rand=743842966/pv=y/seg=preferredLocation_locid_USNE0363/seg=recentSearchLocations_locid_USNE0363/seg=recentSearchLocations_dma_undefined/seg=level1_HOMEPAGE/seg=level2_HOMEPAGE/seg=level3_NA/seg=level4_MAIN/seg=zip_68110/seg=locid_USNE0363/seg=dma_652/seg=state_NE/seg=locTimeZoneAbbr_CDT/seg=city_Omaha/seg=country_US/seg=loctype_1/seg=locname_Omaha%2C%2520NE/seg=site_undefined/seg=zone_home/seg=lang_en/seg=ampm_pm/seg=wind_lo/seg=hum_lo/seg=relativeHumidity_49/seg=fsnw_nl/seg=tempH_80h/seg=tempHR_warm/seg=tempL_50h/seg=tempLR_thaw/seg=fc1_nl/seg=fc2_thdr/seg=fc3_thdr/seg=cond_cld/seg=snw_nl/seg=tempR_cool/seg=windSpeed_11/seg=pollen_lo/seg=baroTendency_nl/seg=uv_nl/seg=uvIndex_0/seg=temp_60h%2C65f%2C18c%2C19ci/seg=severe_n/seg=realTemp_65/rt=ifr HTTP/1.1
Host: bcp.crwdcntrl.net
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-US,en;q=0.5
Referer: http://www.weather.com/
Cookie: _cc_cc="ACZ4nGNQMLIwTbYwMjdMSk6xMElMS0pLNbcwN0o0NU%2BxNEpNNEthAIJQF618BjgQXHXxEAfjckGG%2F4yMDPcvfmSFsXcd1IUxdyKYy5fc4YSx30ztYYSxr596xAZjnzt6iBnG7jihDmPO6taCMS%2FPPMAEYx9ePIcFxm74rwljvkYSvoRk%2BKY%2FhTDm24%2BWMCYAvkhK0g%3D%3D"; _cc_aud=ABR4nGNgYGAIddHKZ4ABdgbGnBQwK2gnmMr6DqamQ5RkZ0B4eWBq5nQgAQABMwiF; _cc_id=285c8271bcd84afbfe7872a57d92ea6d; _cc_dc=0
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2554ca43, /192.168.1.67:62093 => bcp.crwdcntrl.net/199.233.57.15:80]: Requested write of DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /5/c=2215/rand=743842966/pv=y/seg=preferredLocation_locid_USNE0363/seg=recentSearchLocations_locid_USNE0363/seg=recentSearchLocations_dma_undefined/seg=level1_HOMEPAGE/seg=level2_HOMEPAGE/seg=level3_NA/seg=level4_MAIN/seg=zip_68110/seg=locid_USNE0363/seg=dma_652/seg=state_NE/seg=locTimeZoneAbbr_CDT/seg=city_Omaha/seg=country_US/seg=loctype_1/seg=locname_Omaha%2C%2520NE/seg=site_undefined/seg=zone_home/seg=lang_en/seg=ampm_pm/seg=wind_lo/seg=hum_lo/seg=relativeHumidity_49/seg=fsnw_nl/seg=tempH_80h/seg=tempHR_warm/seg=tempL_50h/seg=tempLR_thaw/seg=fc1_nl/seg=fc2_thdr/seg=fc3_thdr/seg=cond_cld/seg=snw_nl/seg=tempR_cool/seg=windSpeed_11/seg=pollen_lo/seg=baroTendency_nl/seg=uv_nl/seg=uvIndex_0/seg=temp_60h%2C65f%2C18c%2C19ci/seg=severe_n/seg=realTemp_65/rt=ifr HTTP/1.1
Host: bcp.crwdcntrl.net
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-US,en;q=0.5
Referer: http://www.weather.com/
Cookie: _cc_cc="ACZ4nGNQMLIwTbYwMjdMSk6xMElMS0pLNbcwN0o0NU%2BxNEpNNEthAIJQF618BjgQXHXxEAfjckGG%2F4yMDPcvfmSFsXcd1IUxdyKYy5fc4YSx30ztYYSxr596xAZjnzt6iBnG7jihDmPO6taCMS%2FPPMAEYx9ePIcFxm74rwljvkYSvoRk%2BKY%2FhTDm24%2BWMCYAvkhK0g%3D%3D"; _cc_aud=ABR4nGNgYGAIddHKZ4ABdgbGnBQwK2gnmMr6DqamQ5RkZ0B4eWBq5nQgAQABMwiF; _cc_id=285c8271bcd84afbfe7872a57d92ea6d; _cc_dc=0
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2554ca43, /192.168.1.67:62093 => bcp.crwdcntrl.net/199.233.57.15:80]: Using existing connection to: bcp.crwdcntrl.net/199.233.57.15:80
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2554ca43, /192.168.1.67:62093 => bcp.crwdcntrl.net/199.233.57.15:80]: Writing: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /5/c=2215/rand=743842966/pv=y/seg=preferredLocation_locid_USNE0363/seg=recentSearchLocations_locid_USNE0363/seg=recentSearchLocations_dma_undefined/seg=level1_HOMEPAGE/seg=level2_HOMEPAGE/seg=level3_NA/seg=level4_MAIN/seg=zip_68110/seg=locid_USNE0363/seg=dma_652/seg=state_NE/seg=locTimeZoneAbbr_CDT/seg=city_Omaha/seg=country_US/seg=loctype_1/seg=locname_Omaha%2C%2520NE/seg=site_undefined/seg=zone_home/seg=lang_en/seg=ampm_pm/seg=wind_lo/seg=hum_lo/seg=relativeHumidity_49/seg=fsnw_nl/seg=tempH_80h/seg=tempHR_warm/seg=tempL_50h/seg=tempLR_thaw/seg=fc1_nl/seg=fc2_thdr/seg=fc3_thdr/seg=cond_cld/seg=snw_nl/seg=tempR_cool/seg=windSpeed_11/seg=pollen_lo/seg=baroTendency_nl/seg=uv_nl/seg=uvIndex_0/seg=temp_60h%2C65f%2C18c%2C19ci/seg=severe_n/seg=realTemp_65/rt=ifr HTTP/1.1
Host: bcp.crwdcntrl.net
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-US,en;q=0.5
Referer: http://www.weather.com/
Cookie: _cc_cc="ACZ4nGNQMLIwTbYwMjdMSk6xMElMS0pLNbcwN0o0NU%2BxNEpNNEthAIJQF618BjgQXHXxEAfjckGG%2F4yMDPcvfmSFsXcd1IUxdyKYy5fc4YSx30ztYYSxr596xAZjnzt6iBnG7jihDmPO6taCMS%2FPPMAEYx9ePIcFxm74rwljvkYSvoRk%2BKY%2FhTDm24%2BWMCYAvkhK0g%3D%3D"; _cc_aud=ABR4nGNgYGAIddHKZ4ABdgbGnBQwK2gnmMr6DqamQ5RkZ0B4eWBq5nQgAQABMwiF; _cc_id=285c8271bcd84afbfe7872a57d92ea6d; _cc_dc=0
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2554ca43, /192.168.1.67:62093 => bcp.crwdcntrl.net/199.233.57.15:80]: Wrote: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /5/c=2215/rand=743842966/pv=y/seg=preferredLocation_locid_USNE0363/seg=recentSearchLocations_locid_USNE0363/seg=recentSearchLocations_dma_undefined/seg=level1_HOMEPAGE/seg=level2_HOMEPAGE/seg=level3_NA/seg=level4_MAIN/seg=zip_68110/seg=locid_USNE0363/seg=dma_652/seg=state_NE/seg=locTimeZoneAbbr_CDT/seg=city_Omaha/seg=country_US/seg=loctype_1/seg=locname_Omaha%2C%2520NE/seg=site_undefined/seg=zone_home/seg=lang_en/seg=ampm_pm/seg=wind_lo/seg=hum_lo/seg=relativeHumidity_49/seg=fsnw_nl/seg=tempH_80h/seg=tempHR_warm/seg=tempL_50h/seg=tempLR_thaw/seg=fc1_nl/seg=fc2_thdr/seg=fc3_thdr/seg=cond_cld/seg=snw_nl/seg=tempR_cool/seg=windSpeed_11/seg=pollen_lo/seg=baroTendency_nl/seg=uv_nl/seg=uvIndex_0/seg=temp_60h%2C65f%2C18c%2C19ci/seg=severe_n/seg=realTemp_65/rt=ifr HTTP/1.1
Host: bcp.crwdcntrl.net
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-US,en;q=0.5
Referer: http://www.weather.com/
Cookie: _cc_cc="ACZ4nGNQMLIwTbYwMjdMSk6xMElMS0pLNbcwN0o0NU%2BxNEpNNEthAIJQF618BjgQXHXxEAfjckGG%2F4yMDPcvfmSFsXcd1IUxdyKYy5fc4YSx30ztYYSxr596xAZjnzt6iBnG7jihDmPO6taCMS%2FPPMAEYx9ePIcFxm74rwljvkYSvoRk%2BKY%2FhTDm24%2BWMCYAvkhK0g%3D%3D"; _cc_aud=ABR4nGNgYGAIddHKZ4ABdgbGnBQwK2gnmMr6DqamQ5RkZ0B4eWBq5nQgAQABMwiF; _cc_id=285c8271bcd84afbfe7872a57d92ea6d; _cc_dc=0
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2554ca43, /192.168.1.67:62093 => bcp.crwdcntrl.net/199.233.57.15:80]: Connected
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2554ca43, /192.168.1.67:62093 => bcp.crwdcntrl.net/199.233.57.15:80]: Using existing connection to: bcp.crwdcntrl.net/199.233.57.15:80
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2554ca43, /192.168.1.67:62093 => bcp.crwdcntrl.net/199.233.57.15:80]: Writing: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2554ca43, /192.168.1.67:62093 => bcp.crwdcntrl.net/199.233.57.15:80]: Writing an empty buffer to signal the end of our chunked transfer
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2554ca43, /192.168.1.67:62093 => bcp.crwdcntrl.net/199.233.57.15:80]: Wrote: EmptyLastHttpContent
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-2 << "HTTP/1.1 200 OK[\r][\n]"
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-2 << "content-type: application/json; charset=UTF-8[\r][\n]"
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-2 << "connection: close[\r][\n]"
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-2 << "content-length: 88[\r][\n]"
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-2 << "server: httpd.js[\r][\n]"
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-2 << "date: Sat, 02 May 2015 01:46:05 GMT[\r][\n]"
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-2 << "[\r][\n]"
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.headers - http-outgoing-2 << HTTP/1.1 200 OK
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.headers - http-outgoing-2 << content-type: application/json; charset=UTF-8
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.headers - http-outgoing-2 << connection: close
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.headers - http-outgoing-2 << content-length: 88
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.headers - http-outgoing-2 << server: httpd.js
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.headers - http-outgoing-2 << date: Sat, 02 May 2015 01:46:05 GMT
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.wire - http-outgoing-2 << "{"name":"quit","sessionId":"68c30f51-aaab-479e-bc39-dd99e1af9c72","status":0,"value":""}"
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-2: Shutdown connection
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection discarded
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-2: Close connection
[Forwarding quit on session 68c30f51-aaab-479e-bc39-dd99e1af9c72 to remote] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 2][route: {}->http://127.0.0.1:7055][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
[LittleProxy-ClientToProxyWorker-1] ERROR org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x670084bf, /fe80:0:0:0:d55a:4478:f372:6a44%17:62019 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Caught an exception on ClientToProxyConnection
java.io.IOException: An existing connection was forcibly closed by the remote host
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:379)
    at io.netty.buffer.UnpooledUnsafeDirectByteBuf.setBytes(UnpooledUnsafeDirectByteBuf.java:447)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:881)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:241)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:119)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354)
    at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:111)
    at java.lang.Thread.run(Thread.java:745)
[LittleProxy-ClientToProxyWorker-7] ERROR org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x4bddd995, /fe80:0:0:0:d55a:4478:f372:6a44%17:62047 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Caught an exception on ClientToProxyConnection
java.io.IOException: An existing connection was forcibly closed by the remote host
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:379)
    at io.netty.buffer.UnpooledUnsafeDirectByteBuf.setBytes(UnpooledUnsafeDirectByteBuf.java:447)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:881)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:241)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:119)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354)
    at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:111)
    at java.lang.Thread.run(Thread.java:745)
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0x670084bf, /fe80:0:0:0:d55a:4478:f372:6a44%17:62019 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Disconnected
[LittleProxy-ClientToProxyWorker-0] ERROR org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x7fcfae77, /fe80:0:0:0:d55a:4478:f372:6a44%17:62018 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Caught an exception on ClientToProxyConnection
java.io.IOException: An existing connection was forcibly closed by the remote host
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:379)
    at io.netty.buffer.UnpooledUnsafeDirectByteBuf.setBytes(UnpooledUnsafeDirectByteBuf.java:447)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:881)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:241)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:119)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354)
    at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:111)
    at java.lang.Thread.run(Thread.java:745)
[LittleProxy-ClientToProxyWorker-7] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0x4bddd995, /fe80:0:0:0:d55a:4478:f372:6a44%17:62047 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Disconnected
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0x7fcfae77, /fe80:0:0:0:d55a:4478:f372:6a44%17:62018 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Disconnected
[LittleProxy-ProxyToServerWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x9dcad6b6, /192.168.1.67:62053 :> h.nexac.com/54.191.228.133:80]: Disconnected
[LittleProxy-ProxyToServerWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x069d7bce, /192.168.1.67:62083 :> nr.taboola.com/23.3.96.88:80]: Disconnected
[LittleProxy-ProxyToServerWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0xb934f858, /192.168.1.67:62052 :> odc.weather.com/66.235.139.206:80]: Disconnected
[LittleProxy-ProxyToServerWorker-7] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x5f56922e, /192.168.1.67:62084 :> nr.taboola.com/174.76.226.90:80]: Disconnected
[LittleProxy-ProxyToServerWorker-7] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0xa8230df5, /192.168.1.67:62054 :> www.weather.com/96.17.203.90:80]: Disconnected
[LittleProxy-ClientToProxyWorker-2] ERROR org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xb0ac013e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62024 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Caught an exception on ClientToProxyConnection
[LittleProxy-ClientToProxyWorker-4] ERROR org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x83043b93, /fe80:0:0:0:d55a:4478:f372:6a44%17:62030 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Caught an exception on ClientToProxyConnection
java.io.IOException: An existing connection was forcibly closed by the remote host
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:379)
    at io.netty.buffer.UnpooledUnsafeDirectByteBuf.setBytes(UnpooledUnsafeDirectByteBuf.java:447)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:881)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:241)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:119)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354)
    at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:111)
    at java.lang.Thread.run(Thread.java:745)
[LittleProxy-ClientToProxyWorker-5] ERROR org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xc5cb6bb0, /fe80:0:0:0:d55a:4478:f372:6a44%17:62033 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Caught an exception on ClientToProxyConnection
java.io.IOException: An existing connection was forcibly closed by the remote host
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:379)
    at io.netty.buffer.UnpooledUnsafeDirectByteBuf.setBytes(UnpooledUnsafeDirectByteBuf.java:447)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:881)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:241)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:119)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354)
    at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:111)
    at java.lang.Thread.run(Thread.java:745)
[LittleProxy-ClientToProxyWorker-3] ERROR org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x6cc3385a, /fe80:0:0:0:d55a:4478:f372:6a44%17:62025 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Caught an exception on ClientToProxyConnection
java.io.IOException: An existing connection was forcibly closed by the remote host
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:379)
    at io.netty.buffer.UnpooledUnsafeDirectByteBuf.setBytes(UnpooledUnsafeDirectByteBuf.java:447)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:881)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:241)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:119)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354)
    at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:111)
    at java.lang.Thread.run(Thread.java:745)
[LittleProxy-ClientToProxyWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0x6cc3385a, /fe80:0:0:0:d55a:4478:f372:6a44%17:62025 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Disconnected
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0xb0ac013e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62024 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Disconnected
java.io.IOException: An existing connection was forcibly closed by the remote host
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:379)
    at io.netty.buffer.UnpooledUnsafeDirectByteBuf.setBytes(UnpooledUnsafeDirectByteBuf.java:447)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:881)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:241)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:119)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354)
    at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:111)
    at java.lang.Thread.run(Thread.java:745)
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0xc5cb6bb0, /fe80:0:0:0:d55a:4478:f372:6a44%17:62033 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Disconnected
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0xeac4cf6a, /192.168.1.67:62059 :> tags.tiqcdn.com/93.184.216.180:80]: Disconnected
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0x83043b93, /fe80:0:0:0:d55a:4478:f372:6a44%17:62030 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Disconnected
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0xd406ae74, /192.168.1.67:62051 :> tags.tiqcdn.com/93.184.216.180:80]: Disconnected
[LittleProxy-ClientToProxyWorker-6] ERROR org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xae2fe616, /fe80:0:0:0:d55a:4478:f372:6a44%17:62034 => /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Caught an exception on ClientToProxyConnection
java.io.IOException: An existing connection was forcibly closed by the remote host
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:379)
    at io.netty.buffer.UnpooledUnsafeDirectByteBuf.setBytes(UnpooledUnsafeDirectByteBuf.java:447)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:881)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:241)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:119)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354)
    at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:111)
    at java.lang.Thread.run(Thread.java:745)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0xa7fdb492, /192.168.1.67:62087 :> b.scorecardresearch.com/174.76.226.69:80]: Disconnected
[LittleProxy-ProxyToServerWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x15a1a084, /192.168.1.67:62072 :> ping.chartbeat.net/54.235.157.205:80]: Disconnected
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0xae2fe616, /fe80:0:0:0:d55a:4478:f372:6a44%17:62034 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:61436]: Disconnected
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x202aa29b, /192.168.1.67:62067 :> odc.weather.com/66.235.139.17:80]: Disconnected
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0xba5f8b3d, /192.168.1.67:62066 :> c2.taboola.com/23.45.63.134:80]: Disconnected
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x58b5abc9, /192.168.1.67:62048 :> tags.tiqcdn.com/93.184.216.180:80]: Disconnected
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x125c4f84, /192.168.1.67:62043 :> b.scorecardresearch.com/174.76.226.48:80]: Disconnected
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x311eea55, /192.168.1.67:62044 :> b.scorecardresearch.com/174.76.226.69:80]: Disconnected
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x98fdbe80, /192.168.1.67:62088 :> secure-us.imrworldwide.com/138.108.7.20:80]: Disconnected
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x0d7695ec, /192.168.1.67:62060 :> secure-us.imrworldwide.com/138.108.7.20:80]: Disconnected
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x2554ca43, /192.168.1.67:62093 :> bcp.crwdcntrl.net/199.233.57.15:80]: Disconnected
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x57b6936c, /192.168.1.67:62065 :> static.chartbeat.com/23.45.53.91:80]: Disconnected
May 01, 2015 8:46:07 PM org.openqa.selenium.os.UnixProcess$SeleniumWatchDog destroyHarder
INFO: Command failed to close cleanly. Destroying forcefully (v2). org.openqa.selenium.os.UnixProcess$SeleniumWatchDog@158a3b2e
[main] INFO org.littleshoot.proxy.impl.DefaultHttpProxyServer - Shutting down proxy gracefully
[main] INFO org.littleshoot.proxy.impl.DefaultHttpProxyServer - Closing all channels...
[main] INFO org.littleshoot.proxy.impl.DefaultHttpProxyServer - Shutting down event loops
[main] INFO org.littleshoot.proxy.impl.DefaultHttpProxyServer - Done shutting down proxy
ryanlevell commented 9 years ago

Here's aol.com:

[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xa90f6e07, /192.168.1.67:62534 => cdn.at.atwola.com/23.33.59.68:80]: Using existing connection to: cdn.at.atwola.com/23.33.59.68:80
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xa90f6e07, /192.168.1.67:62534 => cdn.at.atwola.com/23.33.59.68:80]: Writing: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xa90f6e07, /192.168.1.67:62534 => cdn.at.atwola.com/23.33.59.68:80]: Writing an empty buffer to signal the end of our chunked transfer
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xa90f6e07, /192.168.1.67:62534 => cdn.at.atwola.com/23.33.59.68:80]: Wrote: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL): Configuring ChannelPipeline
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL): Created ClientToProxyConnection
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Connected
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Reading: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET http://at.on.aol.com/slider/221/4.jpg HTTP/1.1
Host: at.on.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D6FD86FD98675FEC7-11827C8969C1EC33%7C1493690127501%3B%20s_getnr%3D1430531727505-New%7C1493603727505%3B%20s_nrgvo%3DNew%7C1493603727506%3B; s_vi=[CS]v1|2AA21748851D134F-400019050001B3D0[CE]; grvinsights=6cda652e0e1dd4def3e0125732a9ff90; UNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; CUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c
Connection: keep-alive
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Got request: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET http://at.on.aol.com/slider/221/4.jpg HTTP/1.1
Host: at.on.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D6FD86FD98675FEC7-11827C8969C1EC33%7C1493690127501%3B%20s_getnr%3D1430531727505-New%7C1493603727505%3B%20s_nrgvo%3DNew%7C1493603727506%3B; s_vi=[CS]v1|2AA21748851D134F-400019050001B3D0[CE]; grvinsights=6cda652e0e1dd4def3e0125732a9ff90; UNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; CUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c
Connection: keep-alive
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Ensuring that hostAndPort are available in http://at.on.aol.com/slider/221/4.jpg
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Finding ProxyToServerConnection for: at.on.aol.com
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Didn't find existing ProxyToServerConnection for: at.on.aol.com
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xe68332a6, /192.168.1.67:62508 => b.aol.com/149.174.98.86:80]: Remembering the current request.
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xe68332a6, /192.168.1.67:62508 => b.aol.com/149.174.98.86:80]: Reading: DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Sat, 02 May 2015 02:01:27 GMT
Server: Apache
Cache-Control: max-age=0
Expires: Sat, 02 May 2015 02:01:27 GMT
Content-Length: 0
Content-Type: image/gif
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xe68332a6, /192.168.1.67:62508 => b.aol.com/149.174.98.86:80]: Received raw response: DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Sat, 02 May 2015 02:01:27 GMT
Server: Apache
Cache-Control: max-age=0
Expires: Sat, 02 May 2015 02:01:27 GMT
Content-Length: 0
Content-Type: image/gif
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xe68332a6, /192.168.1.67:62508 => b.aol.com/149.174.98.86:80]: Remembering the current response.
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x88d7c4b7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62502 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing: DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Sat, 02 May 2015 02:01:27 GMT
Server: Apache
Cache-Control: max-age=0
Expires: Sat, 02 May 2015 02:01:27 GMT
Content-Length: 0
Content-Type: image/gif
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x88d7c4b7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62502 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Wrote: DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Sat, 02 May 2015 02:01:27 GMT
Server: Apache
Cache-Control: max-age=0
Expires: Sat, 02 May 2015 02:01:27 GMT
Content-Length: 0
Content-Type: image/gif
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x88d7c4b7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62502 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x88d7c4b7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62502 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Not closing on middle chunk for /ping?ts=1430532085550&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=357252&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=dailyBuzz&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=531727450&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&plids=652083%7Cdaily-buzz3%2C652095%7Cdaily-buzz4%2C652090%7Cdaily-buzz5%2C652092%7Cdaily-buzz6%2C652082%7Cdaily-buzz7%2C652089%7Cdaily-buzz8%2C652091%7Cdaily-buzz9%2C651834%7Cdaily-buzz10&pgvis=1
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0xe68332a6, /192.168.1.67:62508 => b.aol.com/149.174.98.86:80]: Reading: EmptyLastHttpContent
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x88d7c4b7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62502 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x88d7c4b7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62502 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing: EmptyLastHttpContent
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x88d7c4b7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62502 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing an empty buffer to signal the end of our chunked transfer
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x88d7c4b7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62502 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Wrote: EmptyLastHttpContent
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x88d7c4b7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62502 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x88d7c4b7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62502 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing: EmptyByteBufBE
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x88d7c4b7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62502 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Wrote: EmptyByteBufBE
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x88d7c4b7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62502 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Last chunk...using normal closing rules
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x88d7c4b7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62502 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Not closing -- response probably keep alive for:
DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Date: Sat, 02 May 2015 02:01:27 GMT
Server: Apache
Cache-Control: max-age=0
Expires: Sat, 02 May 2015 02:01:27 GMT
Content-Length: 0
Content-Type: image/gif
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x88d7c4b7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62502 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Last chunk... using normal closing rules
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x88d7c4b7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62502 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Not closing client to proxy connection for request: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /ping?ts=1430532085550&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=357252&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=dailyBuzz&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=531727450&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&plids=652083%7Cdaily-buzz3%2C652095%7Cdaily-buzz4%2C652090%7Cdaily-buzz5%2C652092%7Cdaily-buzz6%2C652082%7Cdaily-buzz7%2C652089%7Cdaily-buzz8%2C652091%7Cdaily-buzz9%2C651834%7Cdaily-buzz10&pgvis=1 HTTP/1.1
Host: b.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D6FD86FD98675FEC7-11827C8969C1EC33%7C1493690127501%3B%20s_getnr%3D1430531727505-New%7C1493603727505%3B%20s_nrgvo%3DNew%7C1493603727506%3B; s_vi=[CS]v1|2AA21748851D134F-400019050001B3D0[CE]; grvinsights=6cda652e0e1dd4def3e0125732a9ff90; MUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.747e; UNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; CUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; dlV=1:1:1430531728:0:1430531728; dlS=1430531728
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x0afc9802, /192.168.1.67:62533 => cdn.at.atwola.com/23.33.59.68:80]: Remembering the current request.
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x0afc9802, /192.168.1.67:62533 => cdn.at.atwola.com/23.33.59.68:80]: Reading: DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Server: nginx
Content-Type: text/html
Last-Modified: Mon, 24 Mar 2014 15:30:59 GMT
P3p: CP="CURo DEVo TAIo PSAo IVAo IVDo LOC ONL UNI COM NAV INT STA DEM OUR"
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 438
Cache-Control: public, max-age=604800
Expires: Sat, 09 May 2015 02:01:27 GMT
Date: Sat, 02 May 2015 02:01:27 GMT
Connection: keep-alive
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x0afc9802, /192.168.1.67:62533 => cdn.at.atwola.com/23.33.59.68:80]: Received raw response: DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Server: nginx
Content-Type: text/html
Last-Modified: Mon, 24 Mar 2014 15:30:59 GMT
P3p: CP="CURo DEVo TAIo PSAo IVAo IVDo LOC ONL UNI COM NAV INT STA DEM OUR"
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 438
Cache-Control: public, max-age=604800
Expires: Sat, 09 May 2015 02:01:27 GMT
Date: Sat, 02 May 2015 02:01:27 GMT
Connection: keep-alive
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x0afc9802, /192.168.1.67:62533 => cdn.at.atwola.com/23.33.59.68:80]: Remembering the current response.
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xd722b2f7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62238 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing: DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Server: nginx
Content-Type: text/html
Last-Modified: Mon, 24 Mar 2014 15:30:59 GMT
P3p: CP="CURo DEVo TAIo PSAo IVAo IVDo LOC ONL UNI COM NAV INT STA DEM OUR"
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 438
Cache-Control: public, max-age=604800
Expires: Sat, 09 May 2015 02:01:27 GMT
Date: Sat, 02 May 2015 02:01:27 GMT
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xd722b2f7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62238 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Wrote: DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Server: nginx
Content-Type: text/html
Last-Modified: Mon, 24 Mar 2014 15:30:59 GMT
P3p: CP="CURo DEVo TAIo PSAo IVAo IVDo LOC ONL UNI COM NAV INT STA DEM OUR"
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 438
Cache-Control: public, max-age=604800
Expires: Sat, 09 May 2015 02:01:27 GMT
Date: Sat, 02 May 2015 02:01:27 GMT
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xd722b2f7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62238 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xd722b2f7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62238 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Not closing on middle chunk for /_media/uac/guid.html
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0x0afc9802, /192.168.1.67:62533 => cdn.at.atwola.com/23.33.59.68:80]: Reading: DefaultLastHttpContent(data: SlicedByteBuf(ridx: 0, widx: 438, cap: 438/438, unwrapped: UnpooledUnsafeDirectByteBuf(ridx: 828, widx: 828, cap: 1024)), decoderResult: success)
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xd722b2f7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62238 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xd722b2f7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62238 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing: DefaultLastHttpContent(data: SlicedByteBuf(ridx: 0, widx: 438, cap: 438/438, unwrapped: UnpooledUnsafeDirectByteBuf(ridx: 828, widx: 828, cap: 1024)), decoderResult: success)
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xd722b2f7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62238 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing an empty buffer to signal the end of our chunked transfer
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xd722b2f7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62238 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Wrote: DefaultLastHttpContent(data: SlicedByteBuf(ridx: 0, widx: 438, cap: 438/438, unwrapped: UnpooledUnsafeDirectByteBuf(ridx: 828, widx: 828, cap: 1024)), decoderResult: success)
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xd722b2f7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62238 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xd722b2f7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62238 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing: EmptyByteBufBE
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xd722b2f7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62238 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Wrote: EmptyByteBufBE
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xd722b2f7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62238 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Last chunk...using normal closing rules
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xd722b2f7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62238 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Not closing -- response probably keep alive for:
DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Server: nginx
Content-Type: text/html
Last-Modified: Mon, 24 Mar 2014 15:30:59 GMT
P3p: CP="CURo DEVo TAIo PSAo IVAo IVDo LOC ONL UNI COM NAV INT STA DEM OUR"
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 438
Cache-Control: public, max-age=604800
Expires: Sat, 09 May 2015 02:01:27 GMT
Date: Sat, 02 May 2015 02:01:27 GMT
Connection: keep-alive
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xd722b2f7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62238 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Last chunk... using normal closing rules
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xd722b2f7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62238 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Not closing client to proxy connection for request: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /_media/uac/guid.html HTTP/1.1
Host: cdn.at.atwola.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: CfP=1; JEB2=554421C76E651ABF302F4C62F0006986
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xa90f6e07, /192.168.1.67:62534 => cdn.at.atwola.com/23.33.59.68:80]: Remembering the current request.
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xa90f6e07, /192.168.1.67:62534 => cdn.at.atwola.com/23.33.59.68:80]: Reading: DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Server: nginx
Content-Type: text/html
Last-Modified: Tue, 13 Jan 2015 15:15:59 GMT
P3p: CP="CURo DEVo TAIo PSAo IVAo IVDo LOC ONL UNI COM NAV INT STA DEM OUR"
ntCoent-Length: 2976
Content-Encoding: gzip
Content-Length: 1637
Vary: Accept-Encoding
Cache-Control: public, max-age=86400
Expires: Sun, 03 May 2015 02:01:27 GMT
Date: Sat, 02 May 2015 02:01:27 GMT
Connection: keep-alive
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xa90f6e07, /192.168.1.67:62534 => cdn.at.atwola.com/23.33.59.68:80]: Received raw response: DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Server: nginx
Content-Type: text/html
Last-Modified: Tue, 13 Jan 2015 15:15:59 GMT
P3p: CP="CURo DEVo TAIo PSAo IVAo IVDo LOC ONL UNI COM NAV INT STA DEM OUR"
ntCoent-Length: 2976
Content-Encoding: gzip
Content-Length: 1637
Vary: Accept-Encoding
Cache-Control: public, max-age=86400
Expires: Sun, 03 May 2015 02:01:27 GMT
Date: Sat, 02 May 2015 02:01:27 GMT
Connection: keep-alive
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xa90f6e07, /192.168.1.67:62534 => cdn.at.atwola.com/23.33.59.68:80]: Remembering the current response.
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing: DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Server: nginx
Content-Type: text/html
Last-Modified: Tue, 13 Jan 2015 15:15:59 GMT
P3p: CP="CURo DEVo TAIo PSAo IVAo IVDo LOC ONL UNI COM NAV INT STA DEM OUR"
ntCoent-Length: 2976
Content-Encoding: gzip
Content-Length: 1637
Vary: Accept-Encoding
Cache-Control: public, max-age=86400
Expires: Sun, 03 May 2015 02:01:27 GMT
Date: Sat, 02 May 2015 02:01:27 GMT
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Wrote: DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Server: nginx
Content-Type: text/html
Last-Modified: Tue, 13 Jan 2015 15:15:59 GMT
P3p: CP="CURo DEVo TAIo PSAo IVAo IVDo LOC ONL UNI COM NAV INT STA DEM OUR"
ntCoent-Length: 2976
Content-Encoding: gzip
Content-Length: 1637
Vary: Accept-Encoding
Cache-Control: public, max-age=86400
Expires: Sun, 03 May 2015 02:01:27 GMT
Date: Sat, 02 May 2015 02:01:27 GMT
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Not closing on middle chunk for /_media/uac/tcode3.html
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0xa90f6e07, /192.168.1.67:62534 => cdn.at.atwola.com/23.33.59.68:80]: Reading: DefaultHttpContent(data: SlicedByteBuf(ridx: 0, widx: 612, cap: 612/612, unwrapped: UnpooledUnsafeDirectByteBuf(ridx: 1024, widx: 1024, cap: 1024)), decoderResult: success)
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing: DefaultHttpContent(data: SlicedByteBuf(ridx: 0, widx: 612, cap: 612/612, unwrapped: UnpooledUnsafeDirectByteBuf(ridx: 1024, widx: 1024, cap: 1024)), decoderResult: success)
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Wrote: DefaultHttpContent(data: SlicedByteBuf(ridx: 0, widx: 612, cap: 612/612, unwrapped: UnpooledUnsafeDirectByteBuf(ridx: 1024, widx: 1024, cap: 1024)), decoderResult: success)
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Not closing on middle chunk for /_media/uac/tcode3.html
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0xa90f6e07, /192.168.1.67:62534 => cdn.at.atwola.com/23.33.59.68:80]: Reading: DefaultHttpContent(data: SlicedByteBuf(ridx: 0, widx: 436, cap: 436/436, unwrapped: UnpooledUnsafeDirectByteBuf(ridx: 436, widx: 436, cap: 1024)), decoderResult: success)
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing: DefaultHttpContent(data: SlicedByteBuf(ridx: 0, widx: 436, cap: 436/436, unwrapped: UnpooledUnsafeDirectByteBuf(ridx: 436, widx: 436, cap: 1024)), decoderResult: success)
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Wrote: DefaultHttpContent(data: SlicedByteBuf(ridx: 0, widx: 436, cap: 436/436, unwrapped: UnpooledUnsafeDirectByteBuf(ridx: 436, widx: 436, cap: 1024)), decoderResult: success)
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Not closing on middle chunk for /_media/uac/tcode3.html
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0xa90f6e07, /192.168.1.67:62534 => cdn.at.atwola.com/23.33.59.68:80]: Reading: DefaultLastHttpContent(data: SlicedByteBuf(ridx: 0, widx: 589, cap: 589/589, unwrapped: UnpooledUnsafeDirectByteBuf(ridx: 589, widx: 589, cap: 16384)), decoderResult: success)
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing: DefaultLastHttpContent(data: SlicedByteBuf(ridx: 0, widx: 589, cap: 589/589, unwrapped: UnpooledUnsafeDirectByteBuf(ridx: 589, widx: 589, cap: 16384)), decoderResult: success)
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing an empty buffer to signal the end of our chunked transfer
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Wrote: DefaultLastHttpContent(data: SlicedByteBuf(ridx: 0, widx: 589, cap: 589/589, unwrapped: UnpooledUnsafeDirectByteBuf(ridx: 589, widx: 589, cap: 16384)), decoderResult: success)
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing: EmptyByteBufBE
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Wrote: EmptyByteBufBE
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Last chunk...using normal closing rules
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Not closing -- response probably keep alive for:
DefaultHttpResponse(decodeResult: success, version: HTTP/1.1)
HTTP/1.1 200 OK
Server: nginx
Content-Type: text/html
Last-Modified: Tue, 13 Jan 2015 15:15:59 GMT
P3p: CP="CURo DEVo TAIo PSAo IVAo IVDo LOC ONL UNI COM NAV INT STA DEM OUR"
ntCoent-Length: 2976
Content-Encoding: gzip
Content-Length: 1637
Vary: Accept-Encoding
Cache-Control: public, max-age=86400
Expires: Sun, 03 May 2015 02:01:27 GMT
Date: Sat, 02 May 2015 02:01:27 GMT
Connection: keep-alive
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Last chunk... using normal closing rules
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Not closing client to proxy connection for request: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /_media/uac/tcode3.html HTTP/1.1
Host: cdn.at.atwola.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: CfP=1; JEB2=554421C76E651ABF302F4C62F0006986
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x597f31ee, /fe80:0:0:0:d55a:4478:f372:6a44%17:62527 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Modifying request headers for proxying
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x597f31ee, /fe80:0:0:0:d55a:4478:f372:6a44%17:62527 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Modifying request for proxy chaining
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x597f31ee, /fe80:0:0:0:d55a:4478:f372:6a44%17:62527 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Stripped host from uri: http://b.aol.com/ping?ts=1430532085556&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=357258&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=mod24x7&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=531727450&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&mnid=24x7-feed-module-feature1&plid=562667&mpid=2&mlid=dl_v2&lnid=sec2_lnk1&pgvis=1    yielding: /ping?ts=1430532085556&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=357258&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=mod24x7&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=531727450&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&mnid=24x7-feed-module-feature1&plid=562667&mpid=2&mlid=dl_v2&lnid=sec2_lnk1&pgvis=1
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x597f31ee, /fe80:0:0:0:d55a:4478:f372:6a44%17:62527 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Removed sdch and inserted: gzip, deflate
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x597f31ee, /fe80:0:0:0:d55a:4478:f372:6a44%17:62527 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing request to ProxyToServerConnection
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED): Requested write of DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /ping?ts=1430532085556&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=357258&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=mod24x7&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=531727450&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&mnid=24x7-feed-module-feature1&plid=562667&mpid=2&mlid=dl_v2&lnid=sec2_lnk1&pgvis=1 HTTP/1.1
Host: b.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D6FD86FD98675FEC7-11827C8969C1EC33%7C1493690127501%3B%20s_getnr%3D1430531727505-New%7C1493603727505%3B%20s_nrgvo%3DNew%7C1493603727506%3B; s_vi=[CS]v1|2AA21748851D134F-400019050001B3D0[CE]; grvinsights=6cda652e0e1dd4def3e0125732a9ff90; MUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.747e; UNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; CUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; dlV=1:1:1430531728:0:1430531728; dlS=1430531728
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED): Currently disconnected, connect and then write the message
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED): Starting new connection to: b.aol.com/149.174.97.86:80
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x597f31ee, /fe80:0:0:0:d55a:4478:f372:6a44%17:62527 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Stopped reading
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED): Processing connection flow step: CONNECTING
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING): Connecting to server with TCP
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0x597f31ee, /fe80:0:0:0:d55a:4478:f372:6a44%17:62527 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Reading: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING): Requested write of EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING): Retaining reference counted message
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING): Attempted to write while still in the process of connecting, waiting for connection.
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0x597f31ee, /fe80:0:0:0:d55a:4478:f372:6a44%17:62527 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Stopped reading
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Modifying request headers for proxying
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Modifying request for proxy chaining
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Stripped host from uri: http://at.on.aol.com/slider/221/4.jpg    yielding: /slider/221/4.jpg
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Removed sdch and inserted: gzip, deflate
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing request to ProxyToServerConnection
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED): Requested write of DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /slider/221/4.jpg HTTP/1.1
Host: at.on.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D6FD86FD98675FEC7-11827C8969C1EC33%7C1493690127501%3B%20s_getnr%3D1430531727505-New%7C1493603727505%3B%20s_nrgvo%3DNew%7C1493603727506%3B; s_vi=[CS]v1|2AA21748851D134F-400019050001B3D0[CE]; grvinsights=6cda652e0e1dd4def3e0125732a9ff90; UNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; CUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED): Currently disconnected, connect and then write the message
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED): Starting new connection to: at.on.aol.com/23.3.96.178:80
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Stopped reading
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED): Processing connection flow step: CONNECTING
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING): Connecting to server with TCP
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Reading: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING): Requested write of EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING): Retaining reference counted message
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING): Attempted to write while still in the process of connecting, waiting for connection.
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Stopped reading
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING) [id: 0x1566d686, /192.168.1.67:62537 => tacoda.at.atwola.com/64.12.152.20:443]: ConnectionFlowStep succeeded
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING) [id: 0x1566d686, /192.168.1.67:62537 => tacoda.at.atwola.com/64.12.152.20:443]: Processing connection flow step: HANDSHAKING
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (HANDSHAKING) [id: 0x1566d686, /192.168.1.67:62537 => tacoda.at.atwola.com/64.12.152.20:443]: Enabling encryption with SSLEngine: 392e6875[SSLEngine[hostname=null port=-1] SSL_NULL_WITH_NULL_NULL]
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (HANDSHAKING) [id: 0x1566d686, /192.168.1.67:62537 => tacoda.at.atwola.com/64.12.152.20:443]: Connected
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.wire - http-outgoing-2 << "HTTP/1.1 200 OK[\r][\n]"
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.wire - http-outgoing-2 << "content-type: application/json; charset=UTF-8[\r][\n]"
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.wire - http-outgoing-2 << "connection: close[\r][\n]"
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.wire - http-outgoing-2 << "content-length: 88[\r][\n]"
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.wire - http-outgoing-2 << "server: httpd.js[\r][\n]"
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.wire - http-outgoing-2 << "date: Sat, 02 May 2015 02:01:25 GMT[\r][\n]"
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.wire - http-outgoing-2 << "[\r][\n]"
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.headers - http-outgoing-2 << HTTP/1.1 200 OK
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.headers - http-outgoing-2 << content-type: application/json; charset=UTF-8
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.headers - http-outgoing-2 << connection: close
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.headers - http-outgoing-2 << content-length: 88
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.headers - http-outgoing-2 << server: httpd.js
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.headers - http-outgoing-2 << date: Sat, 02 May 2015 02:01:25 GMT
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.wire - http-outgoing-2 << "{"name":"quit","sessionId":"0e349f37-60f8-494e-82cd-f60406e4363e","status":0,"value":""}"
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-2: Shutdown connection
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.impl.execchain.MainClientExec - Connection discarded
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.impl.conn.DefaultManagedHttpClientConnection - http-outgoing-2: Close connection
[Forwarding quit on session 0e349f37-60f8-494e-82cd-f60406e4363e to remote] DEBUG org.apache.http.impl.conn.PoolingHttpClientConnectionManager - Connection released: [id: 2][route: {}->http://127.0.0.1:7055][total kept alive: 0; route allocated: 0 of 2000; total allocated: 0 of 2000]
[LittleProxy-ClientToProxyWorker-6] ERROR org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x88d7c4b7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62502 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Caught an exception on ClientToProxyConnection
java.io.IOException: An existing connection was forcibly closed by the remote host
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:379)
    at io.netty.buffer.UnpooledUnsafeDirectByteBuf.setBytes(UnpooledUnsafeDirectByteBuf.java:447)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:881)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:241)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:119)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354)
    at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:111)
    at java.lang.Thread.run(Thread.java:745)
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0x88d7c4b7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62502 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Disconnected
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0xe68332a6, /192.168.1.67:62508 :> b.aol.com/149.174.98.86:80]: Disconnected
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbe61a7f9, /fe80:0:0:0:d55a:4478:f372:6a44%17:62499 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Modifying request headers for proxying
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbe61a7f9, /fe80:0:0:0:d55a:4478:f372:6a44%17:62499 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Modifying request for proxy chaining
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbe61a7f9, /fe80:0:0:0:d55a:4478:f372:6a44%17:62499 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Stripped host from uri: http://px.at.atwola.com/px/aolus-hp/    yielding: /px/aolus-hp/
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbe61a7f9, /fe80:0:0:0:d55a:4478:f372:6a44%17:62499 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Removed sdch and inserted: gzip, deflate
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbe61a7f9, /fe80:0:0:0:d55a:4478:f372:6a44%17:62499 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing request to ProxyToServerConnection
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED): Requested write of DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /px/aolus-hp/ HTTP/1.1
Host: px.at.atwola.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: CfP=1; JEB2=554421C76E651ABF302F4C62F0006986
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED): Currently disconnected, connect and then write the message
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED): Starting new connection to: px.at.atwola.com/149.174.149.31:80
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbe61a7f9, /fe80:0:0:0:d55a:4478:f372:6a44%17:62499 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Stopped reading
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED): Processing connection flow step: CONNECTING
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING): Connecting to server with TCP
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0xbe61a7f9, /fe80:0:0:0:d55a:4478:f372:6a44%17:62499 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Reading: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING): Requested write of EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING): Retaining reference counted message
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING): Attempted to write while still in the process of connecting, waiting for connection.
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0xbe61a7f9, /fe80:0:0:0:d55a:4478:f372:6a44%17:62499 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Stopped reading
[LittleProxy-ProxyToServerWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING) [id: 0xb36c0ab4, /192.168.1.67:62548 => at.on.aol.com/23.3.96.178:80]: ConnectionFlowStep succeeded
[LittleProxy-ProxyToServerWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING) [id: 0xb36c0ab4, /192.168.1.67:62548 => at.on.aol.com/23.3.96.178:80]: Connection flow completed successfully: null
[LittleProxy-ProxyToServerWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Connection to server succeeded: at.on.aol.com/23.3.96.178:80
[LittleProxy-ProxyToServerWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: All servers have finished attempting to connect, resuming reading from client.
[LittleProxy-ProxyToServerWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Resumed reading
[LittleProxy-ProxyToServerWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb36c0ab4, /192.168.1.67:62548 => at.on.aol.com/23.3.96.178:80]: Writing initial request: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /slider/221/4.jpg HTTP/1.1
Host: at.on.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D6FD86FD98675FEC7-11827C8969C1EC33%7C1493690127501%3B%20s_getnr%3D1430531727505-New%7C1493603727505%3B%20s_nrgvo%3DNew%7C1493603727506%3B; s_vi=[CS]v1|2AA21748851D134F-400019050001B3D0[CE]; grvinsights=6cda652e0e1dd4def3e0125732a9ff90; UNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; CUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb36c0ab4, /192.168.1.67:62548 => at.on.aol.com/23.3.96.178:80]: Requested write of DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /slider/221/4.jpg HTTP/1.1
Host: at.on.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D6FD86FD98675FEC7-11827C8969C1EC33%7C1493690127501%3B%20s_getnr%3D1430531727505-New%7C1493603727505%3B%20s_nrgvo%3DNew%7C1493603727506%3B; s_vi=[CS]v1|2AA21748851D134F-400019050001B3D0[CE]; grvinsights=6cda652e0e1dd4def3e0125732a9ff90; UNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; CUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb36c0ab4, /192.168.1.67:62548 => at.on.aol.com/23.3.96.178:80]: Using existing connection to: at.on.aol.com/23.3.96.178:80
[LittleProxy-ProxyToServerWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb36c0ab4, /192.168.1.67:62548 => at.on.aol.com/23.3.96.178:80]: Writing: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /slider/221/4.jpg HTTP/1.1
Host: at.on.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D6FD86FD98675FEC7-11827C8969C1EC33%7C1493690127501%3B%20s_getnr%3D1430531727505-New%7C1493603727505%3B%20s_nrgvo%3DNew%7C1493603727506%3B; s_vi=[CS]v1|2AA21748851D134F-400019050001B3D0[CE]; grvinsights=6cda652e0e1dd4def3e0125732a9ff90; UNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; CUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb36c0ab4, /192.168.1.67:62548 => at.on.aol.com/23.3.96.178:80]: Wrote: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /slider/221/4.jpg HTTP/1.1
Host: at.on.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D6FD86FD98675FEC7-11827C8969C1EC33%7C1493690127501%3B%20s_getnr%3D1430531727505-New%7C1493603727505%3B%20s_nrgvo%3DNew%7C1493603727506%3B; s_vi=[CS]v1|2AA21748851D134F-400019050001B3D0[CE]; grvinsights=6cda652e0e1dd4def3e0125732a9ff90; UNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; CUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb36c0ab4, /192.168.1.67:62548 => at.on.aol.com/23.3.96.178:80]: Connected
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb36c0ab4, /192.168.1.67:62548 => at.on.aol.com/23.3.96.178:80]: Using existing connection to: at.on.aol.com/23.3.96.178:80
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb36c0ab4, /192.168.1.67:62548 => at.on.aol.com/23.3.96.178:80]: Writing: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb36c0ab4, /192.168.1.67:62548 => at.on.aol.com/23.3.96.178:80]: Writing an empty buffer to signal the end of our chunked transfer
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb36c0ab4, /192.168.1.67:62548 => at.on.aol.com/23.3.96.178:80]: Wrote: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0xe57b291e, /fe80:0:0:0:d55a:4478:f372:6a44%17:62219 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Disconnected
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x1764030a, /192.168.1.67:62433 :> aka-cdn-ns.adtechus.com/23.3.96.209:80]: Disconnected
[LittleProxy-ProxyToServerWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0xa90f6e07, /192.168.1.67:62534 :> cdn.at.atwola.com/23.33.59.68:80]: Disconnected
[LittleProxy-ProxyToServerWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0xe8de11c0, /192.168.1.67:62498 :> portal.aolcdn.com/23.218.157.51:80]: Disconnected
[LittleProxy-ClientToProxyWorker-1] ERROR org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Caught an exception on ClientToProxyConnection
java.io.IOException: An existing connection was forcibly closed by the remote host
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:379)
    at io.netty.buffer.UnpooledUnsafeDirectByteBuf.setBytes(UnpooledUnsafeDirectByteBuf.java:447)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:881)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:241)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:119)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354)
    at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:111)
    at java.lang.Thread.run(Thread.java:745)
[LittleProxy-ClientToProxyWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0x16558a66, /fe80:0:0:0:d55a:4478:f372:6a44%17:62530 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Disconnected
[LittleProxy-ProxyToServerWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x90f15b53, /192.168.1.67:62385 :> i.api.grvcdn.com/23.218.157.115:80]: Disconnected
[LittleProxy-ProxyToServerWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0xb36c0ab4, /192.168.1.67:62548 :> at.on.aol.com/23.3.96.178:80]: Disconnected
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0xd85082f2, /192.168.1.67:62357 :> b.aol.com/149.174.98.86:80]: Disconnected
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING) [id: 0x2855598f, /192.168.1.67:62547 => b.aol.com/149.174.97.86:80]: ConnectionFlowStep succeeded
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING) [id: 0x2855598f, /192.168.1.67:62547 => b.aol.com/149.174.97.86:80]: Connection flow completed successfully: null
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0x597f31ee, /fe80:0:0:0:d55a:4478:f372:6a44%17:62527 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Connection to server succeeded: b.aol.com/149.174.97.86:80
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0x597f31ee, /fe80:0:0:0:d55a:4478:f372:6a44%17:62527 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: All servers have finished attempting to connect, resuming reading from client.
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0x597f31ee, /fe80:0:0:0:d55a:4478:f372:6a44%17:62527 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Resumed reading
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2855598f, /192.168.1.67:62547 => b.aol.com/149.174.97.86:80]: Writing initial request: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /ping?ts=1430532085556&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=357258&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=mod24x7&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=531727450&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&mnid=24x7-feed-module-feature1&plid=562667&mpid=2&mlid=dl_v2&lnid=sec2_lnk1&pgvis=1 HTTP/1.1
Host: b.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D6FD86FD98675FEC7-11827C8969C1EC33%7C1493690127501%3B%20s_getnr%3D1430531727505-New%7C1493603727505%3B%20s_nrgvo%3DNew%7C1493603727506%3B; s_vi=[CS]v1|2AA21748851D134F-400019050001B3D0[CE]; grvinsights=6cda652e0e1dd4def3e0125732a9ff90; MUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.747e; UNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; CUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; dlV=1:1:1430531728:0:1430531728; dlS=1430531728
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2855598f, /192.168.1.67:62547 => b.aol.com/149.174.97.86:80]: Requested write of DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /ping?ts=1430532085556&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=357258&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=mod24x7&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=531727450&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&mnid=24x7-feed-module-feature1&plid=562667&mpid=2&mlid=dl_v2&lnid=sec2_lnk1&pgvis=1 HTTP/1.1
Host: b.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D6FD86FD98675FEC7-11827C8969C1EC33%7C1493690127501%3B%20s_getnr%3D1430531727505-New%7C1493603727505%3B%20s_nrgvo%3DNew%7C1493603727506%3B; s_vi=[CS]v1|2AA21748851D134F-400019050001B3D0[CE]; grvinsights=6cda652e0e1dd4def3e0125732a9ff90; MUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.747e; UNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; CUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; dlV=1:1:1430531728:0:1430531728; dlS=1430531728
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2855598f, /192.168.1.67:62547 => b.aol.com/149.174.97.86:80]: Using existing connection to: b.aol.com/149.174.97.86:80
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2855598f, /192.168.1.67:62547 => b.aol.com/149.174.97.86:80]: Writing: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /ping?ts=1430532085556&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=357258&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=mod24x7&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=531727450&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&mnid=24x7-feed-module-feature1&plid=562667&mpid=2&mlid=dl_v2&lnid=sec2_lnk1&pgvis=1 HTTP/1.1
Host: b.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D6FD86FD98675FEC7-11827C8969C1EC33%7C1493690127501%3B%20s_getnr%3D1430531727505-New%7C1493603727505%3B%20s_nrgvo%3DNew%7C1493603727506%3B; s_vi=[CS]v1|2AA21748851D134F-400019050001B3D0[CE]; grvinsights=6cda652e0e1dd4def3e0125732a9ff90; MUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.747e; UNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; CUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; dlV=1:1:1430531728:0:1430531728; dlS=1430531728
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2855598f, /192.168.1.67:62547 => b.aol.com/149.174.97.86:80]: Wrote: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /ping?ts=1430532085556&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=357258&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=mod24x7&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=531727450&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&mnid=24x7-feed-module-feature1&plid=562667&mpid=2&mlid=dl_v2&lnid=sec2_lnk1&pgvis=1 HTTP/1.1
Host: b.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D6FD86FD98675FEC7-11827C8969C1EC33%7C1493690127501%3B%20s_getnr%3D1430531727505-New%7C1493603727505%3B%20s_nrgvo%3DNew%7C1493603727506%3B; s_vi=[CS]v1|2AA21748851D134F-400019050001B3D0[CE]; grvinsights=6cda652e0e1dd4def3e0125732a9ff90; MUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.747e; UNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; CUNAUTHID=1.4bbb0300ffb540ce829a02d3c4c3c7c9.8f5c; dlV=1:1:1430531728:0:1430531728; dlS=1430531728
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2855598f, /192.168.1.67:62547 => b.aol.com/149.174.97.86:80]: Connected
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2855598f, /192.168.1.67:62547 => b.aol.com/149.174.97.86:80]: Using existing connection to: b.aol.com/149.174.97.86:80
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2855598f, /192.168.1.67:62547 => b.aol.com/149.174.97.86:80]: Writing: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2855598f, /192.168.1.67:62547 => b.aol.com/149.174.97.86:80]: Writing an empty buffer to signal the end of our chunked transfer
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x2855598f, /192.168.1.67:62547 => b.aol.com/149.174.97.86:80]: Wrote: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-0] ERROR org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x597f31ee, /fe80:0:0:0:d55a:4478:f372:6a44%17:62527 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Caught an exception on ClientToProxyConnection
java.io.IOException: An existing connection was forcibly closed by the remote host
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:379)
    at io.netty.buffer.UnpooledUnsafeDirectByteBuf.setBytes(UnpooledUnsafeDirectByteBuf.java:447)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:881)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:241)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:119)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354)
    at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:111)
    at java.lang.Thread.run(Thread.java:745)
[LittleProxy-ClientToProxyWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0x597f31ee, /fe80:0:0:0:d55a:4478:f372:6a44%17:62527 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Disconnected
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x2855598f, /192.168.1.67:62547 :> b.aol.com/149.174.97.86:80]: Disconnected
[LittleProxy-ProxyToServerWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING) [id: 0xb0bb7cfc, /192.168.1.67:62549 => px.at.atwola.com/149.174.149.31:80]: ConnectionFlowStep succeeded
[LittleProxy-ProxyToServerWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (CONNECTING) [id: 0xb0bb7cfc, /192.168.1.67:62549 => px.at.atwola.com/149.174.149.31:80]: Connection flow completed successfully: null
[LittleProxy-ProxyToServerWorker-6] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0xbe61a7f9, /fe80:0:0:0:d55a:4478:f372:6a44%17:62499 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Connection to server succeeded: px.at.atwola.com/149.174.149.31:80
[LittleProxy-ProxyToServerWorker-6] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0xbe61a7f9, /fe80:0:0:0:d55a:4478:f372:6a44%17:62499 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: All servers have finished attempting to connect, resuming reading from client.
[LittleProxy-ProxyToServerWorker-6] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0xbe61a7f9, /fe80:0:0:0:d55a:4478:f372:6a44%17:62499 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Resumed reading
[LittleProxy-ProxyToServerWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb0bb7cfc, /192.168.1.67:62549 => px.at.atwola.com/149.174.149.31:80]: Writing initial request: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /px/aolus-hp/ HTTP/1.1
Host: px.at.atwola.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: CfP=1; JEB2=554421C76E651ABF302F4C62F0006986
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb0bb7cfc, /192.168.1.67:62549 => px.at.atwola.com/149.174.149.31:80]: Requested write of DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /px/aolus-hp/ HTTP/1.1
Host: px.at.atwola.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: CfP=1; JEB2=554421C76E651ABF302F4C62F0006986
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb0bb7cfc, /192.168.1.67:62549 => px.at.atwola.com/149.174.149.31:80]: Using existing connection to: px.at.atwola.com/149.174.149.31:80
[LittleProxy-ProxyToServerWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb0bb7cfc, /192.168.1.67:62549 => px.at.atwola.com/149.174.149.31:80]: Writing: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /px/aolus-hp/ HTTP/1.1
Host: px.at.atwola.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: CfP=1; JEB2=554421C76E651ABF302F4C62F0006986
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ProxyToServerWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb0bb7cfc, /192.168.1.67:62549 => px.at.atwola.com/149.174.149.31:80]: Wrote: DefaultHttpRequest(decodeResult: success, version: HTTP/1.1)
GET /px/aolus-hp/ HTTP/1.1
Host: px.at.atwola.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: CfP=1; JEB2=554421C76E651ABF302F4C62F0006986
Accept-Encoding: gzip, deflate
Via: 1.1.KNY-Dell1419
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb0bb7cfc, /192.168.1.67:62549 => px.at.atwola.com/149.174.149.31:80]: Using existing connection to: px.at.atwola.com/149.174.149.31:80
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb0bb7cfc, /192.168.1.67:62549 => px.at.atwola.com/149.174.149.31:80]: Writing: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb0bb7cfc, /192.168.1.67:62549 => px.at.atwola.com/149.174.149.31:80]: Writing an empty buffer to signal the end of our chunked transfer
[LittleProxy-ProxyToServerWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb0bb7cfc, /192.168.1.67:62549 => px.at.atwola.com/149.174.149.31:80]: Connected
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xb0bb7cfc, /192.168.1.67:62549 => px.at.atwola.com/149.174.149.31:80]: Wrote: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0xd722b2f7, /fe80:0:0:0:d55a:4478:f372:6a44%17:62238 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Disconnected
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x39c60b18, /192.168.1.67:62282 :> portal.aolcdn.com/23.218.157.51:80]: Disconnected
[LittleProxy-ClientToProxyWorker-5] ERROR org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbe61a7f9, /fe80:0:0:0:d55a:4478:f372:6a44%17:62499 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Caught an exception on ClientToProxyConnection
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x6b37bc80, /192.168.1.67:62405 :> dlug-assets.grvcdn.com/23.3.98.27:80]: Disconnected
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x0afc9802, /192.168.1.67:62533 :> cdn.at.atwola.com/23.33.59.68:80]: Disconnected
java.io.IOException: An existing connection was forcibly closed by the remote host
    at sun.nio.ch.SocketDispatcher.read0(Native Method)
    at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43)
    at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223)
    at sun.nio.ch.IOUtil.read(IOUtil.java:192)
    at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:379)
    at io.netty.buffer.UnpooledUnsafeDirectByteBuf.setBytes(UnpooledUnsafeDirectByteBuf.java:447)
    at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:881)
    at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:241)
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:119)
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:511)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:468)
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:382)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:354)
    at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:111)
    at java.lang.Thread.run(Thread.java:745)
[LittleProxy-ClientToProxyWorker-5] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0xbe61a7f9, /fe80:0:0:0:d55a:4478:f372:6a44%17:62499 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Disconnected
[LittleProxy-ProxyToServerWorker-7] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x565752fe, /192.168.1.67:62507 :> portal.aolcdn.com/23.218.157.51:80]: Disconnected
[LittleProxy-ProxyToServerWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0xb0bb7cfc, /192.168.1.67:62549 :> px.at.atwola.com/149.174.149.31:80]: Disconnected
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x7ce3d5aa, /192.168.1.67:62456 :> dlug-assets.grvcdn.com/23.3.98.26:80]: Disconnected
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x51bfd389, /192.168.1.67:62404 :> www.aol.com/64.12.21.3:80]: Disconnected
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (HANDSHAKING) [id: 0x1566d686, /192.168.1.67:62537 => tacoda.at.atwola.com/64.12.152.20:443]: ConnectionFlowStep succeeded
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (NEGOTIATING_CONNECT) [id: 0xd61e16e8, /fe80:0:0:0:d55a:4478:f372:6a44%17:62520 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Processing connection flow step: NEGOTIATING_CONNECT
[LittleProxy-ProxyToServerWorker-3] DEBUG io.netty.handler.ssl.SslHandler - [id: 0x1566d686, /192.168.1.67:62537 => tacoda.at.atwola.com/64.12.152.20:443] HANDSHAKEN: TLS_RSA_WITH_AES_128_CBC_SHA
[LittleProxy-ClientToProxyWorker-7] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (NEGOTIATING_CONNECT) [id: 0xd61e16e8, /fe80:0:0:0:d55a:4478:f372:6a44%17:62520 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Responding with CONNECT successful
[LittleProxy-ClientToProxyWorker-7] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (NEGOTIATING_CONNECT) [id: 0xd61e16e8, /fe80:0:0:0:d55a:4478:f372:6a44%17:62520 => /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: ConnectionFlowStep failed
java.io.IOException: An existing connection was forcibly closed by the remote host
    at sun.nio.ch.SocketDispatcher.write0(Native Method)
    at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51)
    at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:93)
    at sun.nio.ch.IOUtil.write(IOUtil.java:51)
    at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:470)
    at io.netty.channel.socket.nio.NioSocketChannel.doWrite(NioSocketChannel.java:286)
    at io.netty.channel.AbstractChannel$AbstractUnsafe.flush0(AbstractChannel.java:750)
    at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.flush0(AbstractNioChannel.java:303)
    at io.netty.channel.AbstractChannel$AbstractUnsafe.flush(AbstractChannel.java:719)
    at io.netty.channel.DefaultChannelPipeline$HeadContext.flush(DefaultChannelPipeline.java:1119)
    at io.netty.channel.AbstractChannelHandlerContext.invokeFlush(AbstractChannelHandlerContext.java:735)
    at io.netty.channel.AbstractChannelHandlerContext.flush(AbstractChannelHandlerContext.java:716)
    at io.netty.channel.ChannelOutboundHandlerAdapter.flush(ChannelOutboundHandlerAdapter.java:115)
    at io.netty.channel.AbstractChannelHandlerContext.invokeFlush(AbstractChannelHandlerContext.java:735)
    at io.netty.channel.AbstractChannelHandlerContext.flush(AbstractChannelHandlerContext.java:716)
    at io.netty.channel.ChannelOutboundHandlerAdapter.flush(ChannelOutboundHandlerAdapter.java:115)
    at io.netty.channel.AbstractChannelHandlerContext.invokeFlush(AbstractChannelHandlerContext.java:735)
    at io.netty.channel.AbstractChannelHandlerContext.flush(AbstractChannelHandlerContext.java:716)
    at io.netty.channel.ChannelOutboundHandlerAdapter.flush(ChannelOutboundHandlerAdapter.java:115)
    at io.netty.channel.AbstractChannelHandlerContext.invokeFlush(AbstractChannelHandlerContext.java:735)
    at io.netty.channel.AbstractChannelHandlerContext.flush(AbstractChannelHandlerContext.java:716)
    at io.netty.channel.ChannelDuplexHandler.flush(ChannelDuplexHandler.java:117)
    at io.netty.channel.AbstractChannelHandlerContext.invokeFlush(AbstractChannelHandlerContext.java:735)
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:765)
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:753)
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:788)
    at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:955)
    at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:244)
    at org.littleshoot.proxy.impl.ProxyConnection.writeToChannel(ProxyConnection.java:258)
    at org.littleshoot.proxy.impl.ClientToProxyConnection$2.execute(ClientToProxyConnection.java:393)
    at org.littleshoot.proxy.impl.ConnectionFlow.doProcessCurrentStep(ConnectionFlow.java:140)
    at org.littleshoot.proxy.impl.ConnectionFlow.access$000(ConnectionFlow.java:14)
    at org.littleshoot.proxy.impl.ConnectionFlow$1.run(ConnectionFlow.java:124)
    at io.netty.util.concurrent.PromiseTask$RunnableAdapter.call(PromiseTask.java:38)
    at io.netty.util.concurrent.PromiseTask.run(PromiseTask.java:73)
    at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:357)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:357)
    at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:111)
    at java.lang.Thread.run(Thread.java:745)
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (DISCONNECTED) [id: 0x1566d686, /192.168.1.67:62537 :> tacoda.at.atwola.com/64.12.152.20:443]: Disconnected
[LittleProxy-ClientToProxyWorker-7] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0xd61e16e8, /fe80:0:0:0:d55a:4478:f372:6a44%17:62520 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Disconnected
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0xd61e16e8, /fe80:0:0:0:d55a:4478:f372:6a44%17:62520 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: All servers have finished attempting to connect, resuming reading from client.
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0xd61e16e8, /fe80:0:0:0:d55a:4478:f372:6a44%17:62520 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Resumed reading
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0xd61e16e8, /fe80:0:0:0:d55a:4478:f372:6a44%17:62520 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Connection to server failed: tacoda.at.atwola.com/64.12.152.20:443.  Last state before failure: HANDSHAKING
java.io.IOException: An existing connection was forcibly closed by the remote host
    at sun.nio.ch.SocketDispatcher.write0(Native Method)
    at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:51)
    at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:93)
    at sun.nio.ch.IOUtil.write(IOUtil.java:51)
    at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:470)
    at io.netty.channel.socket.nio.NioSocketChannel.doWrite(NioSocketChannel.java:286)
    at io.netty.channel.AbstractChannel$AbstractUnsafe.flush0(AbstractChannel.java:750)
    at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.flush0(AbstractNioChannel.java:303)
    at io.netty.channel.AbstractChannel$AbstractUnsafe.flush(AbstractChannel.java:719)
    at io.netty.channel.DefaultChannelPipeline$HeadContext.flush(DefaultChannelPipeline.java:1119)
    at io.netty.channel.AbstractChannelHandlerContext.invokeFlush(AbstractChannelHandlerContext.java:735)
    at io.netty.channel.AbstractChannelHandlerContext.flush(AbstractChannelHandlerContext.java:716)
    at io.netty.channel.ChannelOutboundHandlerAdapter.flush(ChannelOutboundHandlerAdapter.java:115)
    at io.netty.channel.AbstractChannelHandlerContext.invokeFlush(AbstractChannelHandlerContext.java:735)
    at io.netty.channel.AbstractChannelHandlerContext.flush(AbstractChannelHandlerContext.java:716)
    at io.netty.channel.ChannelOutboundHandlerAdapter.flush(ChannelOutboundHandlerAdapter.java:115)
    at io.netty.channel.AbstractChannelHandlerContext.invokeFlush(AbstractChannelHandlerContext.java:735)
    at io.netty.channel.AbstractChannelHandlerContext.flush(AbstractChannelHandlerContext.java:716)
    at io.netty.channel.ChannelOutboundHandlerAdapter.flush(ChannelOutboundHandlerAdapter.java:115)
    at io.netty.channel.AbstractChannelHandlerContext.invokeFlush(AbstractChannelHandlerContext.java:735)
    at io.netty.channel.AbstractChannelHandlerContext.flush(AbstractChannelHandlerContext.java:716)
    at io.netty.channel.ChannelDuplexHandler.flush(ChannelDuplexHandler.java:117)
    at io.netty.channel.AbstractChannelHandlerContext.invokeFlush(AbstractChannelHandlerContext.java:735)
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:765)
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:753)
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:788)
    at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:955)
    at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:244)
    at org.littleshoot.proxy.impl.ProxyConnection.writeToChannel(ProxyConnection.java:258)
    at org.littleshoot.proxy.impl.ClientToProxyConnection$2.execute(ClientToProxyConnection.java:393)
    at org.littleshoot.proxy.impl.ConnectionFlow.doProcessCurrentStep(ConnectionFlow.java:140)
    at org.littleshoot.proxy.impl.ConnectionFlow.access$000(ConnectionFlow.java:14)
    at org.littleshoot.proxy.impl.ConnectionFlow$1.run(ConnectionFlow.java:124)
    at io.netty.util.concurrent.PromiseTask$RunnableAdapter.call(PromiseTask.java:38)
    at io.netty.util.concurrent.PromiseTask.run(PromiseTask.java:73)
    at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:357)
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:357)
    at io.netty.util.concurrent.SingleThreadEventExecutor$2.run(SingleThreadEventExecutor.java:111)
    at java.lang.Thread.run(Thread.java:745)
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0xd61e16e8, /fe80:0:0:0:d55a:4478:f372:6a44%17:62520 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0xd61e16e8, /fe80:0:0:0:d55a:4478:f372:6a44%17:62520 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing: DefaultFullHttpResponse(decodeResult: success, version: HTTP/1.1, content: UnpooledHeapByteBuf(ridx: 0, widx: 37, cap: 37/37))
HTTP/1.1 502 Bad Gateway
Content-Length: 37
Content-Type: text/html; charset=UTF-8
Connection: close
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0xd61e16e8, /fe80:0:0:0:d55a:4478:f372:6a44%17:62520 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Writing an empty buffer to signal the end of our chunked transfer
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (DISCONNECTED) [id: 0xd61e16e8, /fe80:0:0:0:d55a:4478:f372:6a44%17:62520 :> /fe80:0:0:0:d55a:4478:f372:6a44%17:62208]: Wrote: DefaultFullHttpResponse(decodeResult: success, version: HTTP/1.1, content: UnpooledHeapByteBuf(ridx: 0, widx: 37, cap: 37/37))
HTTP/1.1 502 Bad Gateway
Content-Length: 37
Content-Type: text/html; charset=UTF-8
Connection: close
May 01, 2015 9:01:27 PM org.openqa.selenium.os.UnixProcess$SeleniumWatchDog destroyHarder
INFO: Command failed to close cleanly. Destroying forcefully (v2). org.openqa.selenium.os.UnixProcess$SeleniumWatchDog@158a3b2e
[main] INFO org.littleshoot.proxy.impl.DefaultHttpProxyServer - Shutting down proxy gracefully
[main] INFO org.littleshoot.proxy.impl.DefaultHttpProxyServer - Closing all channels...
[main] INFO org.littleshoot.proxy.impl.DefaultHttpProxyServer - Shutting down event loops
[main] INFO org.littleshoot.proxy.impl.DefaultHttpProxyServer - Done shutting down proxy
jekh commented 9 years ago

I believe this issue should now be resolved. It required an update to the BMP snapshot dependency on LittleProxy. Pull the latest code from master, then when you rebuild, use the maven -U option to re-download the snapshot:

mvn -U clean install -Prelease -DskipTests=true
romovs commented 9 years ago

:thumbsup:

jekh commented 9 years ago

I assume the thumbs up is good news? :) Working for you now?

ryanlevell commented 9 years ago

Both aol.com and weather.com worked for me after rebuilding. Thanks @jekh and @romovs.

romovs commented 9 years ago

Yep works well now. Thanks!

jekh commented 9 years ago

Awesome! I'll close this issue. Thanks for the help identifying and debugging it!

ryanlevell commented 9 years ago

@romovs, this seemed to appear again for me on aol.com. Is it still working for you?

I am using FirefoxDriver. As soon as I kill the script the page instantly finishes.

romovs commented 9 years ago

Still works here.

What's the exact behaviour you see? Page keeps loading and WebDriver.get never returns or something else?

Can you test it with a standalone proxy just to make sure it's not a script/environment issue?

ryanlevell commented 9 years ago

Yes exact same behavior, page keeps loading and WebDriver.get never returns. My script is more bare than before:

private static final String URL = "http://aol.com";

public static void main(String[] args) throws InterruptedException {
    BrowserMobProxy server = new BrowserMobProxyServer();
    server.start();
    Proxy proxy = ClientUtil.createSeleniumProxy(server);
    System.out.println("PORT: " + server.getPort());

    DesiredCapabilities caps = new DesiredCapabilities();
    caps.setCapability(CapabilityType.PROXY, proxy);
    WebDriver driver = new FirefoxDriver(caps);

    driver.get(URL);

    driver.quit();
    server.stop();
}

As before it works normally with ChromeDriver.

romovs commented 9 years ago

Hmm, I can't reproduce it neither on Linux nor on Windows with Firefox 37 and Selenium 2.45.0 :(

ryanlevell commented 9 years ago

Dang - I tried on my Win7 VM and get a different issue - aol.com is missing CSS when the proxy is added to capabilities. Loads correctly when I comment out caps.setCapability(CapabilityType.PROXY, proxy);.

jekh commented 9 years ago

I can't repro the issue either. Can you post the BMP log? Also, can you sort the network tab in Firefox (F12) by Timeline and see what request finishes when you hit the Stop button while the page is loading? That will at least show which resource is failing.

ryanlevell commented 9 years ago

Here is the log:

[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0x6cc8cadf, /192.168.1.67:54154 => www.aol.com/64.12.21.3:80]: Reading: DefaultLastHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 237, cap: 237), decoderResult: success)
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: DefaultLastHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 237, cap: 237), decoderResult: success)
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing an empty buffer to signal the end of our chunked transfer
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: DefaultLastHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 237, cap: 237), decoderResult: success)
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: EmptyByteBufBE
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: EmptyByteBufBE
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Last chunk...using normal closing rules
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing -- response probably keep alive for:
DefaultHttpResponse(decodeResult: success)
HTTP/1.1 200 OK
Date: Tue, 05 May 2015 01:40:39 GMT
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Cache-Control: max-age=5
Connection: Keep-Alive
Via: AOL-CACHE
Pragma: no-cache
ModPagespeedDisableFilters: rewrite_javascript,inline_css
ModPagespeed: on
test-timestamp: 1430790039109
Content-Type: text/javascript;charset=UTF-8
Cteonnt-Length: 3617
Keep-Alive: timeout=5, max=100
Content-Encoding: gzip
Content-Length: 1249
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Last chunk... using normal closing rules
[LittleProxy-ProxyToServerWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing client to proxy connection for request: DefaultHttpRequest(decodeResult: success)
GET /ajax.jsp?m=dynamiclead&p=dynamicleadslide&vbclass=vid_over&ajax=1&sitHot=null&offset=0&slot=dynamiclead&vcslot=dynamiclead-video-config&dlItem=1256359950&dlug=true&cv=6&_c=main5 HTTP/1.1
Host: www.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: text/html, */*; q=0.01
Accept-Language: en-US,en;q=0.5
Aolcom-Ajax: 1
X-Requested-With: XMLHttpRequest
Referer: http://www.aol.com/
Cookie: tst=%2C65%2Cs391a%3A%2C73%2Cs392a%3A%2C70%2Cs393a%3A%2C71%2Cs394a%3A%2C69%2Cs395a%3A%2C73%2Cs396a%3A%2C94%2Cs397a%3A%2C70%2Cs398a%3A%2C81%2Cs399a%3A%2C94%2Cs400a%3A%2C95%2Cs401a%3A%2C81%2Cs402a%3A%2C79%2Cs403a%3A%2C64%2Cs404a%3A%2C6%2Cr903a%3A%2C4%2Cr904a%3A%2C1%2Cresptest%3A%2C4%2Cn700a%3A%2C4%2Cn701a%3A%2C6%2Cn702a%3A%2C90%2Cn703a%3A%2C4%2Cn704a%3A%2C3%2Cn705a%3A%2C3%2Cn706a%3A%2C0%2Cgravity-test%3A%2C0%2Cdlug-test; s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D4FB29DB5BABC2132-1D7654AA3B5DECF5%7C1493948425484%3B%20s_getnr%3D1430790025487-New%7C1493862025487%3B%20s_nrgvo%3DNew%7C1493862025488%3B; grtrls=hpc:1; tzoffset=V1|js_-5; rrpmo1=rr1~1~1430790025049~0; s_vi=[CS]v1|2AA40FC5051D1CAE-40001902E0001EE2[CE]; UNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.d926; CUNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.d926; dlact=dl2; dlugRotn=main5%2C1430792425024%2CdlStickyBustTs%2C1427811308000%2C1%2C-1345511831%2C1%2C970887518%2C1%2C1256359950%2C1%2C0%2C1%2C492813914%2C1%2C-1527274090%2C1%2C213600880%2C1%2C1057315279%2C1%2C-1890515029%2C1%2C1077481987%2C1%2C-428347542%2C1%2C32732946%2C1%2C122576048%2C1%2C-1814359560%2C1%2C1460671351%2C1%2C1283770428%2C1%2C1360988320%2C1%2C-1052924094%2C1%2C-593158051%2C1%2C-1960452671%2C1%2C-1568942349%2C1%2C-1331171048%2C1%2C27211541%2C1%2C401480385%2C1%2C-467979553%2C1%2C-637792685%2C1%2C1434016339%2C1%2C-1347685393%2C1%2C354932713%2C1%2C479996259%2C1%2C-1491775517%2C1%2C781847851%2C1%2C-1233204783%2C1%2C1006838764%2C1%2C603262539%2C1%2C1527485649%2C1%2C1215283520%2C1%2C416582443%2C1%2C147429576%2C1%2C1438732943; grvinsights=fa3dbeae232ede2aa8bfe0e16b9ed57a; grvAbpMtime=1430790027408
Accept-Encoding: gzip, deflate
Via: 1.1 KNY-Dell1419
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Reading: DefaultHttpRequest(decodeResult: success)
GET http://dlug-assets.grvcdn.com/1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg HTTP/1.1
Host: dlug-assets.grvcdn.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Referer: http://www.aol.com/
Connection: keep-alive
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Got request: DefaultHttpRequest(decodeResult: success)
GET http://dlug-assets.grvcdn.com/1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg HTTP/1.1
Host: dlug-assets.grvcdn.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Referer: http://www.aol.com/
Connection: keep-alive
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Ensuring that hostAndPort are available in http://dlug-assets.grvcdn.com/1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Finding ProxyToServerConnection for: dlug-assets.grvcdn.com
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Reusing existing server connection: org.littleshoot.proxy.impl.ProxyToServerConnection@1135ebe3
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Modifying request headers for proxying
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Modifying request for proxy chaining
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Stripped host from uri: http://dlug-assets.grvcdn.com/1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg    yielding: /1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Removed sdch and inserted: gzip, deflate
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing request to ProxyToServerConnection
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Requested write of DefaultHttpRequest(decodeResult: success)
GET /1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg HTTP/1.1
Host: dlug-assets.grvcdn.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Accept-Encoding: gzip, deflate
Via: 1.1 KNY-Dell1419
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Using existing connection to: dlug-assets.grvcdn.com/23.3.98.26:80
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Writing: DefaultHttpRequest(decodeResult: success)
GET /1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg HTTP/1.1
Host: dlug-assets.grvcdn.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Accept-Encoding: gzip, deflate
Via: 1.1 KNY-Dell1419
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Wrote: DefaultHttpRequest(decodeResult: success)
GET /1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg HTTP/1.1
Host: dlug-assets.grvcdn.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Accept-Encoding: gzip, deflate
Via: 1.1 KNY-Dell1419
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Reading: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Requested write of EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Retaining reference counted message
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Using existing connection to: dlug-assets.grvcdn.com/23.3.98.26:80
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Writing: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Writing an empty buffer to signal the end of our chunked transfer
[LittleProxy-ClientToProxyWorker-2] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Wrote: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Reading: DefaultHttpRequest(decodeResult: success)
GET http://b.aol.com/ping?ts=1430790041874&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=15720&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=dl&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=790025429&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&plid=1256359950&dtid=exclusiveStacked&mnid=dl3&src=1&mpid=1&mlid=dl_v2&pgvis=1 HTTP/1.1
Host: b.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D4FB29DB5BABC2132-1D7654AA3B5DECF5%7C1493948425484%3B%20s_getnr%3D1430790025487-New%7C1493862025487%3B%20s_nrgvo%3DNew%7C1493862025488%3B; s_vi=[CS]v1|2AA40FC5051D1CAE-40001902E0001EE2[CE]; MUNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.b840; UNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.d926; CUNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.d926; dlV=1:1:1430790026:0:1430790026; dlS=1430790026; grvinsights=fa3dbeae232ede2aa8bfe0e16b9ed57a
Connection: keep-alive
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Got request: DefaultHttpRequest(decodeResult: success)
GET http://b.aol.com/ping?ts=1430790041874&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=15720&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=dl&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=790025429&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&plid=1256359950&dtid=exclusiveStacked&mnid=dl3&src=1&mpid=1&mlid=dl_v2&pgvis=1 HTTP/1.1
Host: b.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D4FB29DB5BABC2132-1D7654AA3B5DECF5%7C1493948425484%3B%20s_getnr%3D1430790025487-New%7C1493862025487%3B%20s_nrgvo%3DNew%7C1493862025488%3B; s_vi=[CS]v1|2AA40FC5051D1CAE-40001902E0001EE2[CE]; MUNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.b840; UNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.d926; CUNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.d926; dlV=1:1:1430790026:0:1430790026; dlS=1430790026; grvinsights=fa3dbeae232ede2aa8bfe0e16b9ed57a
Connection: keep-alive
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Ensuring that hostAndPort are available in http://b.aol.com/ping?ts=1430790041874&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=15720&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=dl&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=790025429&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&plid=1256359950&dtid=exclusiveStacked&mnid=dl3&src=1&mpid=1&mlid=dl_v2&pgvis=1
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Finding ProxyToServerConnection for: b.aol.com
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Reusing existing server connection: org.littleshoot.proxy.impl.ProxyToServerConnection@42f689c3
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Modifying request headers for proxying
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Modifying request for proxy chaining
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Stripped host from uri: http://b.aol.com/ping?ts=1430790041874&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=15720&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=dl&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=790025429&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&plid=1256359950&dtid=exclusiveStacked&mnid=dl3&src=1&mpid=1&mlid=dl_v2&pgvis=1    yielding: /ping?ts=1430790041874&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=15720&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=dl&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=790025429&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&plid=1256359950&dtid=exclusiveStacked&mnid=dl3&src=1&mpid=1&mlid=dl_v2&pgvis=1
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Reading: DefaultHttpRequest(decodeResult: success)
GET http://rma-api.gravity.com/v1/api/intelligence/ive?clientTime=1430790041875&ug=fa3dbeae232ede2aa8bfe0e16b9ed57a&ih=e0932570f54b5b6741c5ee0b2d34f42d&sp=1967&in=autopage&oau=%5B%7B%22o%22%3A2%2C%22au%22%3A%22http%3A%2F%2Fwww.aol.com%2Farticle%2F2015%2F05%2F04%2Fhuge-waves-in-california-lure-surfers-cause-minor-flooding%2F21179673%2F%22%7D%5D&pageViewId%5BwidgetLoaderWindowUrl%5D=http%3A%2F%2Fwww.aol.com%2F&pageViewId%5BtimeMillis%5D=1430790026902&pageViewId%5Brand%5D=34192457903547435&callback=jQuery111007904772985523429_1430790025631&cv=6&_c=main5&_=1430790025635 HTTP/1.1
Host: rma-api.gravity.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: */*
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Referer: http://www.aol.com/
Cookie: vaguid=fa3dbeae232ede2aa8bfe0e16b9ed57a; lastUgOutgoingSyncTime=1430790026841
Connection: keep-alive
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Got request: DefaultHttpRequest(decodeResult: success)
GET http://rma-api.gravity.com/v1/api/intelligence/ive?clientTime=1430790041875&ug=fa3dbeae232ede2aa8bfe0e16b9ed57a&ih=e0932570f54b5b6741c5ee0b2d34f42d&sp=1967&in=autopage&oau=%5B%7B%22o%22%3A2%2C%22au%22%3A%22http%3A%2F%2Fwww.aol.com%2Farticle%2F2015%2F05%2F04%2Fhuge-waves-in-california-lure-surfers-cause-minor-flooding%2F21179673%2F%22%7D%5D&pageViewId%5BwidgetLoaderWindowUrl%5D=http%3A%2F%2Fwww.aol.com%2F&pageViewId%5BtimeMillis%5D=1430790026902&pageViewId%5Brand%5D=34192457903547435&callback=jQuery111007904772985523429_1430790025631&cv=6&_c=main5&_=1430790025635 HTTP/1.1
Host: rma-api.gravity.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: */*
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Referer: http://www.aol.com/
Cookie: vaguid=fa3dbeae232ede2aa8bfe0e16b9ed57a; lastUgOutgoingSyncTime=1430790026841
Connection: keep-alive
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Removed sdch and inserted: gzip, deflate
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Ensuring that hostAndPort are available in http://rma-api.gravity.com/v1/api/intelligence/ive?clientTime=1430790041875&ug=fa3dbeae232ede2aa8bfe0e16b9ed57a&ih=e0932570f54b5b6741c5ee0b2d34f42d&sp=1967&in=autopage&oau=%5B%7B%22o%22%3A2%2C%22au%22%3A%22http%3A%2F%2Fwww.aol.com%2Farticle%2F2015%2F05%2F04%2Fhuge-waves-in-california-lure-surfers-cause-minor-flooding%2F21179673%2F%22%7D%5D&pageViewId%5BwidgetLoaderWindowUrl%5D=http%3A%2F%2Fwww.aol.com%2F&pageViewId%5BtimeMillis%5D=1430790026902&pageViewId%5Brand%5D=34192457903547435&callback=jQuery111007904772985523429_1430790025631&cv=6&_c=main5&_=1430790025635
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Finding ProxyToServerConnection for: rma-api.gravity.com
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing request to ProxyToServerConnection
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Reusing existing server connection: org.littleshoot.proxy.impl.ProxyToServerConnection@7576f903
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xc6da15b8, /192.168.1.67:54297 => b.aol.com/149.174.97.86:80]: Requested write of DefaultHttpRequest(decodeResult: success)
GET /ping?ts=1430790041874&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=15720&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=dl&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=790025429&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&plid=1256359950&dtid=exclusiveStacked&mnid=dl3&src=1&mpid=1&mlid=dl_v2&pgvis=1 HTTP/1.1
Host: b.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D4FB29DB5BABC2132-1D7654AA3B5DECF5%7C1493948425484%3B%20s_getnr%3D1430790025487-New%7C1493862025487%3B%20s_nrgvo%3DNew%7C1493862025488%3B; s_vi=[CS]v1|2AA40FC5051D1CAE-40001902E0001EE2[CE]; MUNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.b840; UNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.d926; CUNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.d926; dlV=1:1:1430790026:0:1430790026; dlS=1430790026; grvinsights=fa3dbeae232ede2aa8bfe0e16b9ed57a
Accept-Encoding: gzip, deflate
Via: 1.1 KNY-Dell1419
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xc6da15b8, /192.168.1.67:54297 => b.aol.com/149.174.97.86:80]: Using existing connection to: b.aol.com/149.174.97.86:80
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xc6da15b8, /192.168.1.67:54297 => b.aol.com/149.174.97.86:80]: Writing: DefaultHttpRequest(decodeResult: success)
GET /ping?ts=1430790041874&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=15720&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=dl&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=790025429&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&plid=1256359950&dtid=exclusiveStacked&mnid=dl3&src=1&mpid=1&mlid=dl_v2&pgvis=1 HTTP/1.1
Host: b.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D4FB29DB5BABC2132-1D7654AA3B5DECF5%7C1493948425484%3B%20s_getnr%3D1430790025487-New%7C1493862025487%3B%20s_nrgvo%3DNew%7C1493862025488%3B; s_vi=[CS]v1|2AA40FC5051D1CAE-40001902E0001EE2[CE]; MUNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.b840; UNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.d926; CUNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.d926; dlV=1:1:1430790026:0:1430790026; dlS=1430790026; grvinsights=fa3dbeae232ede2aa8bfe0e16b9ed57a
Accept-Encoding: gzip, deflate
Via: 1.1 KNY-Dell1419
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Modifying request headers for proxying
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Modifying request for proxy chaining
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Stripped host from uri: http://rma-api.gravity.com/v1/api/intelligence/ive?clientTime=1430790041875&ug=fa3dbeae232ede2aa8bfe0e16b9ed57a&ih=e0932570f54b5b6741c5ee0b2d34f42d&sp=1967&in=autopage&oau=%5B%7B%22o%22%3A2%2C%22au%22%3A%22http%3A%2F%2Fwww.aol.com%2Farticle%2F2015%2F05%2F04%2Fhuge-waves-in-california-lure-surfers-cause-minor-flooding%2F21179673%2F%22%7D%5D&pageViewId%5BwidgetLoaderWindowUrl%5D=http%3A%2F%2Fwww.aol.com%2F&pageViewId%5BtimeMillis%5D=1430790026902&pageViewId%5Brand%5D=34192457903547435&callback=jQuery111007904772985523429_1430790025631&cv=6&_c=main5&_=1430790025635    yielding: /v1/api/intelligence/ive?clientTime=1430790041875&ug=fa3dbeae232ede2aa8bfe0e16b9ed57a&ih=e0932570f54b5b6741c5ee0b2d34f42d&sp=1967&in=autopage&oau=%5B%7B%22o%22%3A2%2C%22au%22%3A%22http%3A%2F%2Fwww.aol.com%2Farticle%2F2015%2F05%2F04%2Fhuge-waves-in-california-lure-surfers-cause-minor-flooding%2F21179673%2F%22%7D%5D&pageViewId%5BwidgetLoaderWindowUrl%5D=http%3A%2F%2Fwww.aol.com%2F&pageViewId%5BtimeMillis%5D=1430790026902&pageViewId%5Brand%5D=34192457903547435&callback=jQuery111007904772985523429_1430790025631&cv=6&_c=main5&_=1430790025635
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Removed sdch and inserted: gzip, deflate
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing request to ProxyToServerConnection
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xced67462, /192.168.1.67:54235 => rma-api.gravity.com/23.212.53.220:80]: Requested write of DefaultHttpRequest(decodeResult: success)
GET /v1/api/intelligence/ive?clientTime=1430790041875&ug=fa3dbeae232ede2aa8bfe0e16b9ed57a&ih=e0932570f54b5b6741c5ee0b2d34f42d&sp=1967&in=autopage&oau=%5B%7B%22o%22%3A2%2C%22au%22%3A%22http%3A%2F%2Fwww.aol.com%2Farticle%2F2015%2F05%2F04%2Fhuge-waves-in-california-lure-surfers-cause-minor-flooding%2F21179673%2F%22%7D%5D&pageViewId%5BwidgetLoaderWindowUrl%5D=http%3A%2F%2Fwww.aol.com%2F&pageViewId%5BtimeMillis%5D=1430790026902&pageViewId%5Brand%5D=34192457903547435&callback=jQuery111007904772985523429_1430790025631&cv=6&_c=main5&_=1430790025635 HTTP/1.1
Host: rma-api.gravity.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: */*
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: vaguid=fa3dbeae232ede2aa8bfe0e16b9ed57a; lastUgOutgoingSyncTime=1430790026841
Accept-Encoding: gzip, deflate
Via: 1.1 KNY-Dell1419
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xced67462, /192.168.1.67:54235 => rma-api.gravity.com/23.212.53.220:80]: Using existing connection to: rma-api.gravity.com/23.212.53.220:80
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xced67462, /192.168.1.67:54235 => rma-api.gravity.com/23.212.53.220:80]: Writing: DefaultHttpRequest(decodeResult: success)
GET /v1/api/intelligence/ive?clientTime=1430790041875&ug=fa3dbeae232ede2aa8bfe0e16b9ed57a&ih=e0932570f54b5b6741c5ee0b2d34f42d&sp=1967&in=autopage&oau=%5B%7B%22o%22%3A2%2C%22au%22%3A%22http%3A%2F%2Fwww.aol.com%2Farticle%2F2015%2F05%2F04%2Fhuge-waves-in-california-lure-surfers-cause-minor-flooding%2F21179673%2F%22%7D%5D&pageViewId%5BwidgetLoaderWindowUrl%5D=http%3A%2F%2Fwww.aol.com%2F&pageViewId%5BtimeMillis%5D=1430790026902&pageViewId%5Brand%5D=34192457903547435&callback=jQuery111007904772985523429_1430790025631&cv=6&_c=main5&_=1430790025635 HTTP/1.1
Host: rma-api.gravity.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: */*
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: vaguid=fa3dbeae232ede2aa8bfe0e16b9ed57a; lastUgOutgoingSyncTime=1430790026841
Accept-Encoding: gzip, deflate
Via: 1.1 KNY-Dell1419
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xced67462, /192.168.1.67:54235 => rma-api.gravity.com/23.212.53.220:80]: Wrote: DefaultHttpRequest(decodeResult: success)
GET /v1/api/intelligence/ive?clientTime=1430790041875&ug=fa3dbeae232ede2aa8bfe0e16b9ed57a&ih=e0932570f54b5b6741c5ee0b2d34f42d&sp=1967&in=autopage&oau=%5B%7B%22o%22%3A2%2C%22au%22%3A%22http%3A%2F%2Fwww.aol.com%2Farticle%2F2015%2F05%2F04%2Fhuge-waves-in-california-lure-surfers-cause-minor-flooding%2F21179673%2F%22%7D%5D&pageViewId%5BwidgetLoaderWindowUrl%5D=http%3A%2F%2Fwww.aol.com%2F&pageViewId%5BtimeMillis%5D=1430790026902&pageViewId%5Brand%5D=34192457903547435&callback=jQuery111007904772985523429_1430790025631&cv=6&_c=main5&_=1430790025635 HTTP/1.1
Host: rma-api.gravity.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: */*
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: vaguid=fa3dbeae232ede2aa8bfe0e16b9ed57a; lastUgOutgoingSyncTime=1430790026841
Accept-Encoding: gzip, deflate
Via: 1.1 KNY-Dell1419
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Reading: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xced67462, /192.168.1.67:54235 => rma-api.gravity.com/23.212.53.220:80]: Requested write of EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xced67462, /192.168.1.67:54235 => rma-api.gravity.com/23.212.53.220:80]: Retaining reference counted message
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xced67462, /192.168.1.67:54235 => rma-api.gravity.com/23.212.53.220:80]: Using existing connection to: rma-api.gravity.com/23.212.53.220:80
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xced67462, /192.168.1.67:54235 => rma-api.gravity.com/23.212.53.220:80]: Writing: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xced67462, /192.168.1.67:54235 => rma-api.gravity.com/23.212.53.220:80]: Writing an empty buffer to signal the end of our chunked transfer
[LittleProxy-ClientToProxyWorker-6] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xced67462, /192.168.1.67:54235 => rma-api.gravity.com/23.212.53.220:80]: Wrote: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xc6da15b8, /192.168.1.67:54297 => b.aol.com/149.174.97.86:80]: Wrote: DefaultHttpRequest(decodeResult: success)
GET /ping?ts=1430790041874&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=15720&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=dl&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=790025429&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&plid=1256359950&dtid=exclusiveStacked&mnid=dl3&src=1&mpid=1&mlid=dl_v2&pgvis=1 HTTP/1.1
Host: b.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D4FB29DB5BABC2132-1D7654AA3B5DECF5%7C1493948425484%3B%20s_getnr%3D1430790025487-New%7C1493862025487%3B%20s_nrgvo%3DNew%7C1493862025488%3B; s_vi=[CS]v1|2AA40FC5051D1CAE-40001902E0001EE2[CE]; MUNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.b840; UNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.d926; CUNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.d926; dlV=1:1:1430790026:0:1430790026; dlS=1430790026; grvinsights=fa3dbeae232ede2aa8bfe0e16b9ed57a
Accept-Encoding: gzip, deflate
Via: 1.1 KNY-Dell1419
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_CHUNK) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Reading: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xc6da15b8, /192.168.1.67:54297 => b.aol.com/149.174.97.86:80]: Requested write of EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xc6da15b8, /192.168.1.67:54297 => b.aol.com/149.174.97.86:80]: Retaining reference counted message
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xc6da15b8, /192.168.1.67:54297 => b.aol.com/149.174.97.86:80]: Using existing connection to: b.aol.com/149.174.97.86:80
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xc6da15b8, /192.168.1.67:54297 => b.aol.com/149.174.97.86:80]: Writing: EmptyLastHttpContent
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xc6da15b8, /192.168.1.67:54297 => b.aol.com/149.174.97.86:80]: Writing an empty buffer to signal the end of our chunked transfer
[LittleProxy-ClientToProxyWorker-4] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xc6da15b8, /192.168.1.67:54297 => b.aol.com/149.174.97.86:80]: Wrote: EmptyLastHttpContent
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Remembering the current request.
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Reading: DefaultHttpResponse(decodeResult: success)
HTTP/1.1 200 OK
x-amz-id-2: 9+nWhy7gOU40xgqf5k0nnScMtcpwl5PGfBfYCwqnuaU+2Bhl2ZWjLGT/9oY+mRgVTJW/d7XGFko=
x-amz-request-id: D01E79091153BA83
Last-Modified: Tue, 05 May 2015 00:20:45 GMT
ETag: "1c2d1d27b1526c246f84269ecc774c78"
Accept-Ranges: bytes
Content-Type: image/jpeg
Content-Length: 59406
Server: AmazonS3
Cache-Control: public, max-age=31533464
Date: Tue, 05 May 2015 01:40:41 GMT
Connection: keep-alive
Cache-Control: public, max-age=31536000
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Received raw response: DefaultHttpResponse(decodeResult: success)
HTTP/1.1 200 OK
x-amz-id-2: 9+nWhy7gOU40xgqf5k0nnScMtcpwl5PGfBfYCwqnuaU+2Bhl2ZWjLGT/9oY+mRgVTJW/d7XGFko=
x-amz-request-id: D01E79091153BA83
Last-Modified: Tue, 05 May 2015 00:20:45 GMT
ETag: "1c2d1d27b1526c246f84269ecc774c78"
Accept-Ranges: bytes
Content-Type: image/jpeg
Content-Length: 59406
Server: AmazonS3
Cache-Control: public, max-age=31533464
Date: Tue, 05 May 2015 01:40:41 GMT
Connection: keep-alive
Cache-Control: public, max-age=31536000
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Remembering the current response.
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: DefaultHttpResponse(decodeResult: success)
HTTP/1.1 200 OK
x-amz-id-2: 9+nWhy7gOU40xgqf5k0nnScMtcpwl5PGfBfYCwqnuaU+2Bhl2ZWjLGT/9oY+mRgVTJW/d7XGFko=
x-amz-request-id: D01E79091153BA83
Last-Modified: Tue, 05 May 2015 00:20:45 GMT
ETag: "1c2d1d27b1526c246f84269ecc774c78"
Accept-Ranges: bytes
Content-Type: image/jpeg
Content-Length: 59406
Server: AmazonS3
Cache-Control: public, max-age=31533464
Date: Tue, 05 May 2015 01:40:41 GMT
Cache-Control: public, max-age=31536000
Via: 1.1 KNY-Dell1419
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: DefaultHttpResponse(decodeResult: success)
HTTP/1.1 200 OK
x-amz-id-2: 9+nWhy7gOU40xgqf5k0nnScMtcpwl5PGfBfYCwqnuaU+2Bhl2ZWjLGT/9oY+mRgVTJW/d7XGFko=
x-amz-request-id: D01E79091153BA83
Last-Modified: Tue, 05 May 2015 00:20:45 GMT
ETag: "1c2d1d27b1526c246f84269ecc774c78"
Accept-Ranges: bytes
Content-Type: image/jpeg
Content-Length: 59406
Server: AmazonS3
Cache-Control: public, max-age=31533464
Date: Tue, 05 May 2015 01:40:41 GMT
Cache-Control: public, max-age=31536000
Via: 1.1 KNY-Dell1419
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk for /1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Reading: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 995, cap: 995), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 995, cap: 995), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 995, cap: 995), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk for /1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Reading: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 1460, cap: 1460), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 1460, cap: 1460), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 1460, cap: 1460), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk for /1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Reading: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 5840, cap: 5840), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 5840, cap: 5840), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 5840, cap: 5840), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk for /1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Reading: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 5840, cap: 5840), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 5840, cap: 5840), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 5840, cap: 5840), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk for /1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Reading: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 2920, cap: 2920), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 2920, cap: 2920), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 2920, cap: 2920), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk for /1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Reading: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 1460, cap: 1460), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 1460, cap: 1460), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 1460, cap: 1460), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk for /1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Reading: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 8192, cap: 8192), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 8192, cap: 8192), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 8192, cap: 8192), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk for /1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Reading: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 3488, cap: 3488), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 3488, cap: 3488), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 3488, cap: 3488), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk for /1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Reading: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 2920, cap: 2920), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 2920, cap: 2920), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 2920, cap: 2920), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk for /1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Reading: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 13140, cap: 13140), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 13140, cap: 13140), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: DefaultHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 13140, cap: 13140), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk for /1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0x95399e2a, /192.168.1.67:54292 => dlug-assets.grvcdn.com/23.3.98.26:80]: Reading: DefaultLastHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 13151, cap: 13151), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: DefaultLastHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 13151, cap: 13151), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing an empty buffer to signal the end of our chunked transfer
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: DefaultLastHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 13151, cap: 13151), decoderResult: success)
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: EmptyByteBufBE
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: EmptyByteBufBE
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Last chunk...using normal closing rules
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing -- response probably keep alive for:
DefaultHttpResponse(decodeResult: success)
HTTP/1.1 200 OK
x-amz-id-2: 9+nWhy7gOU40xgqf5k0nnScMtcpwl5PGfBfYCwqnuaU+2Bhl2ZWjLGT/9oY+mRgVTJW/d7XGFko=
x-amz-request-id: D01E79091153BA83
Last-Modified: Tue, 05 May 2015 00:20:45 GMT
ETag: "1c2d1d27b1526c246f84269ecc774c78"
Accept-Ranges: bytes
Content-Type: image/jpeg
Content-Length: 59406
Server: AmazonS3
Cache-Control: public, max-age=31533464
Cache-Control: public, max-age=31536000
Date: Tue, 05 May 2015 01:40:41 GMT
Connection: keep-alive
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Last chunk... using normal closing rules
[LittleProxy-ProxyToServerWorker-0] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0xbee7bf29, /fe80:0:0:0:d55a:4478:f372:6a44%17:54108 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing client to proxy connection for request: DefaultHttpRequest(decodeResult: success)
GET /1c/2d/1d/27/b1/52/6c/24/6f/84/26/9e/cc/77/4c/78-169776490455480cdc465084.90271163.jpg HTTP/1.1
Host: dlug-assets.grvcdn.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Accept-Encoding: gzip, deflate
Via: 1.1 KNY-Dell1419
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xc6da15b8, /192.168.1.67:54297 => b.aol.com/149.174.97.86:80]: Remembering the current request.
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xc6da15b8, /192.168.1.67:54297 => b.aol.com/149.174.97.86:80]: Reading: DefaultHttpResponse(decodeResult: success)
HTTP/1.1 200 OK
Date: Tue, 05 May 2015 01:40:41 GMT
Server: Apache
Cache-Control: max-age=0
Expires: Tue, 05 May 2015 01:40:41 GMT
Content-Length: 0
Content-Type: image/gif
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xc6da15b8, /192.168.1.67:54297 => b.aol.com/149.174.97.86:80]: Received raw response: DefaultHttpResponse(decodeResult: success)
HTTP/1.1 200 OK
Date: Tue, 05 May 2015 01:40:41 GMT
Server: Apache
Cache-Control: max-age=0
Expires: Tue, 05 May 2015 01:40:41 GMT
Content-Length: 0
Content-Type: image/gif
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xc6da15b8, /192.168.1.67:54297 => b.aol.com/149.174.97.86:80]: Remembering the current response.
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: DefaultHttpResponse(decodeResult: success)
HTTP/1.1 200 OK
Date: Tue, 05 May 2015 01:40:41 GMT
Server: Apache
Cache-Control: max-age=0
Expires: Tue, 05 May 2015 01:40:41 GMT
Content-Length: 0
Content-Type: image/gif
Via: 1.1 KNY-Dell1419
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: DefaultHttpResponse(decodeResult: success)
HTTP/1.1 200 OK
Date: Tue, 05 May 2015 01:40:41 GMT
Server: Apache
Cache-Control: max-age=0
Expires: Tue, 05 May 2015 01:40:41 GMT
Content-Length: 0
Content-Type: image/gif
Via: 1.1 KNY-Dell1419
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk for /ping?ts=1430790041874&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=15720&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=dl&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=790025429&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&plid=1256359950&dtid=exclusiveStacked&mnid=dl3&src=1&mpid=1&mlid=dl_v2&pgvis=1
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0xc6da15b8, /192.168.1.67:54297 => b.aol.com/149.174.97.86:80]: Reading: EmptyLastHttpContent
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: EmptyLastHttpContent
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing an empty buffer to signal the end of our chunked transfer
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: EmptyLastHttpContent
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: EmptyByteBufBE
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: EmptyByteBufBE
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Last chunk...using normal closing rules
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing -- response probably keep alive for:
DefaultHttpResponse(decodeResult: success)
HTTP/1.1 200 OK
Date: Tue, 05 May 2015 01:40:41 GMT
Server: Apache
Cache-Control: max-age=0
Expires: Tue, 05 May 2015 01:40:41 GMT
Content-Length: 0
Content-Type: image/gif
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Last chunk... using normal closing rules
[LittleProxy-ProxyToServerWorker-1] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x5abbe564, /fe80:0:0:0:d55a:4478:f372:6a44%17:54183 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing client to proxy connection for request: DefaultHttpRequest(decodeResult: success)
GET /ping?ts=1430790041874&h=www.aol.com&v=36&r=&l=0&k=1&m=1365x768&bd=991x455&tz=300&ms=15720&t=AOL%20-%20News%2C%20Sports%2C%20Weather%2C%20Entertainment%2C%20Local%20%26%20Lifestyle&nm=dl&cms_src=us-aol.com&clntid=aolhp&template=maing-grid7&cobrand=main5&uxi=0&sxi=M%7CN_3&fv=17.0&ads_grp=790025429&dL_ch=us.aolportal&dL_dpt=acm%20%3A%20main5%20AOL.com%205.0%20Main&dL_sDpt=acm%20%3A%20&amp-credit=1&plid=1256359950&dtid=exclusiveStacked&mnid=dl3&src=1&mpid=1&mlid=dl_v2&pgvis=1 HTTP/1.1
Host: b.aol.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: s_sess=%20s_cc%3Dtrue%3B%20s_sq%3D%3B; s_pers=%20s_fid%3D4FB29DB5BABC2132-1D7654AA3B5DECF5%7C1493948425484%3B%20s_getnr%3D1430790025487-New%7C1493862025487%3B%20s_nrgvo%3DNew%7C1493862025488%3B; s_vi=[CS]v1|2AA40FC5051D1CAE-40001902E0001EE2[CE]; MUNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.b840; UNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.d926; CUNAUTHID=1.f139858e0a054084a7273b2f9ca962a6.d926; dlV=1:1:1430790026:0:1430790026; dlS=1430790026; grvinsights=fa3dbeae232ede2aa8bfe0e16b9ed57a
Accept-Encoding: gzip, deflate
Via: 1.1 KNY-Dell1419
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xced67462, /192.168.1.67:54235 => rma-api.gravity.com/23.212.53.220:80]: Remembering the current request.
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xced67462, /192.168.1.67:54235 => rma-api.gravity.com/23.212.53.220:80]: Reading: DefaultHttpResponse(decodeResult: success)
HTTP/1.1 200 OK
Server: ""
Content-Type: text/javascript;charset=UTF-8
Content-Length: 45
X-Location: SJC
Date: Tue, 05 May 2015 01:40:41 GMT
Connection: keep-alive
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xced67462, /192.168.1.67:54235 => rma-api.gravity.com/23.212.53.220:80]: Received raw response: DefaultHttpResponse(decodeResult: success)
HTTP/1.1 200 OK
Server: ""
Content-Type: text/javascript;charset=UTF-8
Content-Length: 45
X-Location: SJC
Date: Tue, 05 May 2015 01:40:41 GMT
Connection: keep-alive
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_INITIAL) [id: 0xced67462, /192.168.1.67:54235 => rma-api.gravity.com/23.212.53.220:80]: Remembering the current response.
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: DefaultHttpResponse(decodeResult: success)
HTTP/1.1 200 OK
Server: ""
Content-Type: text/javascript;charset=UTF-8
Content-Length: 45
X-Location: SJC
Date: Tue, 05 May 2015 01:40:41 GMT
Via: 1.1 KNY-Dell1419
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: DefaultHttpResponse(decodeResult: success)
HTTP/1.1 200 OK
Server: ""
Content-Type: text/javascript;charset=UTF-8
Content-Length: 45
X-Location: SJC
Date: Tue, 05 May 2015 01:40:41 GMT
Via: 1.1 KNY-Dell1419
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing on middle chunk for /v1/api/intelligence/ive?clientTime=1430790041875&ug=fa3dbeae232ede2aa8bfe0e16b9ed57a&ih=e0932570f54b5b6741c5ee0b2d34f42d&sp=1967&in=autopage&oau=%5B%7B%22o%22%3A2%2C%22au%22%3A%22http%3A%2F%2Fwww.aol.com%2Farticle%2F2015%2F05%2F04%2Fhuge-waves-in-california-lure-surfers-cause-minor-flooding%2F21179673%2F%22%7D%5D&pageViewId%5BwidgetLoaderWindowUrl%5D=http%3A%2F%2Fwww.aol.com%2F&pageViewId%5BtimeMillis%5D=1430790026902&pageViewId%5Brand%5D=34192457903547435&callback=jQuery111007904772985523429_1430790025631&cv=6&_c=main5&_=1430790025635
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ProxyToServerConnection - (AWAITING_CHUNK) [id: 0xced67462, /192.168.1.67:54235 => rma-api.gravity.com/23.212.53.220:80]: Reading: DefaultLastHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 45, cap: 45), decoderResult: success)
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: DefaultLastHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 45, cap: 45), decoderResult: success)
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing an empty buffer to signal the end of our chunked transfer
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: DefaultLastHttpContent(data: UnpooledUnsafeDirectByteBuf(ridx: 0, widx: 45, cap: 45), decoderResult: success)
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Retaining reference counted message
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Writing: EmptyByteBufBE
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Wrote: EmptyByteBufBE
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Last chunk...using normal closing rules
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing -- response probably keep alive for:
DefaultHttpResponse(decodeResult: success)
HTTP/1.1 200 OK
Server: ""
Content-Type: text/javascript;charset=UTF-8
Content-Length: 45
X-Location: SJC
Date: Tue, 05 May 2015 01:40:41 GMT
Connection: keep-alive
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Last chunk... using normal closing rules
[LittleProxy-ProxyToServerWorker-3] DEBUG org.littleshoot.proxy.impl.ClientToProxyConnection - (AWAITING_INITIAL) [id: 0x189c123e, /fe80:0:0:0:d55a:4478:f372:6a44%17:54185 => /fe80:0:0:0:d55a:4478:f372:6a44%17:54085]: Not closing client to proxy connection for request: DefaultHttpRequest(decodeResult: success)
GET /v1/api/intelligence/ive?clientTime=1430790041875&ug=fa3dbeae232ede2aa8bfe0e16b9ed57a&ih=e0932570f54b5b6741c5ee0b2d34f42d&sp=1967&in=autopage&oau=%5B%7B%22o%22%3A2%2C%22au%22%3A%22http%3A%2F%2Fwww.aol.com%2Farticle%2F2015%2F05%2F04%2Fhuge-waves-in-california-lure-surfers-cause-minor-flooding%2F21179673%2F%22%7D%5D&pageViewId%5BwidgetLoaderWindowUrl%5D=http%3A%2F%2Fwww.aol.com%2F&pageViewId%5BtimeMillis%5D=1430790026902&pageViewId%5Brand%5D=34192457903547435&callback=jQuery111007904772985523429_1430790025631&cv=6&_c=main5&_=1430790025635 HTTP/1.1
Host: rma-api.gravity.com
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:37.0) Gecko/20100101 Firefox/37.0
Accept: */*
Accept-Language: en-US,en;q=0.5
Referer: http://www.aol.com/
Cookie: vaguid=fa3dbeae232ede2aa8bfe0e16b9ed57a; lastUgOutgoingSyncTime=1430790026841
Accept-Encoding: gzip, deflate
Via: 1.1 KNY-Dell1419
ryanlevell commented 9 years ago

Here is the resource, it was the same resource both times:

aol_bm

The URL of the resource:

http://tps30.doubleverify.com/visit.js?ctx=2517524&cmp=11007201884887&ipos=&sid=11182200629126&plc=11007201901950&adid=&crt=&btreg=&btadsrv=&adsrv=155&advid=2119803&num=&pid=&crtname=&unit=&chnl=&uid=1430789396838385&scusrid=&tagtype=&sr=&dvtagver=6.1.src&srcurlD=0&curl=&qpgid=&ssl=0&refD=1&htmlmsging=1&aadid=907a90767cee34a1a9503991f4598e776cbe6e15&aUrlD=&jsver=59&eparams=DC4FC%3Dl9EEATbpTauTauHHH%5D2%40%3D%5D4%40%3ETauU2%26C%3Dl&brid=2&brver=37&bridua=2&tstype=2&jsCallback=dvCallback_1430789396839926

Here are the response headers:

Cache-Control: max-age=0
Content-Type: text/javascript; charset=utf-8
Date: Tue, 05 May 2015 01:34:09 GMT
Expires: 5/4/2015 1:34:10 AM
Pragma: no-cache
Server: Microsoft-IIS/8.0
Via: 1.1 KNY-Dell1419
X-Powered-By: ASP.NET

Headers without the proxy:

Cache-Control:max-age=0
Connection:close
Content-Type:text/javascript; charset=utf-8
Date:Tue, 05 May 2015 02:08:16 GMT
Expires:5/4/2015 2:08:16 AM
Pragma:no-cache
Server:Microsoft-IIS/8.0
X-Powered-By:ASP.NET
jekh commented 9 years ago

Thanks, that helps a lot. I'm able to reproduce the issue when running a raw LittleProxy (latest in master) instance, but not when running the LP build that BMP uses (which is just LP master + some recent bugfix PRs), nor with the BMP+LP combo. Is it possible one of your pom files or other dependencies is declaring a dependency on LittleProxy directly? Would you mind running mvn dependency:tree | grep littleproxy in your project's basedir? There should not be any dependency anywhere on org.littleshoot:littleproxy, and all the littleproxy dependencies should look like net.lightbody.bmp:littleproxy:jar:1.1.0-beta-bmp-1:[scope].

Even if that is the cause, I'm honestly not sure why it would have been fixed in the BMP version of LP. None of the LP PRs that I merged into BMP's LP build would fix this, as far as I know.

Looking at the unproxied headers vs. the proxied headers, I see that the Connection: close header is being removed in the proxied version. That's fine (it's really just informative), as long as LP closes the connection when it is actually done proxying the request. It's likely that when you experience this issue, LP is not closing the request. The mystery is why it is closing the request when I and @romovs attempt to reproduce it.

Let me know what you find from the dependency:tree. In the meantime, I'll debug the LP and Netty code and see what's happening when the server closes the connection.

Thanks for your help repro'ing and debugging this! Your efforts here are going a long way to make the new BMP ready for release.

ryanlevell commented 9 years ago

That is odd, thanks for all the info and help so far. Let me know if there's anything else I can provide. Here it is from Windows:

C:\Users\user\Desktop\browsermob-proxy>mvn dependency:tree | find "littleproxy"
[INFO] +- net.lightbody.bmp:littleproxy:jar:1.1.0-beta-bmp-1:provided
[INFO] --- maven-dependency-plugin:2.10:tree (default-cli) @ browsermob-core-littleproxy ---
[INFO] net.lightbody.bmp:browsermob-core-littleproxy:jar:2.1.0-beta-1-SNAPSHOT
[INFO] +- net.lightbody.bmp:littleproxy:jar:1.1.0-beta-bmp-1:compile
[INFO] +- net.lightbody.bmp:browsermob-core-littleproxy:jar:2.1.0-beta-1-SNAPSHOT:compile
[INFO] |  \- net.lightbody.bmp:littleproxy:jar:1.1.0-beta-bmp-1:compile
[INFO] +- net.lightbody.bmp:browsermob-core-littleproxy:jar:2.1.0-beta-1-SNAPSHOT:compile
[INFO] |  \- net.lightbody.bmp:littleproxy:jar:1.1.0-beta-bmp-1:compile
ryanlevell commented 9 years ago

Just an update - I deleted my maven repo's lightbody folder and rebuilt from the source. I tried a pull, but it was already up to date. The script now usually completes within a few seconds, but it still gets hanged maybe 2/5 attempts. It hangs on 2 URLs:

http://p.adsymptotic.com/d/px?_pid=11983&_psign=5a263b52e76651c3cb1fbb0e9e308c80&_redirect=http%3A%2F%2Fums.adtechus.com%2Fmapuser%3Fproviderid%3D1045%3Buserid%3D%24%7BUUID%7D

http://tps30.doubleverify.com/visit.js?ctx=948888&cmp=8625134&ipos=&sid=1581512&plc=116537927&adid=&crt=59633789&btreg=289680989&btadsrv=doubleclick&adsrv=1&advid=4333214&num=&pid=&crtname=&unit=&chnl=&uid=1430800044735231&scusrid=&tagtype=&sr=&dvtagver=6.1.src&srcurlD=1&curl=&qpgid=&ssl=0&refD=2&htmlmsging=1&aadid=907a90767cee34a1a9503991f4598e776cbe6e15&aUrlD=3&jsver=59&eparams=DC4FC%3Dl9EEATbpTauTauHHH%5D2%40%3D%5D4%40%3ETau25DTau%3D%40250Gf%5D9E%3E%3DU2%26C%3Dl23%40FETbp3%3D2%3F%3C&brid=2&brver=37&bridua=2&tstype=128&jsCallback=dvCallback_1430800044736178

I am trying to see if these calls are made when it completes quickly, but Chrome's built-in dev tools don't seem to have a find function or select-all for the network tab.

jekh commented 9 years ago

I have a working hypothesis about why this is happening. I haven't been able to construct a test case yet to verify the cause, but I think I have a temporary work-around that will hopefully fix the issue until I can push a long-term fix to LP. @ryanlevell, could you test out the fix for me? If you add this to your test project's pom, your project will pull in the LP snapshot I created with the temp fix.

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>net.lightbody.bmp</groupId>
                <artifactId>littleproxy</artifactId>
                <version>1.1.0-beta-bmp-2-SNAPSHOT</version>
            </dependency>
        </dependencies>
    </dependencyManagement>
    <repositories>
        <repository>
            <id>sonatype-nexus-snapshots</id>
            <name>Sonatype Nexus Snapshots</name>
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
            <releases>
                <enabled>false</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    </repositories>
selenium34 commented 9 years ago

@ryanlevell How to filter Network Data in Chrome Once you hit the filter button there, you can filter further by type or by name. Hope this helps.

ryanlevell commented 9 years ago

@jekh Yeah, I will try when I get off work.

@selenium34, my mistake I meant Firefox dev tools. Weird that they don't have a way to filter network traffic: https://bugzilla.mozilla.org/show_bug.cgi?id=892229.

ryanlevell commented 9 years ago

@jekh I cannot get it to hang today at all with the original code. I have not even added your workaround yet. I just ran against aol.com 30+ times and it never hanged. I haven't rebuilt the jar or anything since last seeing the issue.

jekh commented 9 years ago

I just tried visiting aol.com and I no longer see any requests to p.adsymptotic.com or tps30.doubleverify.com. Do you know any other site that was hanging when you loaded it?

ryanlevell commented 9 years ago

Nah, just weather.com, but that has worked since your initial fix. It is still working too.

ryanlevell commented 9 years ago

This morning I tried aol.com and weather.com again. Weather.com had the same doubleverify.com call as aol.com use to, and it did hang when this call was present! The only problem was that this call was pretty rare so it was hard to confirm your workaround. However, I think it did work. How I tested it:

jekh commented 9 years ago

Thank you for testing this out, @ryanlevell. It was extremely helpful. This confirms my suspicions that the hang is caused by the proxy "sometimes" failing to disconnect the client when a server connection disconnect is used to indicate the end of an HTTP message. This is actually a different issue than the Transfer-Encoding issue that was addressed earlier in this defect.

I should be able to come up with a LittleProxy test to verify this defect. If I can, I'll submit a PR to LP and merge it into our special bmp-littleproxy build.

Thanks again for your help, @ryanlevell and @romovs!

jekh commented 9 years ago

@ryanlevell - would you mind pulling the latest from master and re-running your tests? I've updated the BMP build of LittleProxy to include the fixes for this issue that I submitted to LP. I'm hopeful that this issue is now completely resolved.

ryanlevell commented 9 years ago

I haven't gotten it to hang yet in 100+ executions between aol.com and weather.com.

jekh commented 9 years ago

@ryanlevell - if you haven't seen this crop up again, I'd like to re-close the issue. Hopefully this time for good!

ryanlevell commented 9 years ago

Yep, sounds good. Thanks @jekh.

romovs commented 9 years ago

I've started to see this issue again with certain websites. Some of the resources at https://www.yes.co.il/self-service/main/login?Source=/self-service/main stay forever in a "pending" state. Each time it's a different group of resources though. Without proxy this page loads fine.

Seems to happen occasionally with other websites as well including weather.com but it's rather rare there.

romovs commented 9 years ago

Found another misbehaving website - https://www.bankhapoalim.co.il. With this one everything loads fine on the first load, but fails to fetch even the homepage once refreshed.

To reproduce:

  1. ./browsermob-proxy --use-littleproxy true -port 9090
  2. curl -X POST http://localhost:9090/proxy
  3. /usr/bin/google-chrome-stable --proxy-server="127.0.0.1:8081" --ignore-certificate-errors https://www.bankhapoalim.co.il/
  4. Website should have loaded correctly.
  5. Refresh the page - Ctrl+F5
  6. Homepage eventually timeouts in Chrome
jekh commented 9 years ago

Thank you! I will investigate and get this fixed before the beta-2 release.

jekh commented 9 years ago

Thanks to your excellent repro steps, @romovs, I was able to reproduce this error and update LittleProxy to fix it. I'm not seeing the issue locally anymore, so I went ahead and released beta-2, with the fix. Would you mind running your scenario against beta-2 to confirm it's fixed?

romovs commented 9 years ago

Yep I don't see the issue anymore either. Thanks!

jekh commented 9 years ago

Awesome! Thanks @romovs.

sanjayahuja commented 8 years ago

Hey, I am getting similar SSL errors when using browsermob proxy with Mobile. Any solutions?

Caused by: javax.net.ssl.SSLException: Received fatal alert: certificate_unknown at sun.security.ssl.Alerts.getSSLException(Alerts.java:208) ~[?:1.8.0_45] at sun.security.ssl.SSLEngineImpl.fatal(SSLEngineImpl.java:1666) ~[?:1.8.0_45] at sun.security.ssl.SSLEngineImpl.fatal(SSLEngineImpl.java:1634) ~[?:1.8.0_45] at sun.security.ssl.SSLEngineImpl.recvAlert(SSLEngineImpl.java:1800) ~[?:1.8.0_45]

jekh commented 8 years ago

@sanjayahuja - Your question appears to be unrelated to this issue. Please open a new issue.