sx1911,
Regarding the first error you were getting:
cannot resolve symbol
symbol : method doInvoke (java.lang.String,java.lang.String)
location: class com.wm.app.b2b.server.Service
Service.doInvoke(“PATH:FLOWSERVICE”, “LISTOFVALUES”);
You got this error because the doInvoke method does not take two strings as input. There are different signatures for the doInvoke service, some of which take an NSName and some of which do not. If you don’t want to create an NSName object before calling doInvoke, then just use this signature of the method:
doInvoke(java.lang.String ifc, java.lang.String svc, IData input)
ifc = the path/folder name
svc = the service name
input = the pipeline object you want to give to the service
See the Java API Reference for more details.
#Flow-and-Java-services#Integration-Server-and-ESB#webMethods