JDK+TOMCAT+AXIS

JDK+TOMCAT+AXIS

各位高手,我配置好后,开始客户端测试,以下是客户端程序,可是为什么在JAVAC的时候,老说那些包不存在呢,在AXIS中明明有啊,我也将那些.JAR文件加到JAVA\LIB中了,可就是编译不了,帮帮忙啊,急死了^^^^^^^
package   src.demo;
      import   org.apache.axis.client.Call;
      import   org.apache.axis.client.Service;
      import   org.apache.axis.encoding.XMLType;
      import   org.apache.axis.utils.Options;
      import   javax.xml.rpc.ParameterMode;
          public   class   QuoteClient    
      {
          public   static   void   main(String   []   args)   throws   Exception  
        {
          String   host   =   "http://localhost: ";
          String   servicepath   =   "/axis/Quote.jws ";
          Options   options   =   new   Options(args);
          int   port   =   options.getPort();
          String   endpoint   =   host   +   port   +   servicepath;
          String   method   =   null;
          args   =   options.getRemainingArgs();
        if   (args   ==   null   ||   (!((method   =   args[0])).equals( "quote ")&&   !method.equals( "count ")))  
            {
              System.err.println( "Usage: ");
              System.err.println( "   QuoteClient   count ");
              System.err.println( "   QuoteClient   quote   name ");
              return;
            }  
          String   op1   =   null;
          if   (method.equals( "quote "))  
          {
              op1   =   args[1];
          }
          String   ret   =   null;
          Service   service   =   new   Service();
          Call   call   =   (Call)   service.createCall();
          call.setTargetEndpointAddress(new   java.net.URL   (endpoint));
          call.setOperationName(method);
          if   (op1   !=   null)  
            {
              call.addParameter( "op1 ",   XMLType.XSD_STRING,   ParameterMode.IN);
              call.setReturnType(XMLType.XSD_STRING);
              ret   =   (String)   call.invoke(new   Object   []   {op1});
            }  
                    else  
              {
              call.setReturnType(XMLType.XSD_INT);
              ret   =   ((Integer)   call.invoke((Object[])null)).toString();
              }
          System.out.println( "Got   result   :   "   +   ret);
      }
  }


PATH设置对了吗?
设置了,呵呵,不是那的问题,我搞定了!不过还是谢谢你的回复!
呵~