Atozed Forums
Socket Error # 10053 in IW15.1.1 - Printable Version

+- Atozed Forums (https://www.atozed.com/forums)
+-- Forum: Atozed Software (https://www.atozed.com/forums/forum-1.html)
+--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html)
+---- Forum: English (https://www.atozed.com/forums/forum-16.html)
+----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html)
+----- Thread: Socket Error # 10053 in IW15.1.1 (/thread-1148.html)



Socket Error # 10053 in IW15.1.1 - matija - 07-23-2019

What for error?

Project Project1.exe raised exception class EIdSocketError with message 'Socket Error # 10053 Software caused connection abort.'.


RE: Socket Error # 10053 in IW15.1.1 - kudzu - 07-23-2019

This error is normal. Press F5 and Delphi will continue to the catch block for it. You can also tell the IDE to ignore this.

Please refer to:
https://www.codeproject.com/Articles/15921/Not-All-Exceptions-Are-Errors


RE: Socket Error # 10053 in IW15.1.1 - edward - 07-24-2019

Hi, I have this error using sendfile with parameter aAttachment = True, everything is ok if i use aAttachment = False.


RE: Socket Error # 10053 in IW15.1.1 - kudzu - 07-25-2019

As I stated before, it is most likely not an error. Many browsers cut off their connections this way. Press F5, IntraWeb will handle it and you will only see this during debugging.


RE: Socket Error # 10053 in IW15.1.1 - Alexandre Machado - 07-27-2019

(07-23-2019, 09:38 AM)matija Wrote: What for error?

Project Project1.exe raised exception class EIdSocketError with message 'Socket Error # 10053 Software caused connection abort.'.

Add this Indy exception to the ignore list in Delphi:

Tools -> Options -> Debugger Options -> Embarcadero Debuggers -> Language Exceptions

Add this class to the list: EIdSocketError

and be happy


RE: Socket Error # 10053 in IW15.1.1 - matija - 07-29-2019

(07-27-2019, 02:47 AM)Alexandre Machado Wrote:
(07-23-2019, 09:38 AM)matija Wrote: What for error?

Project Project1.exe raised exception class EIdSocketError with message 'Socket Error # 10053 Software caused connection abort.'.

Add this Indy exception to the ignore list in Delphi:

Tools -> Options -> Debugger Options -> Embarcadero Debuggers -> Language Exceptions

Add this class to the list: EIdSocketError

and be happy

Thx, now not message. I hope it will be help!