我正在编写的Web服务有问题(它是asmx)。

我有这种方法:

    [WebMethod()]
    [SoapDocumentMethod(
        RequestNamespace="http://bsp.XXX.org",
        ResponseNamespace="http://bsp.XXX.org",
        ResponseElementName="PaymentResults",
        RequestElementName="GetPaymentResult",
        Action = "http://bsp.XXX.org/GetPaymentResult")]
    public PaymentResult[] GetPaymentResult(string MerchantRef)
    {
        try
        {
            if (!String.IsNullOrEmpty(MerchantRef))
            {
                return PaymentResultRepository.GetPaymentResults(MerchantRef).ToArray();
            }
            else
            {
                _errorLog.Error("MerchantRef is empty");
            }
        }
        catch (Exception ex)
        {
            _errorLog.Error("Failed to get payment details", ex);
        }
        return new PaymentResult[0];
    }
}


它是从Oracle Forms应用程序调用的。收到的SOAP请求是:

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
        xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
        xmlns:xsd="http://www.w3.org/1999/XMLSchema">
    <SOAP-ENV:Body>
        <GetPaymentResult xmlns="http://bsp.XXX.org/"
                 SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
            <MerchantRef xsi:type="xsd:string">
                 IP/58991/1
            </MerchantRef>
        </GetPaymentResult>
    </SOAP-ENV:Body>




问题在于,“ MerchantRef”在我的方法中始终是一个空字符串。有人对此有任何想法吗? SOAP请求是否错误?我是否缺少明显的东西?

最佳答案

原来问题是SOAP请求...

它不喜欢encodingStyle属性,一旦将其删除,它就可以正常工作。

即从此:

<GetPaymentResult xmlns="http://bsp.XXX.org/"
             SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">


至:

<GetPaymentResult xmlns="http://bsp.XXX.org/">

10-05 23:45