<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/jive/rss" version="2.0">
  <channel>
    <title>Adobe Community: Message List - CF11 IIS JSON POST request hangs indefinitely but cfml runs</title>
    <link>https://forums.adobe.com/community/coldfusion/coldfusion_administration?view=discussions</link>
    <description>Most recent forum messages</description>
    <language>en</language>
    <pubDate>Sun, 14 Sep 2014 19:45:06 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2014-09-14T19:45:06Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Re: CF11 IIS JSON POST request hangs indefinitely but cfml runs</title>
      <link>https://forums.adobe.com/message/6729445?tstart=0#6729445</link>
      <description>&lt;!-- [DocumentBodyStart:49b1dddc-fbf1-4e30-8db6-e2798f8cc0ab] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;blockquote class="jive-quote"&gt;
&lt;p&gt;&lt;span style="color: #333333; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;I may not be on IIS, but I am willing to help. You said,&lt;/span&gt;&lt;em style="font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif; color: #333333;"&gt; "for some reason it looks like its looking up the index.cfm and index.html (which is odd)".&lt;/em&gt;&lt;span style="color: #333333; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt; This raises 2 questions, which may be related. Firstly, why do you find it odd? Secondly, what is the URL of the CFM page of the request?&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The URL i was calling would be index.cfm ( i think it shows this in the log "&lt;span style="color: #333333; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;uri=/index.cfm&lt;/span&gt;"). It is odd that it returns both the html for index.cfm and index.htm as it knows which file i have called and should not need to lookup both (it does not behave this way for the second request). In reference to this i did make sure that index.cfm was the only default document in IIS just in case it got confused somehow.&lt;/p&gt;&lt;blockquote class="jive-quote"&gt;
&lt;p&gt;BKBK wrote:&lt;/p&gt;
&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #333333; font-family: adobe-clean, 'Helvetica Neue', Arial, sans-serif;"&gt;You say it works in Coldfusion 9. Could you please tell us more about the comparable environment in which you use Coldfusion 9? Particularly, the web server and browser / testing tool.&lt;/span&gt;&lt;/p&gt;
&lt;/blockquote&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This has worked in all CF9 environments we have had, but the one i had to hand was win7 + IIS7.5. To test this i have been using the google chrome postman extension, Teleric fiddler and i also wrote a quick script to make 100% sure the tools were not borked. The script is here &lt;a class="jive-link-external-small" href="https://bugbase.adobe.com/index.cfm?event=bug&amp;amp;id=3822607" rel="nofollow"&gt;Bug#3822607 - HTTP Post of JSON does not return a response with IIS webserver&lt;/a&gt; (submitted by another member of the team).&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;blockquote class="jive-quote"&gt;
&lt;p&gt;BKBK wrote:&lt;/p&gt;
&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Two more points stand out from the log:&lt;/p&gt;
&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;1) The description of the bad request contains&lt;em&gt; "header Content-Type : application/json"&lt;/em&gt; and&lt;em&gt; "header User-Agent : Mozilla/5.0 (Windows NT 6.1; Win64; x64)"&lt;/em&gt;. The compatibility with Internet Explorer might be an issue.&lt;/p&gt;
&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;To test, I ran the following code, as the file testing123.cfm.&lt;/p&gt;
&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;lt;cfheader name="Content-Disposition" value="inline"&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;cfcontent type="application/json"&amp;gt;&lt;/p&gt;
&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;lt;cfquery name="myQuery" datasource="myDSN"&amp;gt;&lt;/p&gt;
&lt;p&gt;select id, qty&lt;/p&gt;
&lt;p&gt;from myTbl&lt;/p&gt;
&lt;p&gt;&amp;lt;/cfquery&amp;gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;cfoutput&amp;gt;#serializeJson(myQuery)#&amp;lt;/cfoutput&amp;gt;&lt;/p&gt;
&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It outputs a JSON. However, while Chrome and Firefox display the content of the page, which is the intention, Internet Explorer insists on offering the file for download as &lt;em&gt;testing123.json&lt;/em&gt;. This might be a hint. Is it possible for you to specify the header 'Content-Type : text/plain' or 'Content-Type : text/html' in the test browser / tool?&lt;/p&gt;
&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;2) The logs contain the text &lt;em&gt;"table.cfdump_wddx,table.cfdump_xml,table.cfdump_struct, etc.", &lt;/em&gt;which looks eerily like like the page output associated with a known bug. &lt;a class="jive-link-external-small" href="https://bugbase.adobe.com/index.cfm?event=bug&amp;amp;id=3040836" onclick="" rel="nofollow"&gt;The bug was in Coldfusion 9 and occurs when cfdump is used with a file-path as output and format set to html&lt;/a&gt;. Given that you use version 9, does this ring any bells? I should hurry to add that that bug was later fixed. (I have tested Coldfusion 11's cfdump quite a bit to confirm).&lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;1) I have only tried in chrome TBH as i am pretty certain the issue lies within or beyond IIS as the request never really makes it back to the browser and when using the CF script the browser should never be involved, BUT it is a straw to clutch so i will definitely try every browser i can find tomorrow to make sure.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;2) This is not something i have ever encountered before, but certainly worth looking into. I had presumed that was all just part of the cf debug output cruft you get normally but i should probably try and render the output and see what i get - might give a clue.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;ALSO&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Some more information about the bug that makes it even odder:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;If you post application/json content type without anything in the body of the request it works fine&lt;/li&gt;&lt;li&gt;If you post anything - even just {} or a single key pair it breaks&lt;/li&gt;&lt;li&gt;If you post to a html / asp / php with the same body that breaks the CF it works fine&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:49b1dddc-fbf1-4e30-8db6-e2798f8cc0ab] --&gt;&lt;img src='/beacon?t=1415918912616' /&gt;</description>
      <pubDate>Sun, 14 Sep 2014 19:45:06 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6729445?tstart=0#6729445</guid>
      <dc:date>2014-09-14T19:45:06Z</dc:date>
      <clearspace:dateToText>1 month 1 month ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: CF11 IIS JSON POST request hangs indefinitely but cfml runs</title>
      <link>https://forums.adobe.com/message/6729263?tstart=0#6729263</link>
      <description>&lt;!-- [DocumentBodyStart:a2ff8fbb-4f15-4a0c-bbb1-b324e4bfeeb5] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Two more points stand out from the log:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;1) The description of the bad request contains&lt;em&gt; "header Content-Type : application/json"&lt;/em&gt; and&lt;em&gt; "header User-Agent : Mozilla/5.0 (Windows NT 6.1; Win64; x64)"&lt;/em&gt;. The compatibility with Internet Explorer might be an issue.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;To test, I ran the following code, as the file testing123.cfm.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;cfheader name="Content-Disposition" value="inline"&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfcontent type="application/json"&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;lt;cfquery name="myQuery" datasource="myDSN"&amp;gt;&lt;/p&gt;&lt;p&gt;select id, qty&lt;/p&gt;&lt;p&gt;from myTbl&lt;/p&gt;&lt;p&gt;&amp;lt;/cfquery&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;cfoutput&amp;gt;#serializeJson(myQuery)#&amp;lt;/cfoutput&amp;gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;It outputs a JSON. However, while Chrome and Firefox display the content of the page, which is the intention, Internet Explorer insists on offering the file for download as &lt;em&gt;testing123.json&lt;/em&gt;. This might be a hint. Is it possible for you to specify the header 'Content-Type : text/plain' or 'Content-Type : text/html' in the test browser / tool?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;2) The logs contain the text &lt;em&gt;"table.cfdump_wddx,table.cfdump_xml,table.cfdump_struct, etc.", &lt;/em&gt;which looks eerily like like the page output associated with a known bug. &lt;a class="jive-link-external-small" href="https://bugbase.adobe.com/index.cfm?event=bug&amp;amp;id=3040836" rel="nofollow"&gt;The bug was in Coldfusion 9 and occurs when cfdump is used with a file-path as output and format set to html&lt;/a&gt;. Given that you use version 9, does this ring any bells? I should hurry to add that that bug was later fixed. (I have tested Coldfusion 11's cfdump quite a bit to confirm).&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a2ff8fbb-4f15-4a0c-bbb1-b324e4bfeeb5] --&gt;</description>
      <pubDate>Sun, 14 Sep 2014 16:42:49 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6729263?tstart=0#6729263</guid>
      <dc:date>2014-09-14T16:42:49Z</dc:date>
      <clearspace:dateToText>1 month 1 month ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: CF11 IIS JSON POST request hangs indefinitely but cfml runs</title>
      <link>https://forums.adobe.com/message/6728861?tstart=0#6728861</link>
      <description>&lt;!-- [DocumentBodyStart:92a90f7b-defa-4213-a7cc-253c8d59c3f1] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;You say it works in Coldfusion 9. Could you please tell us more about the comparable environment in which you use Coldfusion 9? Particularly, the web server and browser / testing tool.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:92a90f7b-defa-4213-a7cc-253c8d59c3f1] --&gt;</description>
      <pubDate>Sun, 14 Sep 2014 12:44:10 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6728861?tstart=0#6728861</guid>
      <dc:date>2014-09-14T12:44:10Z</dc:date>
      <clearspace:dateToText>1 month 1 month ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: CF11 IIS JSON POST request hangs indefinitely but cfml runs</title>
      <link>https://forums.adobe.com/message/6728852?tstart=0#6728852</link>
      <description>&lt;!-- [DocumentBodyStart:112af2ab-24b4-4b07-9f85-b29a848e6da9] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I may not be on IIS, but I am willing to help. You said,&lt;em&gt; "for some reason it looks like its looking up the index.cfm and index.html (which is odd)".&lt;/em&gt; This raises 2 questions, which may be related. Firstly, why do you find it odd? Secondly, what is the URL of the CFM page of the request?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:112af2ab-24b4-4b07-9f85-b29a848e6da9] --&gt;</description>
      <pubDate>Sun, 14 Sep 2014 10:35:55 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6728852?tstart=0#6728852</guid>
      <dc:date>2014-09-14T10:35:55Z</dc:date>
      <clearspace:dateToText>1 month 1 month ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: CF11 IIS JSON POST request hangs indefinitely but cfml runs</title>
      <link>https://forums.adobe.com/message/6724848?tstart=0#6724848</link>
      <description>&lt;!-- [DocumentBodyStart:b5c1e326-5afa-42b0-9310-80dc2b5aca01] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;If you had any ideas on how to debug that interaction it would be very helpful as i dont really know how to dig into IIS any further &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:b5c1e326-5afa-42b0-9310-80dc2b5aca01] --&gt;</description>
      <pubDate>Fri, 12 Sep 2014 15:55:24 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6724848?tstart=0#6724848</guid>
      <dc:date>2014-09-12T15:55:24Z</dc:date>
      <clearspace:dateToText>2 months 1 day ago</clearspace:dateToText>
      <clearspace:replyCount>4</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: CF11 IIS JSON POST request hangs indefinitely but cfml runs</title>
      <link>https://forums.adobe.com/message/6724497?tstart=0#6724497</link>
      <description>&lt;!-- [DocumentBodyStart:3ad72f31-bfcf-4d9c-a1f8-58e81c0d08ee] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;blockquote class="jive-quote"&gt;
