Hello, i would like to know if anyone knows, how to call a java service from itself
(like a recursion of a method), i try in several way but it didn’t work. This is the service, it is simple.
IDataCursor pipelineCursor = pipeline.getCursor();
Integer cant = (Integer)IDataUtil.get( pipelineCursor, “entrada” );
IDataUtil.put(pipelineCursor, “salida”, cant);
pipelineCursor.destroy();
the idea is to call this java service, from the same java service. Thank you.
#Integration-Server-and-ESB#webMethods#Flow-and-Java-services