I'm using wso2 micro integrator and the integration studio. I'm searching for a way to call a procedure that has multiple IN and OUT parameters in ESB project.
let's say we have this procedure in our database.
CREATE OR REPLACE PROCEDURE SAY_HELLO(FULLNAME IN VARCHAR2, RESPONSE OUT VARCHAR2)
AS
BEGIN
RESPONSE := 'Hello ' || FULLNAME;
END;
I want a way to be able to call this procedure using a WSO2 mediator (dblookup or dbreport) and store each OUT argument in a dedicated property.