Im using the import tester and ive run into an issue where my xml is too large for the input screen. Its not a lot of products, only 43, but the base64 encoded images makes the buffer very large. Anyway to increase this buffer?
Im using the import tester and ive run into an issue where my xml is too large for the input screen. Its not a lot of products, only 43, but the base64 encoded images makes the buffer very large. Anyway to increase this buffer?
Yep...and I have to do it every time I have to re-download the tool here locally. Just open the solution file that comes with the import tool, and in Form1.Designer.cs change the MaxLength value of the InputXml
Original:New:Code:this.InputXml.MaxLength = 1000000;Then recompile the solution and grab the WindowsApplication1.exe file from the bin/debug/ folderCode:this.InputXml.MaxLength = 1000000000;
<a href="http://www.aspdotnetstorefront.com">Shopping Cart Software</a>
Perfect George ... worked perfectly!
Thanks again for the rapid response.