<Name>Books</Name> </Entity> the return I get is <?xml version="1.0" encoding="utf-8"?> <AspDotNetStorefrontImportResult Version="" DateTime="10/13/2009 1:13:45 PM">" /> WSI question
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 question

  1. #1
    virtualtap is offline Senior Member
    Join Date
    May 2007
    Posts
    171

    Default WSI question

    I am trying to do the test import defined in the WSI documentation

    <Entity EntityType="Category " Action="Add">
    <Name>Books</Name>
    </Entity>

    the return I get is

    <?xml version="1.0" encoding="utf-8"?>
    <AspDotNetStorefrontImportResult Version="" DateTime="10/13/2009 1:13:45 PM">
    <Error Message="Missing AspDotNetStorefrontImport Root Element!!" />
    </AspDotNetStorefrontImportResult>

    I cant figure out what I am doing wrong. Please help me out here. Thanks
    MSX

  2. #2
    John Reasons is offline Senior Member
    Join Date
    Oct 2009
    Posts
    119

    Default

    Try it like this

    <AspDotNetStorefrontImport>

    <Entity EntityType="Category " Action="Add">
    <Name>Books</Name>
    </Entity>

    </AspDotNetStorefrontImport>


    You need to have

    <AspDotNetStorefrontImport>
    </AspDotNetStorefrontImport>

  3. #3
    virtualtap is offline Senior Member
    Join Date
    May 2007
    Posts
    171

    Default

    Perfect
    Thanks so Much
    MSX