o seguinte erro aparece na resposta do serviço:
"The maximum message size quota for incoming messages (65536) has been exceeded. To increase the quota, use the MaxReceivedMessageSize property on the appropriate binding element."
pesquisei e vi que precisa modificar as configurações no web.config.. mas alterei e nao deu certo
<bindings>
<basicHttpBinding>
<binding name="basicHttp" allowCookies="true"
maxReceivedMessageSize="200000000"
maxBufferSize="200000000"
maxBufferPoolSize="200000000">
<readerQuotas maxDepth="32"
maxArrayLength="2000000000"
maxStringContentLength="2000000000"/>
</binding>
</basicHttpBinding>
</bindings>
alguma sugestão?