Page 37 of the ISJSPGuide.pdf talks a little bit about what you are trying to do. Here is one of my code snippets. Maybe it will help.
<%
String stimeDifference = null;
com.wm.data.IDataCursor idcPipeline = null;
try {
idcPipeline = webm_pipe.getCursor();
stimeDifference = com.wm.data.IDataUtil.getString(idcPipeline,"timeDifference" );
} catch (Exception e) {
// Do stuff
} finally {
if ( idcPipeline != null ) {
idcPipeline.destroy();
idcPipeline = null;
}
webm_pipe = null;
}
%>
#Integration-Server-and-ESB#webMethods#webMethods-General