<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
	<title>jQuery Grid Plugin - jqGrid - Topic: Timeout issue?</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/timeout-issue</link>
	<description><![CDATA[Grid plugin]]></description>
	<generator>Simple:Press Version 5.7.5.3</generator>
	<atom:link href="http://www.trirand.com/blog/?page_id=393/help/timeout-issue/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>tony on Timeout issue?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/timeout-issue#p16672</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/timeout-issue#p16672</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>The clear test if this is a jqGrid issue is to try without using jqGrid</p>
</p>
<p>$("#mybutton").click(function(){</p>
<p>$.ajax({</p>
<p>....</p>
<p>});</p>
<p>});</p>
</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 26 Apr 2010 12:49:24 +0300</pubDate>
        </item>
        <item>
        	<title>FusionGuy on Timeout issue?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/timeout-issue#p16563</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/timeout-issue#p16563</guid>
        	        	<description><![CDATA[<blockquote>
<p>tony said:</p>
<p>Hello,</p>
<p>I think that this is not related to jqGrid, but rather to your server side code.</p>
<p>Regards</p>
<p>Tony</p>
</blockquote>
<hr />
<p>This was my initial assessment as well, however my server side code is definitely returning the results.&#160; I believe the JSON string is too large to be parsed.&#160; Right now I get an error back from the Ajax call with XMLHttpRequest status code of 12152.</p>
]]></description>
        	        	<pubDate>Tue, 20 Apr 2010 16:08:07 +0300</pubDate>
        </item>
        <item>
        	<title>tony on Timeout issue?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/timeout-issue#p16518</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/timeout-issue#p16518</guid>
        	        	<description><![CDATA[<p>Hello,</p>
<p>I think that this is not related to jqGrid, but rather to your server side code.</p>
<p>Regards</p>
<p>Tony</p>
]]></description>
        	        	<pubDate>Mon, 19 Apr 2010 13:16:24 +0300</pubDate>
        </item>
        <item>
        	<title>FusionGuy on Timeout issue?</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/timeout-issue#p16440</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/timeout-issue#p16440</guid>
        	        	<description><![CDATA[<p>I have the following code which gets a JSON result set back from a WCF service for exporting to Excel.&#160; Any result sets that are larger than 2000 records appears to just timeout, even though I have specified a lofty timeout period for the request.</p>
<p>.navButtonAdd(&#39;#participationPager&#39;, {<br />&#160;&#160;&#160; &#160;caption: &#39;Export&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; title: &#39;Export to Excel&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; buttonicon: &#39;ui-icon-transferthick-e-w&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; onClickButton: function() {<br />&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160; &#160;$.ajax({<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; type: &#39;GET&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; url: &#39;services/TPServices.svc/GetAdvancedSearchTpResults&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; data: excelParticipationCriteria,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; timeout: 5000000,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; success: function(data) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; exportGridDataToExcel("#participationList", data);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; })<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p>
<p>I tried putting the following in my web.config, but it did not have any affect:</p>
<p>&#160; &#60;system.web.extensions&#62;<br />&#160;&#160;&#160; &#60;scripting&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;webServices&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#60;jsonSerialization maxJsonLength="500000"&#62;&#60;/jsonSerialization&#62;<br />&#160;&#160;&#160;&#160;&#160; &#60;/webServices&#62;<br />&#160;&#160;&#160; &#60;/scripting&#62;<br />&#160; &#60;/system.web.extensions&#62;<br />&#60;/configuration&#62;</p>
</p>
<p>Does anyone have any suggestions?</p>
]]></description>
        	        	<pubDate>Thu, 15 Apr 2010 20:00:29 +0300</pubDate>
        </item>
</channel>
</rss>