&lt;p&gt;Chris_Hopkins wrote:&lt;/p&gt;
&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;TBH its all slightly over my head as to what bit of the server software does what but surely that's IIS's job and if its got to Coldfusion then that couldn't be the issue as its already decided that its a .cfm and sent the request to coldfusion and coldfusion has sent some data back?&lt;/p&gt;

&lt;/blockquote&gt;&lt;p&gt;That is what I think too: the web server sends the CFM to Coldfusion, which runs it and sends the result back to the web server, all as expected. The web server then has to decide whether to send the result to the browser or delegate some other application to process it.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I suspect this is where something goes wrong. I wonder whether the result which Coldfusion sends the web server confuses it.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:3ad72f31-bfcf-4d9c-a1f8-58e81c0d08ee] --&gt;</description>
      <pubDate>Fri, 12 Sep 2014 14:46:58 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6724497?tstart=0#6724497</guid>
      <dc:date>2014-09-12T14:46:58Z</dc:date>
      <clearspace:dateToText>2 months 1 day ago</clearspace:dateToText>
      <clearspace:replyCount>5</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: CF11 IIS JSON POST request hangs indefinitely but cfml runs</title>
      <link>https://forums.adobe.com/message/6724378?tstart=0#6724378</link>
      <description>&lt;!-- [DocumentBodyStart:055670d2-93ba-46f7-b6c4-de40be56ffa3] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;TBH its all slightly over my head as to what bit of the server software does what but surely that's IIS's job and if its got to Coldfusion then that couldn't be the issue as its already decided that its a .cfm and sent the request to coldfusion and coldfusion has sent some data back?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The real world issue that prompted this was a callback from a payment provider and I am sure they are not going to change their API just for me, plus this is a really simple thing that shouldn't be an issue - rock on CF9 for just bloody working.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:055670d2-93ba-46f7-b6c4-de40be56ffa3] --&gt;</description>
      <pubDate>Fri, 12 Sep 2014 14:09:23 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6724378?tstart=0#6724378</guid>
      <dc:date>2014-09-12T14:09:23Z</dc:date>
      <clearspace:dateToText>2 months 1 day ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: CF11 IIS JSON POST request hangs indefinitely but cfml runs</title>
      <link>https://forums.adobe.com/message/6724356?tstart=0#6724356</link>
      <description>&lt;!-- [DocumentBodyStart:5e643e00-e7da-43c4-b6f3-6a6ad3700732] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;blockquote class="jive-quote"&gt;
