我有这个代码而且我得到了 - SoapException未处理:没有这样的操作'字符串'。 有什么不对?如何处理这种异常?如果我把它放在try / catch块中,它对我帮助不大。
代码:
public string PaymentOperation(string amount)
{
Microsoft.Web.Services3.SoapEnvelope results = base.SendRequestResponse("PaymentOperation", amount);
return ((string)(results.GetBodyObject(typeof(string), this.SoapServiceAttribute.TargetNamespace)));
}