Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
3answers
4k views

What are best practices for activation/registration/password-reset links in emails with nonce

Applications send out emails to verify user accounts or reset a password. I believe the following is the way it should be and I am asking for references and implementations. If an application has to ...
0
votes
1answer
118 views

How To Handle Idempotency on the Service Layer?

I Have a SOA App where i want to incorporate some idempotency mechanism on the service layer. I'm using WCF for messaging. How do you handle idempotency in your apps? do you have some sample code? ...
0
votes
2answers
478 views

How to ensure message idempotency with multiple competing consumers?

I have multiple distributed competing consumers each pulling messages off the same (transactional) queue. I want to implement each consumer as an Idempotent Receiver so I never process the same ...