Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 3 of 3

Thread: WSI Import Tool

  1. #1
    ssgumby is offline Senior Member
    Join Date
    Feb 2009
    Posts
    683

    Default WSI Import Tool

    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?

  2. #2
    George the Great is offline Senior Member
    Join Date
    Nov 2006
    Location
    Cleveland, OH
    Posts
    1,792

    Default

    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:
    Code:
    this.InputXml.MaxLength = 1000000;
    New:
    Code:
    this.InputXml.MaxLength = 1000000000;
    Then recompile the solution and grab the WindowsApplication1.exe file from the bin/debug/ folder
    <a href="http://www.aspdotnetstorefront.com">Shopping Cart Software</a>

  3. #3
    ssgumby is offline Senior Member
    Join Date
    Feb 2009
    Posts
    683

    Default

    Perfect George ... worked perfectly!

    Thanks again for the rapid response.