473,503 Members | 12,791 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Message queueing problem

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??
Oct 27 '08 #1
6 2850

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?

"shakthi" <sh*******@gmail.comwrote in message
news:17**********************************@g61g2000 hsf.googlegroups.com...
>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??

Oct 27 '08 #2
On Oct 27, 12:46*pm, "sloan" <sl...@ipass.netwrote:
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?

"shakthi" <shakth...@gmail.comwrote in message

news:17**********************************@g61g2000 hsf.googlegroups.com...
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??
which thread?? i did not see any questions. Can you please provide me
the url for the thread where u posted questions.

Thanks
Oct 29 '08 #3
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.



"shakthi" <sh*******@gmail.comwrote in message
news:2a**********************************@79g2000h sk.googlegroups.com...
On Oct 27, 12:46 pm, "sloan" <sl...@ipass.netwrote:
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?

"shakthi" <shakth...@gmail.comwrote in message

news:17**********************************@g61g2000 hsf.googlegroups.com...
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??
which thread?? i did not see any questions. Can you please provide me
the url for the thread where u posted questions.

Thanks
Oct 29 '08 #4
On Oct 29, 2:17*pm, "sloan" <sl...@ipass.netwrote:
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.

"shakthi" <shakth...@gmail.comwrote in message

news:2a**********************************@79g2000h sk.googlegroups.com...
On Oct 27, 12:46 pm, "sloan" <sl...@ipass.netwrote:
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?
"shakthi" <shakth...@gmail.comwrote in message
news:17**********************************@g61g2000 hsf.googlegroups.com....
>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??

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
Oct 30 '08 #5
On Oct 30, 2:21*pm, shakthi <shakth...@gmail.comwrote:
On Oct 29, 2:17*pm, "sloan" <sl...@ipass.netwrote:
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.
"shakthi" <shakth...@gmail.comwrote in message
news:2a**********************************@79g2000h sk.googlegroups.com...
On Oct 27, 12:46 pm, "sloan" <sl...@ipass.netwrote:
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?
"shakthi" <shakth...@gmail.comwrote in message
>news:17**********************************@g61g200 0hsf.googlegroups.com....
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??
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
Close this posting..its multiposted
Oct 30 '08 #6
On Oct 30, 2:54*pm, shakthi <shakth...@gmail.comwrote:
On Oct 30, 2:21*pm,shakthi<shakth...@gmail.comwrote:
On Oct 29, 2:17*pm, "sloan" <sl...@ipass.netwrote:
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.
"shakthi" <shakth...@gmail.comwrote in message
>news:2a**********************************@79g2000 hsk.googlegroups.com....
On Oct 27, 12:46 pm, "sloan" <sl...@ipass.netwrote:
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?
"shakthi" <shakth...@gmail.comwrote in message
news:17**********************************@g61g2000 hsf.googlegroups.com...
>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??
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

Close this posting..its multiposted
Windows 2003 Server, no its for first time
Oct 30 '08 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1380
by: Gary | last post by:
I am planning to implement application to application communication using message queueing. I am using VB.NET on a Win2000 server OS with message queueing services enabled. I am find the...
2
1497
by: Stephen Barrett | last post by:
Does anyone know of any good sites or books to read up on using Windows Message Queue with .Net? I am starting to convert a long standing PowerBuilder server application to .Net. The current...
7
1591
by: Flip | last post by:
I've been reading about message queues (ex http://www.devx.com/dotnet/Article/27560) and I thought I had installed the message queue from the IIS install, and I can see it running in Services, but...
1
1264
by: Angus Comber | last post by:
Hello I am writing a real time program which queues up a number of tasks for processing. Each item in the queue must be submitted to a device sequentially. ie it is not possible to just blast...
4
5204
by: Just D. | last post by:
Did anybody use this Message Queuing and knew all details about it? What's the physical limit of this Message Queuing system, number of messages, mbytes, message size? Where it stores messages,...
8
9986
by: Rod | last post by:
I have been working with ASP.NET 1.1 for quite a while now. For some reason, opening some ASP.NET applications we wrote is producing the following error message: "The Web server reported...
0
1024
by: Brian Henry | last post by:
I wrote an application that interacts with the file system watcher in a windows service.. what it does is copies a file that was moved into a specific folder into another upon creation in that...
3
1905
by: asadikhan | last post by:
Hi, I have a client server application where the client sends a request to the server with a filename. The server needs to read the file contents, massage the data, and then add it to the...
5
1599
balabaster
by: balabaster | last post by:
I have an odd scenario whereby I have two SQL 2005 Servers separated by a firewall and the only means of them talking is via a 3rd party message queueing server. I have a database on each of the SQL...
0
7098
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7364
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7017
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
7470
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5604
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5026
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4696
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3174
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1524
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.