WCF in IIS, using MSMQ in workgroup mode

后端 未结 4 1414
悲哀的现实
悲哀的现实 2021-02-07 21:32

I\'ve been trying out MSMQ with WCF, but I can\'t seem to get it to work properly. I\'ve got the client (which sends messages to the queue) working, by using WCF and a service r

4条回答
  •  青春惊慌失措
    2021-02-07 22:18

    Try these settings... useActiveDirectory should be false by default, but try it. The authentication mode is set on the transport itself, so msmqAuthenticationMode should be set to 'none'. msmqProtectionLevel and clientCredentialType sound relevant, so I threw them in there, too
    : )


    
      
         
           
             
           
         
      
    
    

    I'd be concerned about removing all the security, however... if you're on a domain, you should install MSMQ with Active Directory Integration, or use Workgroup methods of securing the messages.

    Also, don't forget, the settings for the server and client have to match.

    HTH,
    James

    Sorry for the continual updates, my attention to details seems to be a bit low today
    : P

提交回复
热议问题