Hi,
Current Orchetration has below steps.
1) Receives notification messages for changes to the Employee table. Filters notifications for an Insert operation. 2) If the notification is for an Insert operation,execute Select the last inserted record and update the Status column of the last record from “0” to “1” . This is done using Table Operation. 3) Response message from step 3 is passed to .net code.
I am trying to enhance to add below step -
4) After complting step 3, update the Status column in EMployee of the last record from “1” to “2” .
Few questions :
1) Can I generate Schemas using "Adaptar Consume Service" just for the Update with out intrepting the existing schemas & Bindng file to complete step 5 Or The update Schema's has to be in the existing generated schema's?
2) For the Update, do I need to have Request & Response ? or just Request should be enough.
3) Any prefernse in using the existing port vs new port?
I am new to the WCF Custom SQl Binding. Appreciate for the response</p>
Found this .. Basically the WCF-SQL adapter only supports a single schema per database object because it uses an internal URI to do the schema resolution. The internal URI is like "TypedProcedure/dbo/MyProc" for stored procedures and something similar to this for tables and other objects.