5

尝试使用 C#.net 控制台应用程序调用 SAP PI Web 服务时,我收到以下错误消息:

The HTTP request is unauthorized with client authentication scheme 'Basic'. The authentication header received from the server was 'Basic realm="XISOAPApps"'.m="XISOAPApps"'.

我的自定义绑定如下所示:

<customBinding>  
        <binding name="CustomHttpTransportBinding">  
          <textMessageEncoding maxReadPoolSize="64" maxWritePoolSize="16"  
              messageVersion="Soap11" writeEncoding="utf-8">  
            <readerQuotas maxDepth="10000000" maxStringContentLength="10000000"  
                maxArrayLength="67108864" maxBytesPerRead="65536" maxNameTableCharCount="100000" />  
          </textMessageEncoding>  
          <httpTransport authenticationScheme="Basic" bypassProxyOnLocal="false"  
              hostNameComparisonMode="StrongWildcard" keepAliveEnabled="false"  
              proxyAuthenticationScheme="Basic" realm="XISOAPApps" useDefaultWebProxy="true" />  
        </binding>  
      </customBinding>  

如果我在上面做错了什么,有人可以纠正我吗?谢谢你。

4

2 回答 2

9

具有基本身份验证的 SAP PI Web 服务:

      <basicHttpBinding>
        <binding ...>
          <security mode="TransportCredentialOnly">
            <transport clientCredentialType="Basic" />
          </security>
        </binding>
      </basicHttpBinding>
于 2013-02-14T22:15:34.687 回答
0

验证您的 SAP Web 服务凭据是否正确且未被锁定。我刚遇到这个错误,我让我的 SAP PI 管理员验证 SAP 服务凭据,结果发现它们被锁定了。一旦她为我解锁了 SAP 凭据,一切正常。

于 2016-04-22T16:42:06.357 回答