The given SOAPAction http__xxxxx_xx does not match an operation

这是在客户端调用服务端接口时报出的错误,主要是客户端在调用时设置了SOAPAction,参考如下:
image.png

解决方案

在注解@WebMethod() 中加上action注解,设置上一模一样的SOAPAction即可,如下:

@WebMethod(action = "xxx")

添加后,可以重新看下服务端的wsdl文件,确认SOAPAction属性是否成功赋值。

你可能感兴趣的:(#,Soap,Web,Service,webservice)