My application consists of two parts: a web service that sends queues to a private MSMQ queue and a Windows service that accepts queues and inserts them into the database. Everything is fine in my development machine, but when I deploy them to the server, the permission issue was raised:
- The web service running inside IIS uses the NETWORK SERVICE account to create the queue.
- the service itself, works as an administrator, and then cannot access the queue.
I tried to add permissions for the administrator account, but failed with the "Access denied" error. I canβt even delete these queues.
How can i fix this? Thank you very much
source share