Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Queueing framework solution

I would like to address such a issue: I have a HTML form (like register form) which submission sends email. Now I send it as a part of page request. Obvious drawbacks:

  • makes request longer
  • sometimes smtp server is down, or timeouts and emails are not sent

When working with PHP I used a solution that based on queue - I had been putting an object/xml to queue host, and then some kind of client checked that queue. If queue task was sucessfully handled it removed task from queue. I wonder, is there a similar implementation on Windows / .NET platform ?

Thanks,Paweł

like image 413
dragonfly Avatar asked Jun 24 '26 12:06

dragonfly


1 Answers

There is robust queuing offered by MSMQ which is easy to use in .NET. Accessing Message Queues might be a good place to start.

like image 126
madd0 Avatar answered Jun 27 '26 03:06

madd0



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!