it's posible to make this scenario with bztlk rfid API,
READER 1
-> GPI_1
-> GPI_2
-> GPI_3
then
Process X:
Binds
LogicalDev 1 binded to GPI_1 & GPI_2
LogicalDev 2 binded to GPI_3
I know it's posible with antennas sources, but when i'm trying with GPIO, biztalk throw an exception, "one of the antenna's specification... does not exist....", its seem thats is only posible to bind antennas to logical device.
i'm using this code.
// Bztlk bind device components
ProcessBinding processBinding = new ProcessBinding();
processBinding.DeviceBindings["logicalDevice"] = new DeviceBinding();
processBinding.DeviceBindings["logicalDevice"].SourceBindingList.Add(new SourceBinding("Reader_1", "GPI_1"));
BindingManagerProxy bmp = new BindingManagerProxy();
bmp.SaveBinding("procName", processBinding);
the code execute fine, without erros, but when i check the binding in RFID manager the bindings its there, when I click in the binding RFID MANAGER throw an exception of antenna's invalid specification.
thnx.