Pankaj,
This is a java service which converts the integer to string.
input for the service should be iVal(Object and set the java wrapper type to integer under the properties) and output should be siVal(string)
IDataCursor cursor = pipeline.getCursor();
int i = IDataUtil.getInt(cursor,“iVal”,0);
String s = String.valueOf(i);
IDataUtil.put(cursor,“siVal”,s);
cursor.destroy();
hope this helps.
ramesh.
#webMethods#Flow-and-Java-services#Integration-Server-and-ESB