我正在使用Spring-WS将项目Web服务C#转换为Java。 与webservice有1个参数。我转换并工作正常。 但是WebMethod有2个参数。我不知道如何配置Spring-WS的端点
代码C#
[WebMethod]--1 param
public string WSProcess(string request)
{
return "1";
}
代码经过Java转换的工作正常
@PayloadRoot(namespace = NAMESPACE_URI, localPart = "WSProcessRequest")
@ResponsePayload
public JAXBElement<String> WSProcess(@RequestPayload JAXBElement<String> request) {
return new JAXBElement<String>(new QName("https://www.customs.gov.vn/soap", "WSProcessResponse"), String.class, null, "test");
}
我不知道如何使用WebMethod配置有2个参数
[WebMethod]// 2 param
public string WSProcess(string publicKey, string msg)
{
return "1";
}
请帮助我!