XMLHttpRequest.abort(), is true that the server is not notified?

first question that interest me the most,
When using XMLHttpRequest.abort(), is true that the server is not notified?

Does it depend on which server is used?

Is it the same if one uses fetch() with the the abortcontroller.abort()?

What is the best way to stop the request and its resources on the server? Is it to send a new request? Is it to use streaming?

Yes, since HTTP is a stateless protocol.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.