Sending Files over Web Services

1
I am connecting to a web service in which I send a file. It works fine with smaller files < 50K, but for anything larger I get a 400 Bad Request error. Is there a configuration for the size of the request I can create, or does anyone know of any other Mendix config/limitations that might be related to this issue? Some additional info: This is an internally hosted app and web service. In fact, it is a .NET WCF that uses HTTP bindings and has MTOM enabled.
asked
2 answers
0

Jason,

could you please give us the webservice address, wsdl or Mendix project where you have this issue? We'd like to reproduce it and find out more.

pieter.van.balen@mendix.com

answered
0

Turned out to be a rather simple issue. After investigating some logging I could see that the MTOM message was running out of buffer, so we updated MaxBufferSize to the max allowable. It was previously set to about 65K, which was the issue with sending anything other than the smallest files.

answered