Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
69 views

WCF MsmqIntegrationBinding - Not picking Messages off of the queue

I have a legacy client that is writing messages to a queue (MSMQ). I wanted to use a WCF service to pick the XML messages up off of the queue. I followed some of the MSFT docs and poked around at ...
1
vote
0answers
174 views

Use workflow service with msmqIntegrationBinding

I have been struggling with setting up a workflow service that uses a msmqIntegrationBinding. The problem I have now is that I always get this serialization exception ...
1
vote
3answers
824 views

WCF with MSMQIntegrationBinding does not pick up a message from queue

I have a BizTalk 2006 app which has a sendport using MSMQ. I have also a WCF winforms hosting app with several WCF services (in the development environment, in production I use a windows service as ...
1
vote
1answer
728 views

Exception in creating a WCF Service using MsmqIntegrationBinding

My machine is Windows 7 ultimate (64 bit). I have installed MSMQ and checked that it is working fine (ran some sample codes for MSMQ). When i try to create a WCF Service using MsmqIntegrationBinding ...
0
votes
0answers
31 views

WCF MsmqIntegrationBinding - Remote Queue

I am using WCF MsMqIntegrationBinding and I am trying to write my messages to a remote queue. Thanks to Hugh and John Breakwell iw as able to get them to write just using the normal Messaging calls, ...
0
votes
1answer
243 views

How do I use MsmqIntegrationBinding with a non-transactional queue?

This is my service contract: <ServiceContract> _ <ServiceKnownType(GetType(String))> _ Public Interface ISecurityMasterChanged <OperationContract(IsOneWay:=True, Action:="*")> _ ...