<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>DevForce Community Forum : Issue saving huge data</title>
  <link>http://www.ideablade.com/forum/</link>
  <description>This is an XML content feed of; DevForce Community Forum : DevForce 2010 : Issue saving huge data</description>
  <pubDate>Mon, 13 Apr 2026 05:27:26 -700</pubDate>
  <lastBuildDate>Wed, 23 Jun 2010 18:38:41 -700</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 9.69</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.ideablade.com/forum/RSS_post_feed.asp?TID=1905</WebWizForums:feedURL>
  <image>
   <title>DevForce Community Forum</title>
   <url>http://www.ideablade.com/forum/forum_images/IdeaBlade_logo_tm.png</url>
   <link>http://www.ideablade.com/forum/</link>
  </image>
  <item>
   <title>Issue saving huge data : You are likely running into a...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=1905&amp;PID=7398#7398</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=477" rel="nofollow">ting</a><br /><strong>Subject:</strong> 1905<br /><strong>Posted:</strong> 23-Jun-2010 at 6:38pm<br /><br />You are likely running into a WCF/HTTP request size or timeout limit, which you can adjust in the .NET configuration files.<BR><BR>On the client, you&nbsp;should add a ServiceReferences.ClientConfig to the Silverlight project to provide configuration info, and on the server, modify the serviceModel settings in the&nbsp;web.config. <DIV>&nbsp;</DIV><DIV>In the Learning Resources, there is&nbsp;a sample ClientConfig in&nbsp;<strong>Deployment -&gt; Code Snippets -&gt; Sample Files for a Silverlight App deployment</strong>.</DIV><DIV>&nbsp;</DIV><DIV>In <strong>Deployment -&gt; Code Snippets -&gt; Sample Configuration Files for an N-Tier Deployment</strong> there are some server-side samples.&nbsp; See “Server app.config.default” for an example including timeouts (unfortunately there’s no web.config sample in this folder, but the serviceModel stuff is the same).&nbsp;&nbsp;Make sure to set both the sendTimeout and receiveTimeout on the client and the server.<BR><BR>There’s also another setting in system.web for large packet sizes:<BR><BR>&lt;system.web&gt;<BR>&nbsp;&nbsp; &lt;!-- HTTP RUNTIME CUSTOMIZATION<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; To customize the HTTP runtime, esp. when sending large amounts of data, uncomment this element<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; and set the appropriate attributes.&nbsp; See <a href="http://support.softartisans.com/kbview_825.aspx" target="_blank"><FONT color=#0066cc>http://support.softartisans.com/kbview_825.aspx</FONT></A><BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; and <a href="http://msdn.microsoft.com/en-us/library/e1f13641.aspx" target="_blank"><FONT color=#0066cc>http://msdn.microsoft.com/en-us/library/e1f13641.aspx</FONT></A><BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; for more information.<BR>&nbsp;&nbsp;&nbsp; &lt;httpRuntime maxRequestLength="102400"/&gt;<BR>&nbsp;&nbsp;&nbsp; --&gt;<BR>&nbsp; &lt;/system.web&gt;<BR><BR>I would recommend using the WCF Service Configuration Editor (available from the Tools menu in Visual Studio) to edit the ServiceModel stuff.</DIV><DIV>&nbsp;</DIV><DIV>You can also look up WCF system.serviceModel on the web for additional help.</DIV><DIV><BR>&nbsp;</DIV><span style="font-size:10px"><br /><br />Edited by ting - 23-Jun-2010 at 6:39pm</span>]]>
   </description>
   <pubDate>Wed, 23 Jun 2010 18:38:41 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=1905&amp;PID=7398#7398</guid>
  </item> 
  <item>
   <title>Issue saving huge data : Hi Gurus, I am new to Silverlight,...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=1905&amp;PID=7372#7372</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=824" rel="nofollow">bjmreddy</a><br /><strong>Subject:</strong> 1905<br /><strong>Posted:</strong> 22-Jun-2010 at 11:12am<br /><br />Hi Gurus,<DIV>I am new to Silverlight, currently I am having issue when executing below code @ _mgr.SaveChangesAsync , it works fine when there are about 500- 1000 rows, but fails if total records to save are more than 1000 only error I get is "NOT FOUND"</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (!_mgr.HasChanges())<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; WriteMessage("No changes to save.");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; WriteMessage("Saving ...");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; _mgr.SaveChangesAsync(<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; args =&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (args.IsCompleted)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; WriteMessage("Changes saved");</DIV><DIV>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; WriteMessage(args.Error.Message);<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; },<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; null);<BR></DIV><DIV>&nbsp;</DIV><DIV>your help in this regard is appriciated.</DIV><DIV>&nbsp;</DIV><DIV>Thanks,</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 22 Jun 2010 11:12:52 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=1905&amp;PID=7372#7372</guid>
  </item> 
 </channel>
</rss>