<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="http://code.msdn.microsoft.com/rss.xsl"?><rss version="2.0"><channel><title>msmqpluswcf Forum Rss Feed</title><link>http://code.msdn.microsoft.com/msmqpluswcf/Thread/List.aspx</link><description>msmqpluswcf Forum Rss Description</description><item><title>NEW POST: MSMQ 3.0 vs MSMQ 4.0</title><link>http://code.msdn.microsoft.com/msmqpluswcf/Thread/View.aspx?ThreadId=2265</link><description>&lt;div class="wikidoc"&gt;
See the issue tracker.&lt;br /&gt; &lt;br /&gt;Due to the fact that the chunking channel is using the MSMQ 4.0 new subqueues feature(not available in MSMQ 3.0),&lt;br /&gt;the part of this sample that makes use of the chunking channel will not work in XP/2003.&lt;br /&gt; &lt;br /&gt;That's too bad, though. The chunking channel would have been a nice addition to WCF.&lt;br /&gt;
&lt;/div&gt;</description><author>dragoshaiduc</author><pubDate>Tue, 13 Oct 2009 13:22:59 GMT</pubDate><guid isPermaLink="false">NEW POST: MSMQ 3.0 vs MSMQ 4.0 20091013P</guid></item><item><title>NEW POST: MSMQ 3.0 vs MSMQ 4.0</title><link>http://code.msdn.microsoft.com/msmqpluswcf/Thread/View.aspx?ThreadId=2265</link><description>&lt;div class="wikidoc"&gt;
I can confirm that the sample does not run as-is on XP.&lt;br /&gt;
&lt;/div&gt;</description><author>rbaron</author><pubDate>Tue, 06 Oct 2009 23:38:01 GMT</pubDate><guid isPermaLink="false">NEW POST: MSMQ 3.0 vs MSMQ 4.0 20091006P</guid></item><item><title>NEW POST: MSMQ 3.0 vs MSMQ 4.0</title><link>http://code.msdn.microsoft.com/msmqpluswcf/Thread/View.aspx?ThreadId=2265</link><description>&lt;div class="wikidoc"&gt;
It appears the demo was done on Vista, which comes with MSMQ 4.0. &lt;br /&gt;The code therefore will not run on XP/2003, as those are only MSMQ 3.0.&lt;br /&gt;Could someone confirm this please?&lt;br /&gt;Thank you.&lt;br /&gt;
&lt;/div&gt;</description><author>sfeldman</author><pubDate>Fri, 11 Sep 2009 20:30:32 GMT</pubDate><guid isPermaLink="false">NEW POST: MSMQ 3.0 vs MSMQ 4.0 20090911P</guid></item><item><title>NEW POST: "The signature is invalid" error with WCF netMsmqBinding</title><link>http://code.msdn.microsoft.com/msmqpluswcf/Thread/View.aspx?ThreadId=1913</link><description>&lt;div class="wikidoc"&gt;
The problem was in the security configuration. It shoud be configured like this:&lt;br /&gt;&amp;lt;security mode=&amp;quot;None&amp;quot;&amp;gt; &lt;br /&gt;&amp;lt;transport msmqAuthenticationMode=&amp;quot;None&amp;quot; msmqProtectionLevel=&amp;quot;None&amp;quot;/&amp;gt; &lt;br /&gt;&amp;lt;message clientCredentialType=&amp;quot;None&amp;quot;/&amp;gt; &lt;br /&gt;&amp;lt;/security&amp;gt;&lt;br /&gt; &lt;br /&gt;Also&lt;br /&gt; &lt;br /&gt;useActiveDirectory=&amp;quot;false&amp;quot; &lt;br /&gt; &lt;br /&gt;Or in code:&lt;br /&gt; &lt;br /&gt;binding.Security.Transport.MsmqAuthenticationMode =MsmqAuthenticationMode.None; &lt;br /&gt;binding.Security.Transport.MsmqProtectionLevel = System.Net.Security.&lt;br /&gt;ProtectionLevel.None; &lt;br /&gt; &lt;br /&gt;binding.UseActiveDirectory =false; &lt;br /&gt; &lt;br /&gt;Reason of the problem:&lt;br /&gt;If you're getting &amp;quot;The signature is invalid&amp;quot; errors, that means your channel is trying to send authenticated messages. Authenticated messages require Active Directory because that's where the certificates used are stored. Assuming you can't use AD, the other way to approach the problem is to make the channel send unauthenticated messages. There's probably some WCF security setting default which is causing this; I'm not very familiar with WCF so I can't tell you which one, but if there are any settings which talk about &amp;quot;transport security&amp;quot;, they would be likely candidates.&lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;--------------------------------------------------------------------------------&lt;br /&gt;rt&lt;br /&gt;
&lt;/div&gt;</description><author>rtitulaer</author><pubDate>Thu, 25 Jun 2009 08:14:46 GMT</pubDate><guid isPermaLink="false">NEW POST: "The signature is invalid" error with WCF netMsmqBinding 20090625A</guid></item><item><title>NEW POST: "The signature is invalid" error with WCF netMsmqBinding</title><link>http://code.msdn.microsoft.com/msmqpluswcf/Thread/View.aspx?ThreadId=1913</link><description>&lt;div class="wikidoc"&gt;
Hi,&lt;br /&gt; &lt;br /&gt;I want to send messages to a remote private queue using netMsmqBinding.&lt;br /&gt; &lt;br /&gt;My endpoint address is net.msmq://10.204.4.23/private/identitymanagement&lt;br /&gt; &lt;br /&gt;I use the following settings in the config (bindings-&amp;gt;netMsmqBinding ):&lt;br /&gt;useActiveDirectory=&amp;quot;false&amp;quot;&lt;br /&gt;queueTransferProtocol=&amp;quot;Native&amp;quot;&lt;br /&gt; &lt;br /&gt;When I send the message using the followng code&lt;br /&gt; &lt;br /&gt;using&lt;br /&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;(TransactionScope scope = new TransactionScope(TransactionScopeOption.Required))&lt;br /&gt;{&lt;br /&gt;     client.ProcessUserData(data);&lt;br /&gt;     scope.Complete();&lt;br /&gt;}&lt;br /&gt; &lt;br /&gt;My message ends up in the local Transactional dead letter message queue with the error &amp;quot;The signature is invalid&amp;quot;.&lt;br /&gt; &lt;br /&gt;On the server queue authenticated is unckecked.&lt;br /&gt; &lt;br /&gt;When I try to send a messae to the same remote queue from the same client using System.Messaging my message does arrive.&lt;br /&gt; &lt;br /&gt;The difference could be that the queue connection string in the System.Messaging code is FormatName:DIRECT=TCP:10.204.4.23\private$\identitymanagement&lt;br /&gt; &lt;br /&gt;What I found from the documentation is that formatname will disable windows intervention. &lt;br /&gt; &lt;br /&gt;It is not allowed to use formatname in netMsmqBinding. netMsmqBinding should create the proper connectionstring using useActiveDirectory and  queueTransferProtocol. I have my doubts if this really is the case.&lt;br /&gt; &lt;br /&gt;Anyone any ideas how to solve this?&lt;br /&gt; &lt;br /&gt;Thanks &lt;br /&gt; &lt;br /&gt; &lt;br /&gt;--------------------------------------------------------------------------------&lt;br /&gt;rt&lt;br /&gt;
&lt;/div&gt;</description><author>rtitulaer</author><pubDate>Tue, 23 Jun 2009 21:57:40 GMT</pubDate><guid isPermaLink="false">NEW POST: "The signature is invalid" error with WCF netMsmqBinding 20090623P</guid></item><item><title>NEW POST: Enterprise Library LogEntry object and WCF MSMQIntegrationBinding Problem</title><link>http://code.msdn.microsoft.com/msmqpluswcf/Thread/View.aspx?ThreadId=1620</link><description>&lt;div class="wikidoc"&gt;
We have the following requirement in our project:&lt;br /&gt; &lt;br /&gt;To create a client application in C# which uses the enterprise library 4.1 for logging information. For one of the logging catgeory, the log object is sent to private queue on a machine.&lt;br /&gt;And instead of using the microsoft provided Distributor service to read the message from the queue, we need to have a WCF Service. On starting the service it should monitor the private queue and when a message arrives in the queue using the MSMQ Integration binding Service contract it should trigger a event in the application which reads the message from the queue and shows it on to the screen to the user.&lt;br /&gt; &lt;br /&gt;Based on the example given in this article we have created the client application that logs information into the private queue using enterprise library and the WCF service.&lt;br /&gt; &lt;br /&gt;Problem : The WCF service is able to read the message from the queue and display on the screen only when the client application logs the information in the queue directly without using Enterprise library. &lt;br /&gt; &lt;br /&gt;MessageQueue queue = new MessageQueue(@&amp;quot;formatname:DIRECT=OS:.\private$\logqueue&amp;quot;);&lt;br /&gt;System.Messaging.Message msg = new System.Messaging.Message(logMessage, new BinaryMessageFormatter());&lt;br /&gt;queue.Send(msg, MessageQueueTransactionType.Automatic);&lt;br /&gt; &lt;br /&gt;If the message or information is logged to the queue using MSMQ trace listener of enterprise library then the WCF service tries to read the message from the queue, but does not trigger the event in the application and the message gets lost from the queue.&lt;br /&gt; &lt;br /&gt;For logging the message in the queue we are using the Binary formator. Also one of the requirements for the queues is that it should be non-transactional.&lt;br /&gt; &lt;br /&gt;Appricate your help in identifying how to make this work ... &lt;br /&gt; &lt;br /&gt;
&lt;/div&gt;</description><author>SameerM</author><pubDate>Thu, 23 Apr 2009 08:21:52 GMT</pubDate><guid isPermaLink="false">NEW POST: Enterprise Library LogEntry object and WCF MSMQIntegrationBinding Problem 20090423A</guid></item><item><title>NEW POST: Is ChunkingChannel.dll covered by MS Public License</title><link>http://code.msdn.microsoft.com/msmqpluswcf/Thread/View.aspx?ThreadId=761</link><description>&lt;div class="wikidoc"&gt;
The download for this doesn't include the source for the ChunkingChannel, only a binary. It is easy to generate the source, of course, but would this be covered by the MS Public License?&lt;br /&gt; &lt;br /&gt;(By the way, my understanding is that the author of this &amp;quot;sample&amp;quot; no longer works for MS).&lt;br /&gt;
&lt;/div&gt;</description><author>Blipwort</author><pubDate>Wed, 01 Oct 2008 14:48:47 GMT</pubDate><guid isPermaLink="false">NEW POST: Is ChunkingChannel.dll covered by MS Public License 20081001P</guid></item><item><title>NEW POST: Any news on the chunking channel?</title><link>http://code.msdn.microsoft.com/msmqpluswcf/Thread/View.aspx?ThreadId=487</link><description>&lt;div class="wikidoc"&gt;
Anybody got the MSMQChunkingChannelOrderWatcher working on Windows XP?&lt;br /&gt;
&lt;/div&gt;</description><author>dragoshaiduc</author><pubDate>Fri, 08 Aug 2008 11:51:21 GMT</pubDate><guid isPermaLink="false">NEW POST: Any news on the chunking channel? 20080808A</guid></item><item><title>NEW POST: Any news on the chunking channel?</title><link>http://code.msdn.microsoft.com/msmqpluswcf/Thread/View.aspx?ThreadId=487</link><description>&lt;div class="wikidoc"&gt;
Are there any news on that thing? The sample is preetty ancient, and there are references to anothe rversion that shall come.&lt;br /&gt; &lt;br /&gt;I am in a project where an Architect insists on using this channel by possibly all means (do not tell me how not too smart that is), so I would be thankfull for a version that is further developped.&lt;br /&gt;
&lt;/div&gt;</description><author>Thona</author><pubDate>Mon, 30 Jun 2008 11:14:24 GMT</pubDate><guid isPermaLink="false">NEW POST: Any news on the chunking channel? 20080630A</guid></item></channel></rss>