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

📄 httpsclient.java

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

public class HttpsClient {
    public static void main(String [] args) throws Exception {
        String endpoint = "https://localhost:8443/axis/services/HelloWorld";//注意区别在这里!https!
        Service  service = new Service();  
        Call     call    = (Call) service.createCall();
        call.setTargetEndpointAddress( new java.net.URL(endpoint) );
        call.setOperationName( "sayHello" );
        String res = (String) call.invoke( new Object[] {} );
        System.out.println( res );
    }
}

⌨️ 快捷键说明

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