Hi Vijay,
Java services in webMethods are coded using IData.
first create a Pipeline Cursor
since you have to retrieve the fields you desire form the pipeline.
IDataCursor pipelineCursor = pipeline.getCursor();
now…
IDataUtil.getString( pipelineCursor , “StirngName”);
this will retrieve the field StringName from Pipeline.
now you can do all the manipulation with this field.
and
if you want the field to be output of the java service you have to use.
IDataUtil.put(pipelineCursor , “String1Name”);
this String1Name will be the output of the java service.
and now that you have used the pipeline cursor you should destroy it.
pipelineCursor .destroy();
if you are facing specific problem… mention it…
i will try to solve it .
have a good time bye
#Integration-Server-and-ESB#webMethods