WSE 3.0 Webservice中的SoapException

时间:2010-12-28 12:57:48

标签: c# soap webservice-client wse3.0

我有这个代码而且我得到了 - 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)));     
    }

0 个答案:

没有答案