&lt;p&gt;chopki wrote:&lt;/p&gt;
&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Issue Description&lt;/strong&gt;&lt;/p&gt;
&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Simply put .. we make a request to any .cfm page with content-type of application/json and json in the request body &lt;/p&gt;
&lt;/blockquote&gt;&lt;p&gt;That might just be the problem. Coldfusion may be ignorant of the file-extension that corresponds to the content-type application/json. Why don't you use a content-type of text/html or text/plain, or else a content-disposition header that specifies the file-extension as .json?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:5e643e00-e7da-43c4-b6f3-6a6ad3700732] --&gt;</description>
      <pubDate>Fri, 12 Sep 2014 13:13:59 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6724356?tstart=0#6724356</guid>
      <dc:date>2014-09-12T13:13:59Z</dc:date>
      <clearspace:dateToText>2 months 2 days ago</clearspace:dateToText>
      <clearspace:replyCount>7</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>CF11 IIS JSON POST request hangs indefinitely but cfml runs</title>
      <link>https://forums.adobe.com/message/6720616?tstart=0#6720616</link>
      <description>&lt;!-- [DocumentBodyStart:4c832769-cc1c-4f90-a131-30bb85f83b47] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;&lt;strong&gt;Issue Description&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Simply put when we make a request to any .cfm page with content-type of application/json and json in the request body the cfml will run (tested with cflog) but the browser/testing tool will indefinitely hang. If you leave the request body empty though the request will work normally.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Setup&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Windows Server 2008R2 - IIS 7.5&lt;/p&gt;&lt;p&gt;Coldfusion 11 (still no patches!)&lt;/p&gt;&lt;p&gt;Postman/Fiddler for testing&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Debugging&lt;/strong&gt;&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;So I know that the request makes it to coldfusion by using cflog.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I then put the isapi_redirect connector into debug mode to see if anything useful appeared in the logs (will add below) and when the request gets through to coldfusion it looks like the html for the page is returned, but for some reason it looks like its looking up the index.cfm and index.html (which is odd) and there is also a difference the the last few lines of the two requests - i dont really know enough at this level to make heads or tails of it.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;On the IIS side of things if you look at the worker processes for the connection pool all POST application/json requests are just queued up and for ever getting longer - which cant be good. Also in the windows event viewer under WAS there are some errors about 'pools exceeding time limits' with codes 5013 and 5138 which seem a bit generic and may just be IIS finally deciding that said requests now need to be killed.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;We have replicated the issue on three clones of the same install and two other separate installs, tried updating the connector to 1.2.4 and had a go at the BonCode connector on riaforge to no joy.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;ISAPI_Redirect connector log&lt;/strong&gt;&lt;/p&gt;&lt;div class="text"&gt;&lt;div class="de1"&gt;&amp;lt;!--- BAD REQUEST BELOW ---&amp;gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.545 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2184): Filter started&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.545 2014] [2912:1016] [debug] map_uri_to_worker_ext::jk_uri_worker_map.c (1131): Attempting to map URI '/10.10.10.37/index.cfm' from 30 maps&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.545 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flashservices/gateway/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cfform-internal/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cffileservlet/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cfformgateway/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/CFFileServlet/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex-internal/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/CFFormGateway/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex2gateway/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfml/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfc/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.561 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfm/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/rest/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex2gateway=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.hbmxml=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfswf=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.mxml=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFML=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfml=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfml=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFC=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.swc=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFM=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfc=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfm=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.577 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfr=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfc=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.sws=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.jsp=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfm=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] find_match::jk_uri_worker_map.c (958): Found a wildchar match '/*.cfm=cfusion'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2266): check if [/index.cfm] points to the web-inf directory&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2283): [/index.cfm] is a servlet url - should redirect to cfusion&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2321): fowarding escaped URI [/index.cfm]&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2394): forwarding to : /jakarta/isapi_redirect.dll&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2396): forward URI&amp;nbsp;&amp;nbsp; : TOMCATURI000000006A6B0000:/index.cfm&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2399): forward query : TOMCATQUERY000000006A6B0000:screwyRequest&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2401): forward worker: TOMCATWORKER000000006A6B0000:cfusion&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.592 2014] [2912:1016] [debug] handle_notify_event::jk_isapi_plugin.c (2403): worker index&amp;nbsp; : TOMCATWORKERIDX000000006A6B0000:28&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.639 2014] [2912:1016] [debug] wc_maintain::jk_worker.c (338): Maintaining worker cfusion&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.639 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3516): Reading extension header HTTP_TOMCATWORKER000000006A6B0000: cfusion&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3517): Reading extension header HTTP_TOMCATWORKERIDX000000006A6B0000: 28&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3518): Reading extension header HTTP_TOMCATURI000000006A6B0000: /index.cfm&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3519): Reading extension header HTTP_TOMCATQUERY000000006A6B0000: screwyRequest&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3702): Applying service extensions&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Cache-Control : no-cache&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Connection : keep-alive&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Content-Length : 129&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Content-Type : application/json&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Accept : */*&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Accept-Encoding : gzip,deflate&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Accept-Language : en-GB,en-US;q=0.8,en;q=0.6&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Cookie : JSESSIONID=F723FD3DEB37888D2015BE10B01868C7.cfusion&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.655 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Host : 10.10.10.37&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header User-Agent : Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.103 Safari/537.36&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Origin : chrome-extension://fdmmgilgnpjigdojojpjoooidkmcomcm&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header DNT : 1&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3973): Service protocol=HTTP/1.1 method=POST host=10.10.10.11 addr=10.10.10.11 name=10.10.10.37 port=80 auth= user= uri=/index.cfm&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] init_ws_service::jk_isapi_plugin.c (3985): Service request headers=12 attributes=0 chunked=no content-length=129 available=129&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] wc_get_worker_for_name::jk_worker.c (115): found a worker cfusion&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] HttpExtensionProc::jk_isapi_plugin.c (2582): got a worker for name cfusion&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] ajp_get_endpoint::jk_ajp_common.c (3287): acquired connection pool slot=2 after 0 retries&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] ajp_marshal_into_msgb::jk_ajp_common.c (668): ajp marshaling done&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] ajp_service::jk_ajp_common.c (2569): processing cfusion with 2 retries&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] ajp_send_request::jk_ajp_common.c (1673): (cfusion) all endpoints are disconnected.&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] jk_open_socket::jk_connect.c (485): socket TCP_NODELAY set to On&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.670 2014] [2912:1016] [debug] jk_open_socket::jk_connect.c (609): trying to connect socket 748 to 127.0.0.1:8014&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] jk_open_socket::jk_connect.c (635): socket 748 [127.0.0.1:49430 -&amp;gt; 127.0.0.1:8014] connected&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): sending to ajp13 pos=4 len=619 max=65536&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0000&amp;nbsp;&amp;nbsp;&amp;nbsp; 12 34 02 67 02 04 00 08 48 54 54 50 2F 31 2E 31&amp;nbsp; - .4.g....HTTP/1.1&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0010&amp;nbsp;&amp;nbsp;&amp;nbsp; 00 00 0A 2F 69 6E 64 65 78 2E 63 66 6D 00 00 0B&amp;nbsp; - .../index.cfm...&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0020&amp;nbsp;&amp;nbsp;&amp;nbsp; 31 30 2E 31 30 2E 31 30 2E 31 31 00 00 0B 31 30&amp;nbsp; - 10.10.10.11...10&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0030&amp;nbsp;&amp;nbsp;&amp;nbsp; 2E 31 30 2E 31 30 2E 31 31 00 00 0B 31 30 2E 31&amp;nbsp; - .10.10.11...10.1&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0040&amp;nbsp;&amp;nbsp;&amp;nbsp; 30 2E 31 30 2E 33 37 00 00 50 00 00 0C 00 0D 43&amp;nbsp; - 0.10.37..P.....C&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0050&amp;nbsp;&amp;nbsp;&amp;nbsp; 61 63 68 65 2D 43 6F 6E 74 72 6F 6C 00 00 08 6E&amp;nbsp; - ache-Control...n&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0060&amp;nbsp;&amp;nbsp;&amp;nbsp; 6F 2D 63 61 63 68 65 00 A0 06 00 0A 6B 65 65 70&amp;nbsp; - o-cache.....keep&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0070&amp;nbsp;&amp;nbsp;&amp;nbsp; 2D 61 6C 69 76 65 00 A0 08 00 03 31 32 39 00 A0&amp;nbsp; - -alive.....129..&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0080&amp;nbsp;&amp;nbsp;&amp;nbsp; 07 00 10 61 70 70 6C 69 63 61 74 69 6F 6E 2F 6A&amp;nbsp; - ...application/j&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0090&amp;nbsp;&amp;nbsp;&amp;nbsp; 73 6F 6E 00 A0 01 00 03 2A 2F 2A 00 00 0F 41 63&amp;nbsp; - son.....*/*...Ac&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.686 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00a0&amp;nbsp;&amp;nbsp;&amp;nbsp; 63 65 70 74 2D 45 6E 63 6F 64 69 6E 67 00 00 0C&amp;nbsp; - cept-Encoding...&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00b0&amp;nbsp;&amp;nbsp;&amp;nbsp; 67 7A 69 70 2C 64 65 66 6C 61 74 65 00 00 0F 41&amp;nbsp; - gzip,deflate...A&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00c0&amp;nbsp;&amp;nbsp;&amp;nbsp; 63 63 65 70 74 2D 4C 61 6E 67 75 61 67 65 00 00&amp;nbsp; - ccept-Language..&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00d0&amp;nbsp;&amp;nbsp;&amp;nbsp; 1A 65 6E 2D 47 42 2C 65 6E 2D 55 53 3B 71 3D 30&amp;nbsp; - .en-GB,en-US;q=0&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00e0&amp;nbsp;&amp;nbsp;&amp;nbsp; 2E 38 2C 65 6E 3B 71 3D 30 2E 36 00 A0 09 00 33&amp;nbsp; - .8,en;q=0.6....3&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00f0&amp;nbsp;&amp;nbsp;&amp;nbsp; 4A 53 45 53 53 49 4F 4E 49 44 3D 46 37 32 33 46&amp;nbsp; - JSESSIONID=F723F&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0100&amp;nbsp;&amp;nbsp;&amp;nbsp; 44 33 44 45 42 33 37 38 38 38 44 32 30 31 35 42&amp;nbsp; - D3DEB37888D2015B&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0110&amp;nbsp;&amp;nbsp;&amp;nbsp; 45 31 30 42 30 31 38 36 38 43 37 2E 63 66 75 73&amp;nbsp; - E10B01868C7.cfus&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0120&amp;nbsp;&amp;nbsp;&amp;nbsp; 69 6F 6E 00 A0 0B 00 0B 31 30 2E 31 30 2E 31 30&amp;nbsp; - ion.....10.10.10&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0130&amp;nbsp;&amp;nbsp;&amp;nbsp; 2E 33 37 00 A0 0E 00 72 4D 6F 7A 69 6C 6C 61 2F&amp;nbsp; - .37....rMozilla/&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0140&amp;nbsp;&amp;nbsp;&amp;nbsp; 35 2E 30 20 28 57 69 6E 64 6F 77 73 20 4E 54 20&amp;nbsp; - 5.0.(Windows.NT.&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0150&amp;nbsp;&amp;nbsp;&amp;nbsp; 36 2E 31 3B 20 57 69 6E 36 34 3B 20 78 36 34 29&amp;nbsp; - 6.1;.Win64;.x64)&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0160&amp;nbsp;&amp;nbsp;&amp;nbsp; 20 41 70 70 6C 65 57 65 62 4B 69 74 2F 35 33 37&amp;nbsp; - .AppleWebKit/537&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0170&amp;nbsp;&amp;nbsp;&amp;nbsp; 2E 33 36 20 28 4B 48 54 4D 4C 2C 20 6C 69 6B 65&amp;nbsp; - .36.(KHTML,.like&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.702 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0180&amp;nbsp;&amp;nbsp;&amp;nbsp; 20 47 65 63 6B 6F 29 20 43 68 72 6F 6D 65 2F 33&amp;nbsp; - .Gecko).Chrome/3&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0190&amp;nbsp;&amp;nbsp;&amp;nbsp; 37 2E 30 2E 32 30 36 32 2E 31 30 33 20 53 61 66&amp;nbsp; - 7.0.2062.103.Saf&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01a0&amp;nbsp;&amp;nbsp;&amp;nbsp; 61 72 69 2F 35 33 37 2E 33 36 00 00 06 4F 72 69&amp;nbsp; - ari/537.36...Ori&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01b0&amp;nbsp;&amp;nbsp;&amp;nbsp; 67 69 6E 00 00 33 63 68 72 6F 6D 65 2D 65 78 74&amp;nbsp; - gin..3chrome-ext&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01c0&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 6E 73 69 6F 6E 3A 2F 2F 66 64 6D 6D 67 69 6C&amp;nbsp; - ension://fdmmgil&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01d0&amp;nbsp;&amp;nbsp;&amp;nbsp; 67 6E 70 6A 69 67 64 6F 6A 6F 6A 70 6A 6F 6F 6F&amp;nbsp; - gnpjigdojojpjooo&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01e0&amp;nbsp;&amp;nbsp;&amp;nbsp; 69 64 6B 6D 63 6F 6D 63 6D 00 00 03 44 4E 54 00&amp;nbsp; - idkmcomcm...DNT.&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01f0&amp;nbsp;&amp;nbsp;&amp;nbsp; 00 01 31 00 03 00 00 00 04 00 00 00 0E 00 11 4D&amp;nbsp; - ..1............M&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0200&amp;nbsp;&amp;nbsp;&amp;nbsp; 69 63 72 6F 73 6F 66 74 2D 49 49 53 2F 37 2E 35&amp;nbsp; - icrosoft-IIS/7.5&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0210&amp;nbsp;&amp;nbsp;&amp;nbsp; 00 0F 00 07 43 47 49 2F 31 2E 31 00 10 00 00 00&amp;nbsp; - ....CGI/1.1.....&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0220&amp;nbsp;&amp;nbsp;&amp;nbsp; 11 00 00 00 05 00 0D 73 63 72 65 77 79 52 65 71&amp;nbsp; - .......screwyReq&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0230&amp;nbsp;&amp;nbsp;&amp;nbsp; 75 65 73 74 00 0A 00 0F 41 4A 50 5F 52 45 4D 4F&amp;nbsp; - uest....AJP_REMO&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0240&amp;nbsp;&amp;nbsp;&amp;nbsp; 54 45 5F 50 4F 52 54 00 00 05 31 31 38 37 32 00&amp;nbsp; - TE_PORT...11872.&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0250&amp;nbsp;&amp;nbsp;&amp;nbsp; 0A 00 10 4A 4B 5F 4C 42 5F 41 43 54 49 56 41 54&amp;nbsp; - ...JK_LB_ACTIVAT&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0260&amp;nbsp;&amp;nbsp;&amp;nbsp; 49 4F 4E 00 00 03 41 43 54 00 FF 00 00 00 00 00&amp;nbsp; - ION...ACT.......&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_send_request::jk_ajp_common.c (1733): (cfusion) request body to send 129 - request body to resend 0&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.717 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=14 max=65536&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000&amp;nbsp;&amp;nbsp;&amp;nbsp; 0F 00 0A 2F 69 6E 64 65 78 2E 63 66 6D 00 00 00&amp;nbsp; - .../index.cfm...&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_process_callback::jk_ajp_common.c (1934): Getting real path&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] getRealPath::jk_isapi_plugin.c (4032): getRealPath(/index.cfm) = C:\inetpub\wwwroot\index.cfm&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): sending to ajp13 pos=4 len=33 max=34&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0000&amp;nbsp;&amp;nbsp;&amp;nbsp; 12 34 00 1D 1C 43 3A 5C 69 6E 65 74 70 75 62 5C&amp;nbsp; - .4...C:\inetpub\&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0010&amp;nbsp;&amp;nbsp;&amp;nbsp; 77 77 77 72 6F 6F 74 5C 69 6E 64 65 78 2E 63 66&amp;nbsp; - wwwroot\index.cf&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0020&amp;nbsp;&amp;nbsp;&amp;nbsp; 6D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00&amp;nbsp; - m...............&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=14 max=65536&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000&amp;nbsp;&amp;nbsp;&amp;nbsp; 0F 00 0A 2F 69 6E 64 65 78 2E 68 74 6D 00 00 00&amp;nbsp; - .../index.htm...&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_process_callback::jk_ajp_common.c (1934): Getting real path&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] getRealPath::jk_isapi_plugin.c (4032): getRealPath(/index.htm) = C:\inetpub\wwwroot\index.htm&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): sending to ajp13 pos=4 len=33 max=34&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0000&amp;nbsp;&amp;nbsp;&amp;nbsp; 12 34 00 1D 1C 43 3A 5C 69 6E 65 74 70 75 62 5C&amp;nbsp; - .4...C:\inetpub\&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0010&amp;nbsp;&amp;nbsp;&amp;nbsp; 77 77 77 72 6F 6F 74 5C 69 6E 64 65 78 2E 68 74&amp;nbsp; - wwwroot\index.ht&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.733 2014] [2912:1016] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0020&amp;nbsp;&amp;nbsp;&amp;nbsp; 6D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00&amp;nbsp; - m...............&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=165 max=65536&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000&amp;nbsp;&amp;nbsp;&amp;nbsp; 04 00 C8 00 02 4F 4B 00 00 04 00 0D 43 61 63 68&amp;nbsp; - .....OK.....Cach&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0010&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 2D 43 6F 6E 74 72 6F 6C 00 00 2E 6E 6F 2D 63&amp;nbsp; - e-Control...no-c&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0020&amp;nbsp;&amp;nbsp;&amp;nbsp; 61 63 68 65 2C 20 6E 6F 2D 73 74 6F 72 65 2C 20&amp;nbsp; - ache,.no-store,.&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0030&amp;nbsp;&amp;nbsp;&amp;nbsp; 6D 75 73 74 2D 72 65 76 61 6C 69 64 61 74 65 2C&amp;nbsp; - must-revalidate,&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0040&amp;nbsp;&amp;nbsp;&amp;nbsp; 20 6D 61 78 2D 61 67 65 3D 30 00 00 06 50 72 61&amp;nbsp; - .max-age=0...Pra&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0050&amp;nbsp;&amp;nbsp;&amp;nbsp; 67 6D 61 00 00 08 6E 6F 2D 63 61 63 68 65 00 00&amp;nbsp; - gma...no-cache..&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0060&amp;nbsp;&amp;nbsp;&amp;nbsp; 07 45 78 70 69 72 65 73 00 00 1D 54 68 75 2C 20&amp;nbsp; - .Expires...Thu,.&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0070&amp;nbsp;&amp;nbsp;&amp;nbsp; 30 31 20 4A 61 6E 20 31 39 37 30 20 30 30 3A 30&amp;nbsp; - 01.Jan.1970.00:0&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.748 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0080&amp;nbsp;&amp;nbsp;&amp;nbsp; 30 3A 30 30 20 47 4D 54 00 A0 01 00 17 74 65 78&amp;nbsp; - 0:00.GMT.....tex&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0090&amp;nbsp;&amp;nbsp;&amp;nbsp; 74 2F 68 74 6D 6C 3B 63 68 61 72 73 65 74 3D 55&amp;nbsp; - t/html;charset=U&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00a0&amp;nbsp;&amp;nbsp;&amp;nbsp; 54 46 2D 38 00 00 00 00 00 00 00 00 00 00 00 00&amp;nbsp; - TF-8............&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_unmarshal_response::jk_ajp_common.c (723): status = 200&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_unmarshal_response::jk_ajp_common.c (730): Number of headers is = 4&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[0] [Cache-Control] = [no-cache, no-store, must-revalidate, max-age=0]&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[1] [Pragma] = [no-cache]&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[2] [Expires] = [Thu, 01 Jan 1970 00:00:00 GMT]&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[3] [Content-Type] = [text/html;charset=UTF-8]&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] start_response::jk_isapi_plugin.c (1128): Starting response for URI '/index.cfm' (protocol HTTP/1.1)&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] start_response::jk_isapi_plugin.c (1237): Not using Keep-Alive&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] start_response::jk_isapi_plugin.c (1272): headers String 'Cache-Control: no-cache, no-store, must-revalidate, max-age=0&lt;/p&gt;&lt;p class="de1" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="de2"&gt;Pragma: no-cache&lt;/p&gt;&lt;p class="de1" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="de2"&gt;Expires: Thu, 01 Jan 1970 00:00:00 GMT&lt;/p&gt;&lt;p class="de1" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="de2"&gt;Content-Type: text/html;charset=UTF-8&lt;/p&gt;&lt;p class="de1" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="de2" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="de1" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="de2"&gt;'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=7958 max=65536&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000&amp;nbsp;&amp;nbsp;&amp;nbsp; 03 1F 12 3C 70 3E 68 65 6C 6C 6F 3C 2F 70 3E 0D&amp;nbsp; - ...&amp;lt;p&amp;gt;hello&amp;lt;/p&amp;gt;.&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.764 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0010&amp;nbsp;&amp;nbsp;&amp;nbsp; 0A 0D 0A 3C 73 74 79 6C 65 3E 0D 0A 0D 0A 0A 09&amp;nbsp; - ...&amp;lt;style&amp;gt;......&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0020&amp;nbsp;&amp;nbsp;&amp;nbsp; 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 77 64 64&amp;nbsp; - table.cfdump_wdd&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0030&amp;nbsp;&amp;nbsp;&amp;nbsp; 78 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70&amp;nbsp; - x,..table.cfdump&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0040&amp;nbsp;&amp;nbsp;&amp;nbsp; 5F 78 6D 6C 2C 0A 09 74 61 62 6C 65 2E 63 66 64&amp;nbsp; - _xml,..table.cfd&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0050&amp;nbsp;&amp;nbsp;&amp;nbsp; 75 6D 70 5F 73 74 72 75 63 74 2C 0A 09 74 61 62&amp;nbsp; - ump_struct,..tab&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0060&amp;nbsp;&amp;nbsp;&amp;nbsp; 6C 65 2E 63 66 64 75 6D 70 5F 76 61 72 75 6E 64&amp;nbsp; - le.cfdump_varund&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0070&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 66 69 6E 65 64 2C 0A 09 74 61 62 6C 65 2E 63&amp;nbsp; - efined,..table.c&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0080&amp;nbsp;&amp;nbsp;&amp;nbsp; 66 64 75 6D 70 5F 61 72 72 61 79 2C 0A 09 74 61&amp;nbsp; - fdump_array,..ta&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0090&amp;nbsp;&amp;nbsp;&amp;nbsp; 62 6C 65 2E 63 66 64 75 6D 70 5F 71 75 65 72 79&amp;nbsp; - ble.cfdump_query&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00a0&amp;nbsp;&amp;nbsp;&amp;nbsp; 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F&amp;nbsp; - ,..table.cfdump_&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00b0&amp;nbsp;&amp;nbsp;&amp;nbsp; 63 66 63 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75&amp;nbsp; - cfc,..table.cfdu&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00c0&amp;nbsp;&amp;nbsp;&amp;nbsp; 6D 70 5F 6F 62 6A 65 63 74 2C 0A 09 74 61 62 6C&amp;nbsp; - mp_object,..tabl&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00d0&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 2E 63 66 64 75 6D 70 5F 62 69 6E 61 72 79 2C&amp;nbsp; - e.cfdump_binary,&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00e0&amp;nbsp;&amp;nbsp;&amp;nbsp; 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 75&amp;nbsp; - ..table.cfdump_u&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00f0&amp;nbsp;&amp;nbsp;&amp;nbsp; 64 66 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D&amp;nbsp; - df,..table.cfdum&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0100&amp;nbsp;&amp;nbsp;&amp;nbsp; 70 5F 75 64 66 62 6F 64 79 2C 0A 09 74 61 62 6C&amp;nbsp; - p_udfbody,..tabl&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0110&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 2E 63 66 64 75 6D 70 5F 75 64 66 61 72 67 75&amp;nbsp; - e.cfdump_udfargu&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.780 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0120&amp;nbsp;&amp;nbsp;&amp;nbsp; 6D 65 6E 74 73 20 7B 0A 09 09 66 6F 6E 74 2D 73&amp;nbsp; - ments.{...font-s&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0130&amp;nbsp;&amp;nbsp;&amp;nbsp; 69 7A 65 3A 20 78 78 2D 73 6D 61 6C 6C 3B 0A 09&amp;nbsp; - ize:.xx-small;..&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0140&amp;nbsp;&amp;nbsp;&amp;nbsp; 09 66 6F 6E 74 2D 66 61 6D 69 6C 79 3A 20 76 65&amp;nbsp; - .font-family:.ve&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0150&amp;nbsp;&amp;nbsp;&amp;nbsp; 72 64 61 6E 61 2C 20 61 72 69 61 6C 2C 20 68 65&amp;nbsp; - rdana,.arial,.he&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0160&amp;nbsp;&amp;nbsp;&amp;nbsp; 6C 76 65 74 69 63 61 2C 20 73 61 6E 73 2D 73 65&amp;nbsp; - lvetica,.sans-se&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0170&amp;nbsp;&amp;nbsp;&amp;nbsp; 72 69 66 3B 0A 09 09 63 65 6C 6C 2D 73 70 61 63&amp;nbsp; - rif;...cell-spac&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0180&amp;nbsp;&amp;nbsp;&amp;nbsp; 69 6E 67 3A 20 32 70 78 3B 0A 09 7D 0A 0A 09 74&amp;nbsp; - ing:.2px;..}...t&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0190&amp;nbsp;&amp;nbsp;&amp;nbsp; 61 62 6C 65 2E 63 66 64 75 6D 70 5F 77 64 64 78&amp;nbsp; - able.cfdump_wddx&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01a0&amp;nbsp;&amp;nbsp;&amp;nbsp; 20 74 68 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75&amp;nbsp; - .th,..table.cfdu&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01b0&amp;nbsp;&amp;nbsp;&amp;nbsp; 6D 70 5F 78 6D 6C 20 74 68 2C 0A 09 74 61 62 6C&amp;nbsp; - mp_xml.th,..tabl&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01c0&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 2E 63 66 64 75 6D 70 5F 73 74 72 75 63 74 20&amp;nbsp; - e.cfdump_struct.&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01d0&amp;nbsp;&amp;nbsp;&amp;nbsp; 74 68 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D&amp;nbsp; - th,..table.cfdum&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01e0&amp;nbsp;&amp;nbsp;&amp;nbsp; 70 5F 76 61 72 75 6E 64 65 66 69 6E 65 64 20 74&amp;nbsp; - p_varundefined.t&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01f0&amp;nbsp;&amp;nbsp;&amp;nbsp; 68 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70&amp;nbsp; - h,..table.cfdump&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0200&amp;nbsp;&amp;nbsp;&amp;nbsp; 5F 61 72 72 61 79 20 74 68 2C 0A 09 74 61 62 6C&amp;nbsp; - _array.th,..tabl&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0210&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 2E 63 66 64 75 6D 70 5F 71 75 65 72 79 20 74&amp;nbsp; - e.cfdump_query.t&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0220&amp;nbsp;&amp;nbsp;&amp;nbsp; 68 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70&amp;nbsp; - h,..table.cfdump&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0230&amp;nbsp;&amp;nbsp;&amp;nbsp; 5F 63 66 63 20 74 68 2C 0A 09 74 61 62 6C 65 2E&amp;nbsp; - _cfc.th,..table.&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.795 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0240&amp;nbsp;&amp;nbsp;&amp;nbsp; 63 66 64 75 6D 70 5F 6F 62 6A 65 63 74 20 74 68&amp;nbsp; - cfdump_object.th&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0250&amp;nbsp;&amp;nbsp;&amp;nbsp; 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F&amp;nbsp; - ,..table.cfdump_&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0260&amp;nbsp;&amp;nbsp;&amp;nbsp; 62 69 6E 61 72 79 20 74 68 2C 0A 09 74 61 62 6C&amp;nbsp; - binary.th,..tabl&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0270&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 2E 63 66 64 75 6D 70 5F 75 64 66 20 74 68 2C&amp;nbsp; - e.cfdump_udf.th,&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0280&amp;nbsp;&amp;nbsp;&amp;nbsp; 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 75&amp;nbsp; - ..table.cfdump_u&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0290&amp;nbsp;&amp;nbsp;&amp;nbsp; 64 66 62 6F 64 79 20 74 68 2C 0A 09 74 61 62 6C&amp;nbsp; - dfbody.th,..tabl&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02a0&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 2E 63 66 64 75 6D 70 5F 75 64 66 61 72 67 75&amp;nbsp; - e.cfdump_udfargu&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02b0&amp;nbsp;&amp;nbsp;&amp;nbsp; 6D 65 6E 74 73 20 74 68 20 7B 0A 09 09 74 65 78&amp;nbsp; - ments.th.{...tex&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02c0&amp;nbsp;&amp;nbsp;&amp;nbsp; 74 2D 61 6C 69 67 6E 3A 20 6C 65 66 74 3B 0A 09&amp;nbsp; - t-align:.left;..&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02d0&amp;nbsp;&amp;nbsp;&amp;nbsp; 09 63 6F 6C 6F 72 3A 20 77 68 69 74 65 3B 0A 09&amp;nbsp; - .color:.white;..&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02e0&amp;nbsp;&amp;nbsp;&amp;nbsp; 09 70 61 64 64 69 6E 67 3A 20 35 70 78 3B 0A 09&amp;nbsp; - .padding:.5px;..&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02f0&amp;nbsp;&amp;nbsp;&amp;nbsp; 7D 0A 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70&amp;nbsp; - }...table.cfdump&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0300&amp;nbsp;&amp;nbsp;&amp;nbsp; 5F 77 64 64 78 20 74 64 2C 0A 09 74 61 62 6C 65&amp;nbsp; - _wddx.td,..table&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0310&amp;nbsp;&amp;nbsp;&amp;nbsp; 2E 63 66 64 75 6D 70 5F 78 6D 6C 20 74 64 2C 0A&amp;nbsp; - .cfdump_xml.td,.&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0320&amp;nbsp;&amp;nbsp;&amp;nbsp; 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 73 74&amp;nbsp; - .table.cfdump_st&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0330&amp;nbsp;&amp;nbsp;&amp;nbsp; 72 75 63 74 20 74 64 2C 0A 09 74 61 62 6C 65 2E&amp;nbsp; - ruct.td,..table.&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0340&amp;nbsp;&amp;nbsp;&amp;nbsp; 63 66 64 75 6D 70 5F 76 61 72 75 6E 64 65 66 69&amp;nbsp; - cfdump_varundefi&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0350&amp;nbsp;&amp;nbsp;&amp;nbsp; 6E 65 64 20 20 74 64 2C 0A 09 74 61 62 6C 65 2E&amp;nbsp; - ned..td,..table.&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.811 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0360&amp;nbsp;&amp;nbsp;&amp;nbsp; 63 66 64 75 6D 70 5F 61 72 72 61 79 20 74 64 2C&amp;nbsp; - cfdump_array.td,&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0370&amp;nbsp;&amp;nbsp;&amp;nbsp; 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 71&amp;nbsp; - ..table.cfdump_q&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0380&amp;nbsp;&amp;nbsp;&amp;nbsp; 75 65 72 79 20 74 64 2C 0A 09 74 61 62 6C 65 2E&amp;nbsp; - uery.td,..table.&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0390&amp;nbsp;&amp;nbsp;&amp;nbsp; 63 66 64 75 6D 70 5F 63 66 63 20 74 64 2C 0A 09&amp;nbsp; - cfdump_cfc.td,..&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03a0&amp;nbsp;&amp;nbsp;&amp;nbsp; 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 6F 62 6A&amp;nbsp; - table.cfdump_obj&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03b0&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 63 74 20 74 64 2C 0A 09 74 61 62 6C 65 2E 63&amp;nbsp; - ect.td,..table.c&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03c0&amp;nbsp;&amp;nbsp;&amp;nbsp; 66 64 75 6D 70 5F 62 69 6E 61 72 79 20 74 64 2C&amp;nbsp; - fdump_binary.td,&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03d0&amp;nbsp;&amp;nbsp;&amp;nbsp; 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 75&amp;nbsp; - ..table.cfdump_u&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03e0&amp;nbsp;&amp;nbsp;&amp;nbsp; 64 66 20 74 64 2C 0A 09 74 61 62 6C 65 2E 63 66&amp;nbsp; - df.td,..table.cf&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03f0&amp;nbsp;&amp;nbsp;&amp;nbsp; 64 75 6D 70 5F 75 64 66 62 6F 64 79 20 74 64 2C&amp;nbsp; - dump_udfbody.td,&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] isapi_write_client::jk_isapi_plugin.c (1391): Writing 7954 bytes of data to client&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] isapi_write_client::jk_isapi_plugin.c (1392): IIS7 flush enabled 0&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] isapi_write_client::jk_isapi_plugin.c (1393): writeclient write_length value 7954&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] isapi_write_client::jk_isapi_plugin.c (1413): Wrote 7954 bytes of data successfully&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=4 max=65536&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:22:32.827 2014] [2912:1016] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000&amp;nbsp;&amp;nbsp;&amp;nbsp; 03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00&amp;nbsp; - ................&lt;/p&gt;&lt;p class="de2" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="de1"&gt;&amp;lt;!--- GOOD REQUEST BELOW ---&amp;gt;&lt;/p&gt;&lt;p class="de2" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.064 2014] [2912:2664] [debug] handle_notify_event::jk_isapi_plugin.c (2184): Filter started&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.064 2014] [2912:2664] [debug] uri_worker_map_update::jk_uri_worker_map.c (1265): File C:\ColdFusion11\config\wsconfig\1\uriworkermap.properties is not modified&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.064 2014] [2912:2664] [debug] map_uri_to_worker_ext::jk_uri_worker_map.c (1131): Attempting to map URI '/10.10.10.37/' from 30 maps&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.064 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flashservices/gateway/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.064 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cfform-internal/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.064 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cffileservlet/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.064 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cfformgateway/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.064 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/CFFileServlet/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.080 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex-internal/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.080 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/CFFormGateway/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.080 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex2gateway/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.080 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfml/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.126 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfc/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.126 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfm/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.126 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/rest/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.126 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex2gateway=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.126 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.hbmxml=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.126 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfswf=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.mxml=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFML=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfml=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfml=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFC=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.swc=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFM=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfc=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfm=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfr=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.142 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfc=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.sws=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.jsp=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfm=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.as=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flashservices/gateway/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cfform-internal/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cffileservlet/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cfformgateway/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/CFFileServlet/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex-internal/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/CFFormGateway/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex2gateway/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.158 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfml/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfc/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfm/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/rest/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex2gateway=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.hbmxml=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfswf=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.mxml=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFML=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfml=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfml=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFC=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.swc=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFM=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfc=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfm=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfr=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfc=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.sws=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.173 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.jsp=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfm=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.as=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] handle_notify_event::jk_isapi_plugin.c (2409): [/] is not a servlet url&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] wc_maintain::jk_worker.c (338): Maintaining worker cfusion&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3516): Reading extension header HTTP_TOMCATWORKER000000006A6B0000: (null)&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3517): Reading extension header HTTP_TOMCATWORKERIDX000000006A6B0000: -1&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3518): Reading extension header HTTP_TOMCATURI000000006A6B0000: (null)&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3519): Reading extension header HTTP_TOMCATQUERY000000006A6B0000: (null)&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3524): No URI header value provided. Defaulting to old behaviour&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3588): query_string value:&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] map_uri_to_worker_ext::jk_uri_worker_map.c (1131): Attempting to map URI '/index.cfm' from 30 maps&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flashservices/gateway/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cfform-internal/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cffileservlet/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/cfformgateway/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/CFFileServlet/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex-internal/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.189 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/CFFormGateway/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex2gateway/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfml/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfc/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfm/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/rest/*=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/flex2gateway=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.hbmxml=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfswf=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.mxml=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFML=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfml=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfml=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFC=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.swc=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.CFM=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfc=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.205 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfm=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfr=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.Cfc=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.sws=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.jsp=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (945): Attempting to map context URI '/*.cfm=cfusion' source 'uriworkermap'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] find_match::jk_uri_worker_map.c (958): Found a wildchar match '/*.cfm=cfusion'&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3702): Applying service extensions&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Cache-Control : no-cache&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Connection : keep-alive&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Pragma : no-cache&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Content-Length : 0&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Accept : text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Accept-Encoding : gzip, deflate&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Accept-Language : en-gb,en;q=0.5&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header Host : 10.10.10.37&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header User-Agent : Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3944): Forwarding request header DNT : 1&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3973): Service protocol=HTTP/1.1 method=GET host=10.10.10.11 addr=10.10.10.11 name=10.10.10.37 port=80 auth= user= uri=/index.cfm&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.220 2014] [2912:2664] [debug] init_ws_service::jk_isapi_plugin.c (3985): Service request headers=10 attributes=0 chunked=no content-length=0 available=0&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] wc_get_worker_for_name::jk_worker.c (115): found a worker cfusion&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] HttpExtensionProc::jk_isapi_plugin.c (2582): got a worker for name cfusion&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_get_endpoint::jk_ajp_common.c (3287): acquired connection pool slot=3 after 0 retries&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_marshal_into_msgb::jk_ajp_common.c (668): ajp marshaling done&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_service::jk_ajp_common.c (2569): processing cfusion with 2 retries&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_send_request::jk_ajp_common.c (1673): (cfusion) all endpoints are disconnected.&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] jk_open_socket::jk_connect.c (485): socket TCP_NODELAY set to On&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] jk_open_socket::jk_connect.c (609): trying to connect socket 772 to 127.0.0.1:8014&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] jk_open_socket::jk_connect.c (635): socket 772 [127.0.0.1:49436 -&amp;gt; 127.0.0.1:8014] connected&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): sending to ajp13 pos=4 len=494 max=65536&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0000&amp;nbsp;&amp;nbsp;&amp;nbsp; 12 34 01 EA 02 02 00 08 48 54 54 50 2F 31 2E 31&amp;nbsp; - .4......HTTP/1.1&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0010&amp;nbsp;&amp;nbsp;&amp;nbsp; 00 00 0A 2F 69 6E 64 65 78 2E 63 66 6D 00 00 0B&amp;nbsp; - .../index.cfm...&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0020&amp;nbsp;&amp;nbsp;&amp;nbsp; 31 30 2E 31 30 2E 31 30 2E 31 31 00 00 0B 31 30&amp;nbsp; - 10.10.10.11...10&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0030&amp;nbsp;&amp;nbsp;&amp;nbsp; 2E 31 30 2E 31 30 2E 31 31 00 00 0B 31 30 2E 31&amp;nbsp; - .10.10.11...10.1&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0040&amp;nbsp;&amp;nbsp;&amp;nbsp; 30 2E 31 30 2E 33 37 00 00 50 00 00 0A 00 0D 43&amp;nbsp; - 0.10.37..P.....C&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0050&amp;nbsp;&amp;nbsp;&amp;nbsp; 61 63 68 65 2D 43 6F 6E 74 72 6F 6C 00 00 08 6E&amp;nbsp; - ache-Control...n&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.236 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0060&amp;nbsp;&amp;nbsp;&amp;nbsp; 6F 2D 63 61 63 68 65 00 A0 06 00 0A 6B 65 65 70&amp;nbsp; - o-cache.....keep&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0070&amp;nbsp;&amp;nbsp;&amp;nbsp; 2D 61 6C 69 76 65 00 A0 0C 00 08 6E 6F 2D 63 61&amp;nbsp; - -alive.....no-ca&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0080&amp;nbsp;&amp;nbsp;&amp;nbsp; 63 68 65 00 A0 08 00 01 30 00 A0 01 00 3F 74 65&amp;nbsp; - che.....0....?te&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0090&amp;nbsp;&amp;nbsp;&amp;nbsp; 78 74 2F 68 74 6D 6C 2C 61 70 70 6C 69 63 61 74&amp;nbsp; - xt/html,applicat&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00a0&amp;nbsp;&amp;nbsp;&amp;nbsp; 69 6F 6E 2F 78 68 74 6D 6C 2B 78 6D 6C 2C 61 70&amp;nbsp; - ion/xhtml+xml,ap&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00b0&amp;nbsp;&amp;nbsp;&amp;nbsp; 70 6C 69 63 61 74 69 6F 6E 2F 78 6D 6C 3B 71 3D&amp;nbsp; - plication/xml;q=&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00c0&amp;nbsp;&amp;nbsp;&amp;nbsp; 30 2E 39 2C 2A 2F 2A 3B 71 3D 30 2E 38 00 00 0F&amp;nbsp; - 0.9,*/*;q=0.8...&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00d0&amp;nbsp;&amp;nbsp;&amp;nbsp; 41 63 63 65 70 74 2D 45 6E 63 6F 64 69 6E 67 00&amp;nbsp; - Accept-Encoding.&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00e0&amp;nbsp;&amp;nbsp;&amp;nbsp; 00 0D 67 7A 69 70 2C 20 64 65 66 6C 61 74 65 00&amp;nbsp; - ..gzip,.deflate.&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 00f0&amp;nbsp;&amp;nbsp;&amp;nbsp; 00 0F 41 63 63 65 70 74 2D 4C 61 6E 67 75 61 67&amp;nbsp; - ..Accept-Languag&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0100&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 00 00 0E 65 6E 2D 67 62 2C 65 6E 3B 71 3D 30&amp;nbsp; - e...en-gb,en;q=0&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0110&amp;nbsp;&amp;nbsp;&amp;nbsp; 2E 35 00 A0 0B 00 0B 31 30 2E 31 30 2E 31 30 2E&amp;nbsp; - .5.....10.10.10.&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0120&amp;nbsp;&amp;nbsp;&amp;nbsp; 33 37 00 A0 0E 00 48 4D 6F 7A 69 6C 6C 61 2F 35&amp;nbsp; - 37....HMozilla/5&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0130&amp;nbsp;&amp;nbsp;&amp;nbsp; 2E 30 20 28 57 69 6E 64 6F 77 73 20 4E 54 20 36&amp;nbsp; - .0.(Windows.NT.6&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0140&amp;nbsp;&amp;nbsp;&amp;nbsp; 2E 31 3B 20 57 4F 57 36 34 3B 20 72 76 3A 33 31&amp;nbsp; - .1;.WOW64;.rv:31&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0150&amp;nbsp;&amp;nbsp;&amp;nbsp; 2E 30 29 20 47 65 63 6B 6F 2F 32 30 31 30 30 31&amp;nbsp; - .0).Gecko/201001&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0160&amp;nbsp;&amp;nbsp;&amp;nbsp; 30 31 20 46 69 72 65 66 6F 78 2F 33 31 2E 30 00&amp;nbsp; - 01.Firefox/31.0.&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0170&amp;nbsp;&amp;nbsp;&amp;nbsp; 00 03 44 4E 54 00 00 01 31 00 03 00 00 00 04 00&amp;nbsp; - ..DNT...1.......&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0180&amp;nbsp;&amp;nbsp;&amp;nbsp; 00 00 0E 00 11 4D 69 63 72 6F 73 6F 66 74 2D 49&amp;nbsp; - .....Microsoft-I&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.251 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0190&amp;nbsp;&amp;nbsp;&amp;nbsp; 49 53 2F 37 2E 35 00 0F 00 07 43 47 49 2F 31 2E&amp;nbsp; - IS/7.5....CGI/1.&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.267 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01a0&amp;nbsp;&amp;nbsp;&amp;nbsp; 31 00 10 00 0A 2F 69 6E 64 65 78 2E 63 66 6D 00&amp;nbsp; - 1..../index.cfm.&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.267 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01b0&amp;nbsp;&amp;nbsp;&amp;nbsp; 11 00 00 00 05 00 00 00 0A 00 0F 41 4A 50 5F 52&amp;nbsp; - ...........AJP_R&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01c0&amp;nbsp;&amp;nbsp;&amp;nbsp; 45 4D 4F 54 45 5F 50 4F 52 54 00 00 05 31 32 33&amp;nbsp; - EMOTE_PORT...123&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01d0&amp;nbsp;&amp;nbsp;&amp;nbsp; 38 33 00 0A 00 10 4A 4B 5F 4C 42 5F 41 43 54 49&amp;nbsp; - 83....JK_LB_ACTI&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 01e0&amp;nbsp;&amp;nbsp;&amp;nbsp; 56 41 54 49 4F 4E 00 00 03 41 43 54 00 FF 00 00&amp;nbsp; - VATION...ACT....&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_send_request::jk_ajp_common.c (1733): (cfusion) request body to send 0 - request body to resend 0&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=14 max=65536&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000&amp;nbsp;&amp;nbsp;&amp;nbsp; 0F 00 0A 2F 69 6E 64 65 78 2E 63 66 6D 00 00 00&amp;nbsp; - .../index.cfm...&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_process_callback::jk_ajp_common.c (1934): Getting real path&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] getRealPath::jk_isapi_plugin.c (4032): getRealPath(/index.cfm) = C:\inetpub\wwwroot\index.cfm&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): sending to ajp13 pos=4 len=33 max=34&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0000&amp;nbsp;&amp;nbsp;&amp;nbsp; 12 34 00 1D 1C 43 3A 5C 69 6E 65 74 70 75 62 5C&amp;nbsp; - .4...C:\inetpub\&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0010&amp;nbsp;&amp;nbsp;&amp;nbsp; 77 77 77 72 6F 6F 74 5C 69 6E 64 65 78 2E 63 66&amp;nbsp; - wwwroot\index.cf&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.283 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0020&amp;nbsp;&amp;nbsp;&amp;nbsp; 6D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00&amp;nbsp; - m...............&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=14 max=65536&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000&amp;nbsp;&amp;nbsp;&amp;nbsp; 0F 00 0A 2F 69 6E 64 65 78 2E 68 74 6D 00 00 00&amp;nbsp; - .../index.htm...&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_process_callback::jk_ajp_common.c (1934): Getting real path&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] getRealPath::jk_isapi_plugin.c (4032): getRealPath(/index.htm) = C:\inetpub\wwwroot\index.htm&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): sending to ajp13 pos=4 len=33 max=34&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0000&amp;nbsp;&amp;nbsp;&amp;nbsp; 12 34 00 1D 1C 43 3A 5C 69 6E 65 74 70 75 62 5C&amp;nbsp; - .4...C:\inetpub\&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0010&amp;nbsp;&amp;nbsp;&amp;nbsp; 77 77 77 72 6F 6F 74 5C 69 6E 64 65 78 2E 68 74&amp;nbsp; - wwwroot\index.ht&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_connection_tcp_send_message::jk_ajp_common.c (1233): 0020&amp;nbsp;&amp;nbsp;&amp;nbsp; 6D 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00&amp;nbsp; - m...............&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=239 max=65536&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.298 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000&amp;nbsp;&amp;nbsp;&amp;nbsp; 04 00 C8 00 02 4F 4B 00 00 05 A0 07 00 45 4A 53&amp;nbsp; - .....OK......EJS&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0010&amp;nbsp;&amp;nbsp;&amp;nbsp; 45 53 53 49 4F 4E 49 44 3D 38 33 41 34 37 46 38&amp;nbsp; - ESSIONID=83A47F8&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0020&amp;nbsp;&amp;nbsp;&amp;nbsp; 35 38 43 41 41 39 45 35 45 31 38 46 41 44 46 33&amp;nbsp; - 58CAA9E5E18FADF3&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0030&amp;nbsp;&amp;nbsp;&amp;nbsp; 38 31 43 31 36 46 43 35 44 2E 63 66 75 73 69 6F&amp;nbsp; - 81C16FC5D.cfusio&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0040&amp;nbsp;&amp;nbsp;&amp;nbsp; 6E 3B 20 50 61 74 68 3D 2F 3B 20 48 74 74 70 4F&amp;nbsp; - n;.Path=/;.HttpO&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0050&amp;nbsp;&amp;nbsp;&amp;nbsp; 6E 6C 79 00 00 0D 43 61 63 68 65 2D 43 6F 6E 74&amp;nbsp; - nly...Cache-Cont&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0060&amp;nbsp;&amp;nbsp;&amp;nbsp; 72 6F 6C 00 00 2E 6E 6F 2D 63 61 63 68 65 2C 20&amp;nbsp; - rol...no-cache,.&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0070&amp;nbsp;&amp;nbsp;&amp;nbsp; 6E 6F 2D 73 74 6F 72 65 2C 20 6D 75 73 74 2D 72&amp;nbsp; - no-store,.must-r&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0080&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 76 61 6C 69 64 61 74 65 2C 20 6D 61 78 2D 61&amp;nbsp; - evalidate,.max-a&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0090&amp;nbsp;&amp;nbsp;&amp;nbsp; 67 65 3D 30 00 00 06 50 72 61 67 6D 61 00 00 08&amp;nbsp; - ge=0...Pragma...&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00a0&amp;nbsp;&amp;nbsp;&amp;nbsp; 6E 6F 2D 63 61 63 68 65 00 00 07 45 78 70 69 72&amp;nbsp; - no-cache...Expir&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00b0&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 73 00 00 1D 54 68 75 2C 20 30 31 20 4A 61 6E&amp;nbsp; - es...Thu,.01.Jan&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00c0&amp;nbsp;&amp;nbsp;&amp;nbsp; 20 31 39 37 30 20 30 30 3A 30 30 3A 30 30 20 47&amp;nbsp; - .1970.00:00:00.G&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00d0&amp;nbsp;&amp;nbsp;&amp;nbsp; 4D 54 00 A0 01 00 17 74 65 78 74 2F 68 74 6D 6C&amp;nbsp; - MT.....text/html&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00e0&amp;nbsp;&amp;nbsp;&amp;nbsp; 3B 63 68 61 72 73 65 74 3D 55 54 46 2D 38 00 00&amp;nbsp; - ;charset=UTF-8..&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_unmarshal_response::jk_ajp_common.c (723): status = 200&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.314 2014] [2912:2664] [debug] ajp_unmarshal_response::jk_ajp_common.c (730): Number of headers is = 5&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[0] [Set-Cookie] = [JSESSIONID=83A47F858CAA9E5E18FADF381C16FC5D.cfusion; Path=/; HttpOnly]&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[1] [Cache-Control] = [no-cache, no-store, must-revalidate, max-age=0]&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[2] [Pragma] = [no-cache]&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[3] [Expires] = [Thu, 01 Jan 1970 00:00:00 GMT]&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_unmarshal_response::jk_ajp_common.c (786): Header[4] [Content-Type] = [text/html;charset=UTF-8]&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] start_response::jk_isapi_plugin.c (1128): Starting response for URI '/index.cfm' (protocol HTTP/1.1)&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] start_response::jk_isapi_plugin.c (1237): Not using Keep-Alive&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] start_response::jk_isapi_plugin.c (1272): headers String 'Set-Cookie: JSESSIONID=83A47F858CAA9E5E18FADF381C16FC5D.cfusion; Path=/; HttpOnly&lt;/p&gt;&lt;p class="de2" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="de1"&gt;Cache-Control: no-cache, no-store, must-revalidate, max-age=0&lt;/p&gt;&lt;p class="de2" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="de1"&gt;Pragma: no-cache&lt;/p&gt;&lt;p class="de2" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="de1"&gt;Expires: Thu, 01 Jan 1970 00:00:00 GMT&lt;/p&gt;&lt;p class="de2" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="de1"&gt;Content-Type: text/html;charset=UTF-8&lt;/p&gt;&lt;p class="de2" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="de1" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="de2" style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p class="de1"&gt;'&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=7958 max=65536&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000&amp;nbsp;&amp;nbsp;&amp;nbsp; 03 1F 12 3C 70 3E 68 65 6C 6C 6F 3C 2F 70 3E 0D&amp;nbsp; - ...&amp;lt;p&amp;gt;hello&amp;lt;/p&amp;gt;.&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0010&amp;nbsp;&amp;nbsp;&amp;nbsp; 0A 0D 0A 3C 73 74 79 6C 65 3E 0D 0A 0D 0A 0A 09&amp;nbsp; - ...&amp;lt;style&amp;gt;......&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0020&amp;nbsp;&amp;nbsp;&amp;nbsp; 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 77 64 64&amp;nbsp; - table.cfdump_wdd&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0030&amp;nbsp;&amp;nbsp;&amp;nbsp; 78 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70&amp;nbsp; - x,..table.cfdump&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0040&amp;nbsp;&amp;nbsp;&amp;nbsp; 5F 78 6D 6C 2C 0A 09 74 61 62 6C 65 2E 63 66 64&amp;nbsp; - _xml,..table.cfd&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0050&amp;nbsp;&amp;nbsp;&amp;nbsp; 75 6D 70 5F 73 74 72 75 63 74 2C 0A 09 74 61 62&amp;nbsp; - ump_struct,..tab&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0060&amp;nbsp;&amp;nbsp;&amp;nbsp; 6C 65 2E 63 66 64 75 6D 70 5F 76 61 72 75 6E 64&amp;nbsp; - le.cfdump_varund&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0070&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 66 69 6E 65 64 2C 0A 09 74 61 62 6C 65 2E 63&amp;nbsp; - efined,..table.c&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.330 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0080&amp;nbsp;&amp;nbsp;&amp;nbsp; 66 64 75 6D 70 5F 61 72 72 61 79 2C 0A 09 74 61&amp;nbsp; - fdump_array,..ta&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0090&amp;nbsp;&amp;nbsp;&amp;nbsp; 62 6C 65 2E 63 66 64 75 6D 70 5F 71 75 65 72 79&amp;nbsp; - ble.cfdump_query&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00a0&amp;nbsp;&amp;nbsp;&amp;nbsp; 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F&amp;nbsp; - ,..table.cfdump_&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00b0&amp;nbsp;&amp;nbsp;&amp;nbsp; 63 66 63 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75&amp;nbsp; - cfc,..table.cfdu&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00c0&amp;nbsp;&amp;nbsp;&amp;nbsp; 6D 70 5F 6F 62 6A 65 63 74 2C 0A 09 74 61 62 6C&amp;nbsp; - mp_object,..tabl&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00d0&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 2E 63 66 64 75 6D 70 5F 62 69 6E 61 72 79 2C&amp;nbsp; - e.cfdump_binary,&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00e0&amp;nbsp;&amp;nbsp;&amp;nbsp; 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 75&amp;nbsp; - ..table.cfdump_u&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 00f0&amp;nbsp;&amp;nbsp;&amp;nbsp; 64 66 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D&amp;nbsp; - df,..table.cfdum&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0100&amp;nbsp;&amp;nbsp;&amp;nbsp; 70 5F 75 64 66 62 6F 64 79 2C 0A 09 74 61 62 6C&amp;nbsp; - p_udfbody,..tabl&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.392 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0110&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 2E 63 66 64 75 6D 70 5F 75 64 66 61 72 67 75&amp;nbsp; - e.cfdump_udfargu&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0120&amp;nbsp;&amp;nbsp;&amp;nbsp; 6D 65 6E 74 73 20 7B 0A 09 09 66 6F 6E 74 2D 73&amp;nbsp; - ments.{...font-s&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0130&amp;nbsp;&amp;nbsp;&amp;nbsp; 69 7A 65 3A 20 78 78 2D 73 6D 61 6C 6C 3B 0A 09&amp;nbsp; - ize:.xx-small;..&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0140&amp;nbsp;&amp;nbsp;&amp;nbsp; 09 66 6F 6E 74 2D 66 61 6D 69 6C 79 3A 20 76 65&amp;nbsp; - .font-family:.ve&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0150&amp;nbsp;&amp;nbsp;&amp;nbsp; 72 64 61 6E 61 2C 20 61 72 69 61 6C 2C 20 68 65&amp;nbsp; - rdana,.arial,.he&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0160&amp;nbsp;&amp;nbsp;&amp;nbsp; 6C 76 65 74 69 63 61 2C 20 73 61 6E 73 2D 73 65&amp;nbsp; - lvetica,.sans-se&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0170&amp;nbsp;&amp;nbsp;&amp;nbsp; 72 69 66 3B 0A 09 09 63 65 6C 6C 2D 73 70 61 63&amp;nbsp; - rif;...cell-spac&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0180&amp;nbsp;&amp;nbsp;&amp;nbsp; 69 6E 67 3A 20 32 70 78 3B 0A 09 7D 0A 0A 09 74&amp;nbsp; - ing:.2px;..}...t&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0190&amp;nbsp;&amp;nbsp;&amp;nbsp; 61 62 6C 65 2E 63 66 64 75 6D 70 5F 77 64 64 78&amp;nbsp; - able.cfdump_wddx&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01a0&amp;nbsp;&amp;nbsp;&amp;nbsp; 20 74 68 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75&amp;nbsp; - .th,..table.cfdu&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01b0&amp;nbsp;&amp;nbsp;&amp;nbsp; 6D 70 5F 78 6D 6C 20 74 68 2C 0A 09 74 61 62 6C&amp;nbsp; - mp_xml.th,..tabl&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01c0&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 2E 63 66 64 75 6D 70 5F 73 74 72 75 63 74 20&amp;nbsp; - e.cfdump_struct.&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01d0&amp;nbsp;&amp;nbsp;&amp;nbsp; 74 68 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D&amp;nbsp; - th,..table.cfdum&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.408 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01e0&amp;nbsp;&amp;nbsp;&amp;nbsp; 70 5F 76 61 72 75 6E 64 65 66 69 6E 65 64 20 74&amp;nbsp; - p_varundefined.t&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 01f0&amp;nbsp;&amp;nbsp;&amp;nbsp; 68 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70&amp;nbsp; - h,..table.cfdump&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0200&amp;nbsp;&amp;nbsp;&amp;nbsp; 5F 61 72 72 61 79 20 74 68 2C 0A 09 74 61 62 6C&amp;nbsp; - _array.th,..tabl&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0210&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 2E 63 66 64 75 6D 70 5F 71 75 65 72 79 20 74&amp;nbsp; - e.cfdump_query.t&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0220&amp;nbsp;&amp;nbsp;&amp;nbsp; 68 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70&amp;nbsp; - h,..table.cfdump&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0230&amp;nbsp;&amp;nbsp;&amp;nbsp; 5F 63 66 63 20 74 68 2C 0A 09 74 61 62 6C 65 2E&amp;nbsp; - _cfc.th,..table.&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0240&amp;nbsp;&amp;nbsp;&amp;nbsp; 63 66 64 75 6D 70 5F 6F 62 6A 65 63 74 20 74 68&amp;nbsp; - cfdump_object.th&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0250&amp;nbsp;&amp;nbsp;&amp;nbsp; 2C 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F&amp;nbsp; - ,..table.cfdump_&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0260&amp;nbsp;&amp;nbsp;&amp;nbsp; 62 69 6E 61 72 79 20 74 68 2C 0A 09 74 61 62 6C&amp;nbsp; - binary.th,..tabl&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0270&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 2E 63 66 64 75 6D 70 5F 75 64 66 20 74 68 2C&amp;nbsp; - e.cfdump_udf.th,&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0280&amp;nbsp;&amp;nbsp;&amp;nbsp; 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 75&amp;nbsp; - ..table.cfdump_u&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0290&amp;nbsp;&amp;nbsp;&amp;nbsp; 64 66 62 6F 64 79 20 74 68 2C 0A 09 74 61 62 6C&amp;nbsp; - dfbody.th,..tabl&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.423 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02a0&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 2E 63 66 64 75 6D 70 5F 75 64 66 61 72 67 75&amp;nbsp; - e.cfdump_udfargu&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02b0&amp;nbsp;&amp;nbsp;&amp;nbsp; 6D 65 6E 74 73 20 74 68 20 7B 0A 09 09 74 65 78&amp;nbsp; - ments.th.{...tex&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02c0&amp;nbsp;&amp;nbsp;&amp;nbsp; 74 2D 61 6C 69 67 6E 3A 20 6C 65 66 74 3B 0A 09&amp;nbsp; - t-align:.left;..&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02d0&amp;nbsp;&amp;nbsp;&amp;nbsp; 09 63 6F 6C 6F 72 3A 20 77 68 69 74 65 3B 0A 09&amp;nbsp; - .color:.white;..&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02e0&amp;nbsp;&amp;nbsp;&amp;nbsp; 09 70 61 64 64 69 6E 67 3A 20 35 70 78 3B 0A 09&amp;nbsp; - .padding:.5px;..&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 02f0&amp;nbsp;&amp;nbsp;&amp;nbsp; 7D 0A 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70&amp;nbsp; - }...table.cfdump&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0300&amp;nbsp;&amp;nbsp;&amp;nbsp; 5F 77 64 64 78 20 74 64 2C 0A 09 74 61 62 6C 65&amp;nbsp; - _wddx.td,..table&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0310&amp;nbsp;&amp;nbsp;&amp;nbsp; 2E 63 66 64 75 6D 70 5F 78 6D 6C 20 74 64 2C 0A&amp;nbsp; - .cfdump_xml.td,.&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0320&amp;nbsp;&amp;nbsp;&amp;nbsp; 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 73 74&amp;nbsp; - .table.cfdump_st&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0330&amp;nbsp;&amp;nbsp;&amp;nbsp; 72 75 63 74 20 74 64 2C 0A 09 74 61 62 6C 65 2E&amp;nbsp; - ruct.td,..table.&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0340&amp;nbsp;&amp;nbsp;&amp;nbsp; 63 66 64 75 6D 70 5F 76 61 72 75 6E 64 65 66 69&amp;nbsp; - cfdump_varundefi&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0350&amp;nbsp;&amp;nbsp;&amp;nbsp; 6E 65 64 20 20 74 64 2C 0A 09 74 61 62 6C 65 2E&amp;nbsp; - ned..td,..table.&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0360&amp;nbsp;&amp;nbsp;&amp;nbsp; 63 66 64 75 6D 70 5F 61 72 72 61 79 20 74 64 2C&amp;nbsp; - cfdump_array.td,&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0370&amp;nbsp;&amp;nbsp;&amp;nbsp; 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 71&amp;nbsp; - ..table.cfdump_q&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0380&amp;nbsp;&amp;nbsp;&amp;nbsp; 75 65 72 79 20 74 64 2C 0A 09 74 61 62 6C 65 2E&amp;nbsp; - uery.td,..table.&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0390&amp;nbsp;&amp;nbsp;&amp;nbsp; 63 66 64 75 6D 70 5F 63 66 63 20 74 64 2C 0A 09&amp;nbsp; - cfdump_cfc.td,..&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.439 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03a0&amp;nbsp;&amp;nbsp;&amp;nbsp; 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 6F 62 6A&amp;nbsp; - table.cfdump_obj&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03b0&amp;nbsp;&amp;nbsp;&amp;nbsp; 65 63 74 20 74 64 2C 0A 09 74 61 62 6C 65 2E 63&amp;nbsp; - ect.td,..table.c&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03c0&amp;nbsp;&amp;nbsp;&amp;nbsp; 66 64 75 6D 70 5F 62 69 6E 61 72 79 20 74 64 2C&amp;nbsp; - fdump_binary.td,&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03d0&amp;nbsp;&amp;nbsp;&amp;nbsp; 0A 09 74 61 62 6C 65 2E 63 66 64 75 6D 70 5F 75&amp;nbsp; - ..table.cfdump_u&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03e0&amp;nbsp;&amp;nbsp;&amp;nbsp; 64 66 20 74 64 2C 0A 09 74 61 62 6C 65 2E 63 66&amp;nbsp; - df.td,..table.cf&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 03f0&amp;nbsp;&amp;nbsp;&amp;nbsp; 64 75 6D 70 5F 75 64 66 62 6F 64 79 20 74 64 2C&amp;nbsp; - dump_udfbody.td,&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] isapi_write_client::jk_isapi_plugin.c (1391): Writing 7954 bytes of data to client&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] isapi_write_client::jk_isapi_plugin.c (1392): IIS7 flush enabled 0&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] isapi_write_client::jk_isapi_plugin.c (1393): writeclient write_length value 7954&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] isapi_write_client::jk_isapi_plugin.c (1413): Wrote 7954 bytes of data successfully&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=4 max=65536&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000&amp;nbsp;&amp;nbsp;&amp;nbsp; 03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00&amp;nbsp; - ................&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): received from ajp13 pos=0 len=2 max=65536&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_connection_tcp_get_message::jk_ajp_common.c (1428): 0000&amp;nbsp;&amp;nbsp;&amp;nbsp; 05 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00&amp;nbsp; - ................&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.455 2014] [2912:2664] [info] ajp_process_callback::jk_ajp_common.c (2101): current reuse count is 2 of max reuse connection 250 and total endpoint count 250&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] ajp_process_callback::jk_ajp_common.c (2105): AJP13 protocol: Reuse is OK, and current reuse count is 2&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] iis_done::jk_isapi_plugin.c (1700): Finally done with writing.&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.455 2014] [2912:2664] [debug] HttpExtensionProc::jk_isapi_plugin.c (2602): service() returned OK&lt;/p&gt;&lt;p class="de1"&gt;[Wed Sep 10 15:42:22.470 2014] [2912:2664] [debug] ajp_reset_endpoint::jk_ajp_common.c (828): (cfusion) resetting endpoint with socket 772&lt;/p&gt;&lt;p class="de2"&gt;[Wed Sep 10 15:42:22.470 2014] [2912:2664] [debug] ajp_done::jk_ajp_common.c (3218): recycling connection pool for worker cfusion and socket 772&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:4c832769-cc1c-4f90-a131-30bb85f83b47] --&gt;</description>
      <pubDate>Thu, 11 Sep 2014 09:18:17 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6720616?tstart=0#6720616</guid>
      <dc:date>2014-09-11T09:18:17Z</dc:date>
      <clearspace:dateToText>2 months 2 days ago</clearspace:dateToText>
      <clearspace:replyCount>8</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

