.Net クライアント アプリケーションでサービス参照を介してサービスにアクセスしようとしています。サービスメソッドにアクセスすると、次のエラーが発生します。
サービス メソッドへのアクセス中にキャッチされた例外
System.Xml.XmlException がキャッチされました Message=End element 'Body' from namespace 'http://schemas.xmlsoap.org/soap/envelope/' が予期されました。名前空間から要素「ns:updateStatusAsReadResponse」が見つかりました
私の app.config は次のようになります。
<bindings>
<basicHttpBinding>
<binding name="documentproxySoap11Binding" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
useDefaultWebProxy="true">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
<customBinding>
<binding name="documentproxySoap12Binding">
<textMessageEncoding maxReadPoolSize="64" maxWritePoolSize="16"
messageVersion="Soap12" writeEncoding="utf-8">
<readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
maxBytesPerRead="4096" maxNameTableCharCount="16384" />
</textMessageEncoding>
<security authenticationMode="MutualCertificate" >
</security>
<httpTransport manualAddressing="false" maxBufferPoolSize="524288"
maxReceivedMessageSize="65536" allowCookies="false" authenticationScheme="Anonymous"
bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
keepAliveEnabled="true" maxBufferSize="65536" proxyAuthenticationScheme="Anonymous"
realm="" transferMode="Buffered" unsafeConnectionNtlmAuthentication="false"
useDefaultWebProxy="true" />
</binding>
</customeBinding>
<client>
<endpoint address="http://xxx.documentproxyHttpSoap11Endpoint/"
binding="basicHttpBinding" bindingConfiguration="documentproxySoap11Binding"
contract="documentProxy.documentproxyPortType" name="documentproxyHttpSoap11Endpoint" />
</client>