WCF NetMSMQBinding With non WCF Client

Go To StackoverFlow.com

1

I have a query related to WCF netMsmqBinding.

Is it possible to consume a wcf netMsmqBinding by a non .Net Client? say a Java Client.

2012-04-04 08:00
by user1312242
When you say consume a WCF netMsmqBinding, what do you mean? If WCF services consume netMsmqBinding, they read directly from MSMQ. If a client uses a netMsmqBinding, they write directly to it. Are you wanting to use WCF from a non-.NET client to write to MSMQ - Dominic Zukiewicz 2012-08-27 20:18


2

You can use MsmqIntegrationBinding to allow non .net clients over msmq.

However, to support java clients you need to bridge the java/msmq interop gap.

There are a few ways of doing this, see here

2012-04-04 09:19
by tom redfern
This works!! Thanks! - user1312242 2012-04-04 10:13


2

No - all bindings named 'net'* are not interoperable.

2012-04-04 08:09
by Chris
ohh I see. Thanks for such fast reply. Any Idea how can I achieve this. Actually I want a non .Net client to communicate with the WCF even when the WCF service is under maintenance - user1312242 2012-04-04 08:16
I'd look through this table: http://msdn.microsoft.com/en-us/library/ms731092.aspx and decide based on your requirements : - Chris 2012-04-04 09:04
ohhh Thats gr8 :-) Many thanks to you! - user1312242 2012-04-04 10:17
Ads