webService —— soap

Posted motivated_Dou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webService —— soap相关的知识,希望对你有一定的参考价值。

package soupTest;

import javax.jws.WebMethod;
import javax.jws.WebService;
import javax.xml.ws.Endpoint;

@WebService
public class Main {
	
	public static void main(String[] args) {
		System.out.println("server is running");
		String address = "http://localhost:9000/Main";
		Object implementor = new Main();
		Endpoint.publish(address, implementor);
		
	}
	@WebMethod
	public String sayHello(String str) {
		
		System.out.println("get message...");
		String result = "hello" + str;
		return result;
	}
}

 

以上是关于webService —— soap的主要内容,如果未能解决你的问题,请参考以下文章

webservice客户端如何送<soap:header>信息

Node.js 使用 soap 模块请求 WebService 服务接口

如何在ios中向soap webservice发送请求?

python实现建立soap通信(调用及测试webservice接口)

java使用POST发送soap报文请求webservice返回500错误解析

java WebService接口采用SOAP协议的调用