Hi Fernando,
thanks thanks very much for your reply!
I just saved the pipeline to a file and I can see the correct value of my insert command:
<value name="COD_NAVE">AO</value>
But when I try to use them in my java service (java service is the only service of my flow) I recive a null value. This is the java code to retrieve value from pipeline:
// pipeline
IDataCursor pipelineCursor = pipeline.getCursor();
String COD_NAVE = IDataUtil.getString( pipelineCursor, "COD_NAVE" );
pipelineCursor.destroy();
// business logic
String OUTPUT = "Inserito il codice nave: " + COD_NAVE;
System.out.println(OUTPUT);
// pipeline
IDataCursor pipelineCursor_1 = pipeline.getCursor();
IDataUtil.put( pipelineCursor_1, "OUTPUT", OUTPUT );
pipelineCursor_1.destroy();
Why???
I forgot any steps???
#Integration-Server-and-ESB#webMethods#Adapters-and-E-Standards