You just need to make sure the directory where your .class file is located is in your classpath.
-----Original Message----- From: Russell Cecala [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 11:56 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: where do I put my service's .class files? Hi, I feel like I am asking a really stupid question, but where do I put my .class files if they are to be used as services? example) I have this file HelloServer.java in the directory C:\whatever\hello package hello; public class HelloServer { public String sayHelloTo(String name) { System.out.println("sayHelloTo(String name)"); return "Hello " + name + ", How are you doing?"; } } I compile it and wind up with: HelloServer.class So what do I do now? Do I copy HelloServer.class to E:\soap-2_0\webapps ... or ... do I copy HelloServer.class to E:\tomcat\lib ... or ... of do I change my tomcat.bat start up script to include C:\whatever in my server's CLASSPATH and then "deploy" this service? As you can see I am quite confused :) Please help! Thanks __________________________________________________________________ Your favorite stores, helpful shopping tools and great gift ideas. Experience the convenience of buying online with Shop@Netscape! http://shopnow.netscape.com/ Get your own FREE, personal Netscape Mail account today at http://webmail.netscape.com/
