Hi All, I am trying to do some inserts in the database using Biztalk. I have written a stored procedure to handle that.
Ex: Create proc proc_SetTable as
@blah varchar
@blahblah int
begin
insert into <table name> values(@blah,@blahblah)
end
When I generated the meta data for this stored procedure using the "Add generated items" wizard, I was able to see Request and Response nodes. I am able to see the node with the name "Success" under Response node. This is cool. However, I am not able to catch this value inside the orchestration. I am trying to map the response schema with another schema for further process. I am expecting the response message as <Success>0</Success>. Correct me If I am wrong. This is not happening. Any help will be appreciated.