please who gives me a hand with the following:
I have a .asmx web service, it receives and also sends pdf files (in Byte []), since they are large I need to configure the maxReceivedMessageSize, input manages to configure it by:
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="TamañoTransferencia" maxReceivedMessageSize="10000000" />
<binding name="BasicHttpBinding_IServicios" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://servidor/Capa_03_Servicios.CServicios.svc"
binding="basicHttpBinding" bindingConfiguration="TamañoTransferencia"
contract="WebService.IServicios" name="BasicHttpBinding_IServicios" />
</client>
but as I say those are for the input, but how do I configure the size of the output files ??? Thank you in advance