首页 文章

Webservice返回错误的内容类型响应头

提问于
浏览
0

我试图在asp.net c#应用程序中使用第三方Web服务(基于php),并且服务配置失败 . 已经尝试添加服务/ Web引用 - 所有相同的错误:

响应消息的内容类型text / html与绑定的内容类型(text / xml; charset = utf-8)不匹配 . 如果使用自定义编码器,请确保正确实现IsContentTypeSupported方法 . 响应的前402个字节是:'<?xml version =“1.0”encoding =“utf-8”?> <soap:Envelope xmlns:soap =“http://schemas.xmlsoap.org/soap/envelope/ “xmlns:xsi =”http://www.w3.org/2001/XMLSchema-instance“xmlns:xsd =”http://www.w3.org/2001/XMLSchema“> <soap:Body>; < . ..

[手动编辑响应以正确显示> <字符,否则完全有效]

对我而言,这似乎是一个非常有效的响应,我试着看看fiddler在响应头中写了什么 - Content-Type:text / html,这可能是问题的根源 - webservice看错了内容类型(text / html而不是text / xml),但如何配置我的客户端忽略/覆盖收到的内容类型?谷歌搜索没有给我什么,所以请,如果有人可以帮助 - 问题是什么? Binding \ endpoint配置是默认的basicHttpBinding / endpoint,它是由VS2010在使用Add Service Reference选项时生成的,没有任何更改 . 提前致谢 .

[的app.config]

<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup  name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0,      Culture=neutral, PublicKeyToken=b77a5c561934e089">
  <section name="Collection.ServicePlayground.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
</sectionGroup>
</configSections>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="SmsServiceSoap1" 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>
</bindings>
<client>
  <endpoint address="http://ws1.streamsms.ru/SmsService.php" binding="basicHttpBinding"
    bindingConfiguration="SmsServiceSoap1" contract="SmsService.SmsServiceSoap"
    name="SmsServiceSoap2" />
</client>
</system.serviceModel>
<applicationSettings>
<Collection.ServicePlayground.Properties.Settings>
  <setting name="Collection_ServicePlayground_WSStreamProvider_SmsService"   serializeAs="String">
    <value>http://ws1.streamsms.ru/SmsService.php</value>
  </setting>
 </Collection.ServicePlayground.Properties.Settings>
 </applicationSettings>
 </configuration>

2 回答

相关问题