I want to subscribe to custom table INSERT actions (I'd even be happy with any custom table action). All I see for predefined objects is CUSTOM_TABLE_ITEM_PREFIX. I've attempted to initialize the subscription this way:
ObjectIntegrationSubscription ois = new ObjectIntegrationSubscription(ConnectorName, TaskProcessTypeEnum.AsyncSnapshot, TaskTypeEnum.All, "MySite", "customtableitem", "MyTable.UserSync");
SubscribeTo(ois);
AND this way:
ObjectIntegrationSubscription ois = new ObjectIntegrationSubscription(ConnectorName, TaskProcessTypeEnum.AsyncSnapshot, TaskTypeEnum.All, "MySite", "customtableitem.mytable.usersync", "MyTable.UserSync");
SubscribeTo(ois);
AND this way:
SubscribeToObjects(TaskProcessTypeEnum.AsyncSnapshot, PredefinedObjectType.CUSTOM_TABLE_ITEM_PREFIX);
And the ProcessInternalTaskAsync() method is never fired off. What am I missing?