I did a lot of remote calls in my last project, usually the connection reset is caused by your own server limitation or remote server capacity.
for remote server, nothing u can do. for your own node server, you should check several things like ulimit, and set maxSockets. see tips from my site: http://www.murvinlai.com/remote-http-request.html On Mon, Jan 14, 2013 at 11:02 AM, Harald Hanche-Olsen <[email protected]>wrote: > [<[email protected]> (2013-01-14 18:41:11 UTC)] > > > Hi, > > > > i'm getting data via http get method Node JS but i get this error often > "{ > > [Error: socket hang up] code: 'ECONNRESET' }" error on console. > > > > What do you think the problem? > > Without further information, I'd assume that the remote end has closed > the connection unexpectedly, without reading data that was sent to it. > > See for example here: > > > http://stackoverflow.com/questions/2974021/what-does-econnreset-mean-in-the-context-of-an-af-local-socket > > - Harald > > -- > Job Board: http://jobs.nodejs.org/ > Posting guidelines: > https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines > You received this message because you are subscribed to the Google > Groups "nodejs" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/nodejs?hl=en?hl=en > -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
