user1312242
user1312242

Reputation: 337

WCF NetMSMQBinding With non WCF Client

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.

Upvotes: 1

Views: 720

Answers (2)

tom redfern
tom redfern

Reputation: 31760

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

Upvotes: 2

Chris
Chris

Reputation: 2481

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

Upvotes: 2

Related Questions