I'm using apache axis with Java webservices (.jws files) stored in the %tomcat%/axis directory.
I'm creating a simple java webservice, where a server just sits keeps a bunch text in an arraylist.
The client connects, calls a method passing with it a string, and the server stores that string in its arraylist.
The server also has a method to see if it is storing a particular string ( it checks to see if the client already passed in that string)
My question is, everytime the client sends a new string, I think the server is disregarding previous stored information, but still storing the new string.
I'm not sure how this is possible. Everytime a client calls a method on a java webservice, does AXIS recompile the .jws file?