.net – Silverlight WCF异常:期望应用程序 soap xml,接收文本 xml

.net – Silverlight WCF异常:期望应用程序 soap xml,接收文本 xml,第1张

概述我有一个Silverlight应用程序,我想在其中调用一个WCF服务.当调用服务时,我会从服务器收到以下响应: 415 Cannot process the message because the content type ‘text/xml; charset=utf-8’ was not the expected type ‘application/soap+xml; charset=utf-8 我有一个Silverlight应用程序,我想在其中调用一个WCF服务.当调用服务时,我会从服务器收到以下响应:

415 Cannot process the message because the content type ‘text/xml; charset=utf-8’ was not the expected type ‘application/soap+xml; charset=utf-8

有没有人经历过这个问题?有谁知道哪些配置设置需要调整?任何关于如何解决这个问题的信息将不胜感激.

解决方法 那么你可以尝试在VS2008中使用“Silverlight启用的WCF服务”模板,并比较差异?我希望你需要使用basichttpBinding,并且使用更奇特的东西.

对于信息,这里是默认Silverlight / WCF服务的web.config部分:

<system.serviceModel>  <behaviors>   <serviceBehaviors>    <behavior name="MySite.Service1Behavior">     <serviceMetadata httpGetEnabled="true" />     <serviceDeBUG includeExceptionDetailinFaults="false" />    </behavior>   </serviceBehaviors>  </behaviors>  <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />  <services>   <service behaviorConfiguration="MySite.Service1Behavior"       name="MySite.Service1">    <endpoint address="" binding="basichttpBinding"       contract="MySite.Service1" />    <endpoint address="mex" binding="mexhttpBinding"       contract="IMetadataExchange" />   </service>  </services> </system.serviceModel>
总结

以上是内存溢出为你收集整理的.net – Silverlight WCF异常期望应用程序/ soap xml,接收文本/ xml全部内容,希望文章能够帮你解决.net – Silverlight WCF异常:期望应用程序/ soap xml,接收文本/ xml所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1003537.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存