You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to send data from a node js server to a meteor app. In the node js I'm doing this : axios.put('http://localhost:3000/api/project/'+id,{"data" :data, "idExtractor":idExtractor, "version":getVersion()})
where data is a string of the XML given by our server
And in my meteor app I'm receiving this in a server route, but when the data is too large, the meteor server give me the errors "socket hang up" and "request entity too large".
I tried solutions from 710 and other issues, doing the following code in the lib/Router.js file. I tried to put it before all routes definitions, before REST routes, after all routes, I also tried to put it in server/main.js in the startup block
Hi,
I'm trying to send data from a node js server to a meteor app. In the node js I'm doing this :
axios.put('http://localhost:3000/api/project/'+id,{"data" :data, "idExtractor":idExtractor, "version":getVersion()})
where data is a string of the XML given by our server
And in my meteor app I'm receiving this in a server route, but when the data is too large, the meteor server give me the errors "socket hang up" and "request entity too large".
I tried solutions from 710 and other issues, doing the following code in the lib/Router.js file. I tried to put it before all routes definitions, before REST routes, after all routes, I also tried to put it in server/main.js in the startup block
I also tried to change these limits in the node server with this
But I always have the same problem, all help would be greatly appreciated.
Edit :
Solved this problem, here is how I fixed it https://stackoverflow.com/questions/51193351/meteor-iron-router-error-request-entity-too-large/51381478#51381478
The text was updated successfully, but these errors were encountered: