Хай!
Передаю файлы с помощью WSE 3.0 Message Transmission Optimization Mechanism (MTOM) который типа поддерживает передачу больших файлов со слов справки microsoft:
When the amount of data send or received by the Web service exceeds 4 MB, configure the Web server to handle the larger amount of data.
To send and receive the largest possible SOAP messages, set the value of the <maxMessageLength> element to -1.
The following code example disables the limit on the maximum size of SOAP messages by WSE.
<configuration>
<microsoft.web.services3>
<messaging>
<maxMessageLength value="-1" />
</messaging>
</microsoft.web.services3>
</configuration>
Ставлю <maxMessageLength value="-1" /> и все равно файл более 4Mb передать не удается, в чем может быть дело?