Hello Everybody,
I am working on an application in which I have to call rest services in the backend from Adobe Air UI in the front end, using as3 httpclient. Now, while calling these services I have to pass the data of a text file as an argument to that rest service.
What I have found is that, when I try to call the service by passing the data of a small text file, it works. But when I try to call the rest service by passing a huge data as an argument of a very big text file, it doesn't even reach till the service back end. It gives a warning of bad http request (error code 400) and also gives an security sandbox violation error inspite of putting cross doman xml file in the server root folder.
So I wanted to ask whether there is any restriction on the data size that can be passed to backend from as3 httpclient object to rest services.