c# - Getting the immediate response from server without waiting to 200 message -


is possible send response (200) client , process request after response send client?

example: if send request 1 page takes 2 min response. don’t want wait 2 min response (because don’t need response server) want immediate response server. don’t worry if process complete after response send.

anyone have idea implement process?

thank you.

it sounds service writing web should make use of off-line process. web communications work synchronously, don't want client hanging around while server busy request. suggest separate service running on web server can offload processes to. perhaps this:

  1. client sends request server
  2. server accepts client data
  3. server inserts request data database
    a. windows service monitors database request queue , processes
  4. server responds client "200"

Comments

Popular posts from this blog

ios - UICollectionView Self Sizing Cells with Auto Layout -

node.js - ldapjs - write after end error -

DOM Manipulation in Wordpress (and elsewhere) using php -