Topic by Shiloh Madsen
Been working trying to do my first batch request and I'm running into all sorts of trouble. My most recent headache seems to be the following from the example:
RNObject[] createContact = new RNObject[] { rnContact };
createMsg.RNObjects = createContact;
createItem.Item = createMsg;
createItem.ItemElementName = ItemChoiceType.CreateMsg;
The last line has not one but two attribute not found errors. First, ItemElementName does not seem to be an attribute of BatchRequestItem, and second, CreateMsg is not an attribute of ItemChoiceType.
Has anyone made batching work in .net whod be so kind as to share some working code?