过去几天我一直在围绕设置流媒体服务,每次我回到任务时我都会遇到400 Bad Request的同一墙。我在网上搜索了一些帖子,看起来这是一个经常出现的问题,但每种情况都不同。下面是我的绑定设置的当前状态 - 我觉得这必须是我忽略的小东西。
来自WCF分析器的信息:
这让我相信,无论我设置的是什么,都没有应用于服务,因此抛出Bad Request错误,因为它使用了我的流超过的~64kb默认值。
<!-- Services Config -->
<system.web>
<httpRuntime maxRequestLength="2097150" executionTimeout="7200"/>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="StreamingService" maxReceivedMessageSize="2147483647" maxBufferSize="2147483647" transferMode="Streamed" >
<readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>
<security mode="None">
</security>
</binding>
</basicHttpBinding>
</bindings>
<services>
<service name="StreamingService" behaviorConfiguration="StreamingServiceBehavior">
<endpoint address="http://localhost:50577/StreamingContent.svc"
binding="basicHttpBinding" bindingConfiguration="StreamingService"
contract="IStreamingContent" name="BasicHttpBinding_IStreamingContent" />
</service>
</services>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<!-- Web Server Config -->
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IStreamingContent" closeTimeout="00:01:00"
openTimeout="00:01:00" receiveTimeout="00:01:00" sendTimeout="00:01:00"
allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647"
messageEncoding="Text" textEncoding="utf-8" transferMode="Streamed"
useDefaultWebProxy="true">
<readerQuotas maxDepth="128" maxStringContentLength="2147483647" maxArrayLength="2147483647"
maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
<security mode="None">
<transport clientCredentialType="None" proxyCredentialType="None"
realm="" />
<message clientCredentialType="UserName" algorithmSuite="Default" />
</security>
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:50577/StreamingService.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IStreamingService"
contract="StreamingService.IStreamingService" name="BasicHttpBinding_IStreamingService" />
</client>
任何新鲜的观点肯定会有所帮助。
编辑:我在采取以下建议后更新了上述配置,但我仍然在未找到匹配标记的探查器中遇到相同的问题,只有这次我相信,我的设置是正确的.....显然不是因为它现在可以工作了,不是吗,嗯?
思想?
答案 0 :(得分:3)
我认为您遇到问题的原因之一是您在服务器端使用<client>
部分配置端点,实际上您应该使用<services>
部分来配置服务端点。请在此处查看用于流式传输的服务器配置文件的示例http://www.c-sharpcorner.com/uploadfile/dhananjaycoder/streaming-in-wcf/
请小心配置文件,这是WCF中大多数问题的地方
答案 1 :(得分:0)
为未来的读者。
我得到了#34;没有找到匹配的标签。添加了默认端点。&#34;
我的xml很好。 (在我花了一个小时试图找到格式错误的xml之后)。
我的问题是我改变了具体服务类的命名空间。
关键是这个。
在.svc文件中,有一些标记
<%@ ServiceHost Language="C#" Debug="true" Service="MyCompany.MyNamespace.MyConcreteService" %>
这必须是.cs类的完全限定名称。
和
您的服务模型xml也必须具有完全限定的名称。
<service name="MyCompany.MyNamespace.MyConcreteService"
behaviorConfiguration="MyServiceBehavior"
>
<!--
Whole bunch of other stuff not shown here
-->
</service>
以上将模仿班级
namespace MyCompany.MyNamespace
{
public class MyConcreteService : IMyService
{
}
}
确保您拥有CORRECT完全限定名称并且正确地将它们复制到.svc文件并正确复制到xml。
我从这里得到了答案:
WCF可能无法识别该元素。 &#34;名称&#34;的价值元素中的属性必须是服务类的完全限定名称 - 因为您使用IIS来托管服务,所以它必须与&#34; Service&#34;相同。 .svc文件中@ServiceHost标记的属性。