I
> have been modifying our webservice api and we're still in the
> a&d phase of
> this project....so whenever I modify my "application" do I
> need to create a
> new jar and deploy it?
That or put the directory hierachy your classes compile to in a lib directory and reference the lib directory in your classpath. For example for class com.mycompany.myclass create com\mycompany\ and put the .class files for myclass in there. For frequently recompiling things, that can be more convenient than regenerating the .jar everytime you make a change.
- Jasen.