Atozed Forums

Full Version: Socket Error # 10053 in IW15.1.1
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
What for error?

Project Project1.exe raised exception class EIdSocketError with message 'Socket Error # 10053 Software caused connection abort.'.
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/159...Are-Errors
Hi, I have this error using sendfile with parameter aAttachment = True, everything is ok if i use aAttachment = False.
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.
(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
(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!