⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testclient.java

📁 axis入门文档、代码 配置好jdk和tomcat
💻 JAVA
字号:
package anni;
import org.apache.axis.client.Call;
import org.apache.axis.client.Service;
import javax.xml.namespace.QName;

public class TestClient {
   public static void main(String [] args) {
       try {
           String endpoint = "http://localhost:8080/axis/HelloWorld.jws";
           Service service = new Service();
           Call    call    = (Call) service.createCall();
           call.setTargetEndpointAddress(new java.net.URL(endpoint));           
           call.setOperationName(new QName("sayHello"));
           String ret = (String) call.invoke(new Object[]{});
           System.out.println(" got '" + ret + "'");
       } catch (Exception e) {
           System.err.println(e.toString());
       }
   }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -