On Integration Server, when writing Java services using external libraries (JARs), sometimes this error is thrown:
com.wm.app.b2b.server.ServiceException: [ISS.0026.9106] No method ... in class ...
This error means that something went wrong during compilation but Integration Server is not willing to share any information with you on this particular topic. To find out what is actually going on:
Go to {SAG_HOME}/IntegrationServer/instances/default/bin
Run sh jcode.sh makeall <PackageName> (which is sort of what IS is doing when compiling)
On your terminal you’ll get a proper error stack and explanation. Usually this is a missing class or similar.
My experiences with this have all turned out to be item 3 – JAR files that conflict in some way.
That said, we rarely do this so this data point may not be helpful in terms of what to focus upon. Only have a couple of 3rd party JARs and we never create our own (rarely have a need).