I have problem with message queuing. I wrote simple service and client
that communicate through endpoint that works with netMsmqBinding.
Exception occurs when client sends message to server, and error is:
There was an error sending to the queue: No internal Message Queuing
certificate exists for the user.
This is config of the service.
<services>
<service type="ATMServer .Console.ATMSer ver">
<endpoint address="net.ms mq://localhost/private/in"
binding="netMsm qBinding"
contract="ATMSe rver.Console.IA TMServer"
bindingConfigur ation="QueueBin ding"
/>
</service>
</services>
<bindings>
<netMsmqBinding >
<binding name="QueueBind ing" exactlyOnce="fa lse" />
</netMsmqBinding>
<security mode="Transport "><transpor t
msmqAuthenticat ionMode="Window sDomain"
msmqEncryptionA lgorithm="RC4St ream" msmqProtectionL evel="Sign"
msmqSecureHashA lgorithm="Sha1" /><message
clientCredentia lType="Windows"/>/security>
</bindings>
i edited the config file disabling security on the MSMQ binding for
non-domain mode.
<netMsmqBinding >
<binding
name="Domainles sMsmqBinding">
<security>
<transport
msmqAuthenticat ionMode="None"
msmqProtectionL evel="None"/>
</security>
</binding>
</netMsmqBinding>
It helped, now the client application can send message to msmq. New
problem is that service does not react on new message. Any ideas??
that communicate through endpoint that works with netMsmqBinding.
Exception occurs when client sends message to server, and error is:
There was an error sending to the queue: No internal Message Queuing
certificate exists for the user.
This is config of the service.
<services>
<service type="ATMServer .Console.ATMSer ver">
<endpoint address="net.ms mq://localhost/private/in"
binding="netMsm qBinding"
contract="ATMSe rver.Console.IA TMServer"
bindingConfigur ation="QueueBin ding"
/>
</service>
</services>
<bindings>
<netMsmqBinding >
<binding name="QueueBind ing" exactlyOnce="fa lse" />
</netMsmqBinding>
<security mode="Transport "><transpor t
msmqAuthenticat ionMode="Window sDomain"
msmqEncryptionA lgorithm="RC4St ream" msmqProtectionL evel="Sign"
msmqSecureHashA lgorithm="Sha1" /><message
clientCredentia lType="Windows"/>/security>
</bindings>
i edited the config file disabling security on the MSMQ binding for
non-domain mode.
<netMsmqBinding >
<binding
name="Domainles sMsmqBinding">
<security>
<transport
msmqAuthenticat ionMode="None"
msmqProtectionL evel="None"/>
</security>
</binding>
</netMsmqBinding>
It helped, now the client application can send message to msmq. New
problem is that service does not react on new message. Any ideas??
Comment