Kavitha,
Here is the java svc to convert float to string:
IDataCursor cursor = pipeline.getCursor();
Object i = IDataUtil.get(cursor,“iVal”);
String s = String.valueOf(i);
IDataUtil.put(cursor,“siVal”,s);
cursor.destroy();
and then after getting the string version of the float, use tokenize svc and the delimiter as “.”
hope this helps.
ramesh.
#webMethods#Integration-Server-and-ESB#Flow-and-Java-services