Message queueing problem

S

shakthi

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.ATMServer">
<endpoint address="net.msmq://localhost/private/in"
binding="netMsmqBinding"
contract="ATMServer.Console.IATMServer"
bindingConfiguration="QueueBinding"
/>
</service>

</services>

<bindings>
<netMsmqBinding>
<binding name="QueueBinding" exactlyOnce="false" />
</netMsmqBinding>

<security mode="Transport"><transport
msmqAuthenticationMode="WindowsDomain"
msmqEncryptionAlgorithm="RC4Stream" msmqProtectionLevel="Sign"
msmqSecureHashAlgorithm="Sha1" /><message
clientCredentialType="Windows"/>/security>

</bindings>

i edited the config file disabling security on the MSMQ binding for
non-domain mode.

<netMsmqBinding>
<binding
name="DomainlessMsmqBinding">
<security>
<transport
msmqAuthenticationMode="None"
msmqProtectionLevel="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??
 
S

sloan

I left you a few questions at your PREVIOUS post about the issue.

Can you answer those (by going to that post)?

Did you try my downloadable example?
 
S

shakthi

I left you a few questions at your PREVIOUS post about the issue.

Can you answer those (by going to that post)?

Did you try my downloadable example?

which thread?? i did not see any questions. Can you please provide me
the url for the thread where u posted questions.

Thanks
 
S

sloan

Now you understand the issue of multi posting better.

This newsgroup , dated 10/27/2008 10:40 am.

It's pretty bad when you can't find ~~your own~~ (previous multi post) post.







I left you a few questions at your PREVIOUS post about the issue.

Can you answer those (by going to that post)?

Did you try my downloadable example?

which thread?? i did not see any questions. Can you please provide me
the url for the thread where u posted questions.

Thanks
 
S

shakthi

Now you understand the issue of multi posting better.

This newsgroup , dated 10/27/2008 10:40 am.

It's pretty bad when you can't find ~~your own~~ (previous multi post) post.







which thread?? i did not see any questions. Can you please provide me
the url for the thread where u posted questions.

Thanks

watz prob with u i dont understand. if u dont want to help its fine
but dont waste my time
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top