JAVA连.net的webservice调试

JAVA连.net的webservice调试

用java连.net的ws,刚开始报告soapaction异常,在java里设置了以后,他那边说我传递过去的参数为空,郁闷了很久,最后查到是soap格式不一致。于是他那边要设置

[WebMethod]
[SoapDocumentMethod(
Action
= "" ,
Use
= SoapBindingUse.Encoded, 
ParameterStyle
= SoapParameterStyle.Wrapped, 
RequestNamespace
= " xxx "
ResponseNamespace
= " xxx "
)
]
[
return : SoapElement( " return " )]
public   string  xxxInterface(..)
{}

最后算是解决了。

你可能感兴趣的:(JAVA连.net的webservice调试)