WFC + javascript MaxStringContentLength проблема - PullRequest
0 голосов
/ 05 февраля 2010

Я получаю доступ к службе WCF, используя код JavaScript

<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="true">
    <Services>
        <asp:ServiceReference Path="ForumService.svc" />
    </Services>
</asp:ScriptManager>

в web.config

<system.serviceModel>
    <diagnostics>
      <messageLogging logMalformedMessages="true" logMessagesAtTransportLevel="true" />
    </diagnostics>
    <serviceHostingEnvironment />
    <bindings>
      <wsHttpBinding>
        <binding name="WSHttpBinding_ITranscriptService" closeTimeout="00:10:00" openTimeout="00:10:00" receiveTimeout="00:10:00" sendTimeout="00:10:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="2147483647" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647"/>
          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/>
          <security mode="Message">
            <transport clientCredentialType="Windows" proxyCredentialType="None" realm=""/>
            <message clientCredentialType="Windows" negotiateServiceCredential="true" algorithmSuite="Default" establishSecurityContext="true"/>
          </security>
        </binding>
      </wsHttpBinding>
    </bindings>
    <client>
      <endpoint address="http://localhost:10780/TranscriptService.svc" binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_ITranscriptService" contract="TVServiceReference.ITranscriptService" name="WSHttpBinding_ITranscriptService">
        <identity>
          <dns value="localhost"/>
        </identity>
      </endpoint>
    </client>
    <behaviors>
      <endpointBehaviors>
        <behavior  name="WebTV.ForumServiceAspNetAjaxBehavior">
          <enableWebScript />
        </behavior>
      </endpointBehaviors>
      <serviceBehaviors>
        <behavior name="WebTV.TranscriptServiceBehavior" >
          <serviceMetadata httpGetEnabled="true"/>
          <serviceDebug includeExceptionDetailInFaults="true"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <services>
      <service behaviorConfiguration="WebTV.TranscriptServiceBehavior"
        name="WebTV.TranscriptService">
        <endpoint address="" binding="wsHttpBinding" contract="WebTV.ITranscriptService">
          <identity>
            <dns value="localhost" />
          </identity>
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
      </service>
      <service behaviorConfiguration="WebTV.TranscriptServiceBehavior" name="WebTV.ForumService">
        <endpoint address="" behaviorConfiguration="WebTV.ForumServiceAspNetAjaxBehavior"
          binding="webHttpBinding"    contract="WebTV.ForumService" />
      </service>
    </services>
  </system.serviceModel>

теперь проблема в том, что когда я передаю большой кусок строкового значения, я получаю исключение

Сообщение InnerException было «Произошла ошибка десериализации объекта типа System.String. Максимальная квота длины строки содержимого (8192) была превышена при чтении данных XML.

Как мне установить значение MaxStringContentLength для этого с помощью JavaScript?

Любой совет?

Спасибо -Aruna

1 Ответ

0 голосов
/ 08 февраля 2010

после нескольких часов поиска в Google я узнал, как это сделать,

необходимо связать настройки в момент инициализации файла SVC.

создать пользовательский класс,

   public class DerivedFactory : ServiceHostFactory
   {
       protected override ServiceHost CreateServiceHost
                                   (Type t, Uri[] baseAddresses)
       {
        ServiceHost host = base.CreateServiceHost(t, baseAddresses);
        WebHttpBinding binding = new WebHttpBinding();
        binding.Security.Mode = WebHttpSecurityMode.None;
        binding.Security.Transport.ClientCredentialType 
                                   = HttpClientCredentialType.None;
        binding.MaxReceivedMessageSize = Int32.MaxValue;
        binding.ReaderQuotas.MaxStringContentLength = Int32.MaxValue;
        binding.ReaderQuotas.MaxArrayLength = Int32.MaxValue;
        host.Description.Endpoints[0].Binding = binding; 
        return host;
        } 
   }

добавить заголовок файла .svc к

<%@ ServiceHost Factory="WebTV.DerivedFactory" 

Language = "C #" Debug = "true" Сервис = "WebTV.ForumService" CodeBehind = "ForumService.svc.cs"%>

. вероятно, вы захотите открыть это с помощью блокнота, потому что редактор VS переходит прямо к файлу codebehind.

Важной частью здесь является Factory = "WebTV.DerivedFactory"

удачи!

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...