How to call an Oracle procedure w/ OUT parameter in WSO2ESB?
问题 versions: - WSO2 4.6.0 - Oracle 11g I Have this procedure in an Oracle DB: PROCEDURE SEARCHCONTRACT ( CONTRACTNUM IN OKC_K_HEADERS_B.CONTRACT_NUMBER%TYPE , cur_out IN OUT RefCursor) .... The procedure is working fine! Note that cur_out IN OUT RefCursor ! I have no clue on how to handle that parameter in a DBLookup mediator! This mediator does not have any place to inform whether each parameter is "IN" or "OUT" and I'm not sure if setting the direction (IN/OUT) would be enough. Thanks in