import org.apache.axis.client.Call;//此处出现提示:
//multiple ers in this line
//-the type xml.namespace.QName can not be resolved .it is indirectly referenced from    required .class files
//-30 changed linesimport org.apache.axis.client.Service;
import javax.xml.namespace.QName;public class TestClient
{
   public static void main(String [] args) {
       try {
           String endpoint = 
                    "http://nagoya.apache.org:5049/axis/services/echo";
           Service  service = new Service();
           Call     call    = (Call) service.createCall();           call.setTargetEndpointAddress( new java.net.URL(endpoint) );
           call.setOperationName(new QName("http://soapinterop.org/", "echoString") );           // Call to addParameter/setReturnType as described in user-guide.html
           //call.addParameter("testParam",
           //                  org.apache.axis.Constants.XSD_STRING,
           //                  javax.xml.rpc.ParameterMode.IN);
           //call.setReturnType(org.apache.axis.Constants.XSD_STRING);           String ret = (String) call.invoke( new Object[] { "Hello!" } );           System.out.println("Sent 'Hello!', got '" + ret + "'");
       } catch (Exception e) {
           System.err.println(e.toString());
       }
   }
}
程序是AXIS的例子,我用eclipse,

解决方案 »

  1.   

    举个例子吧,你的class需要import class A, class A 需要import class B, 但是你写的class 不需要直接import class B.这是你可能没有把class B 加到classpath中,就会出这种错误
      

  2.   

    上面的问题解决了,现在运行这个程序却出现了新的问题:
    log4j:WARN No appenders could be found for logger (org.apache.axis.i18n.ProjectResourceBundle).
    log4j:WARN Please initialize the log4j system properly.这是什么错误?怎么解决,谢谢
      

  3.   

    log4j:WARN No appenders could be found for logger (org.apache.axis.i18n.ProjectResourceBundle).
    log4j:WARN Please initialize the log4j system properly.没人碰到过这种错误么?