Hey guys, I'm relatively new to ASPDNSF.

We are pushing updates of our products through the WSI.

All of our item categorization lives on our website only however certain "sections" and "departments" definitions are controlled via our inventory system.

One of our mapping nodes may look like the following:

<Mappings AutoCleanup="false">
<Entity EntityType="Manufacturer" Name="PURE PLEASURE RECORDS" XPath="PURE PLEASURE RECORDS" />
<Entity EntityType="Genre" XPath="Rock&amp;#47Pop" />
<Entity EntityType="Genre" XPath="Blues" />
</Mappings>

Because our categories were getting wiped out for each product on update when AutoCleanup="true" was set, we had to set the attribute to be AutoCleanup="false".

The question I have now is, if we decide to remove it from the above Genre "Blues" and send the following XML:

<Mappings AutoCleanup="false">
<Entity EntityType="Manufacturer" Name="PURE PLEASURE RECORDS" XPath="PURE PLEASURE RECORDS" />
<Entity EntityType="Genre" XPath="Rock&amp;#47Pop" />
</Mappings>

It will not remove the mapping for Blues because AutoCleanup is false. Is there a way I can explicitly remove the one product from the one mapping?

I saw the answer at this page:
http://forums.aspdotnetstorefront.co...t%29-questions

But that appears it would clear all product mappings to the "Blues" Genre, which is not what I want.

Any help would be appreciated.