Hello westisland,
We too have an Oracle store proc that returns a reference cursor and we use it in a JDBC adapter service. The adapter service is a storedProcedureWithSignature. We explicitly close the cursor inside the Oracle proc. See the pseudo code below for an example. I hope this helps.
create or replace PACKAGE MYPACKAGE AS
type refcur is ref cursor;
procedure get_clue_list( p_clueCursor out refcur);
END MYPACKAGE;
create or replace PACKAGE BODY MYPACKAGE AS
procedure get_clue_list( p_clueCursor out refcur) AS
BEGIN
open p_clueCursor for select field1, field2 from table1;
return;
CLOSE p_clueCursor;
END get_clue_list;
END MYPACKAGE;
#webMethods#Integration-Server-and-ESB#Adapters-and-E-Standards