Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
2k views

Alternative to HttpContext when using NInject with a WCF Service Hosted in WAS using MSMQ binding

I have a one way WCF service using the MSMQ Binding which is activated using Windows Activation Service in IIS 7.0. I'm a big fan on NInject so I've been using the NInject extension for WCF, which ...
3
votes
1answer
246 views

WCF MSMQ Unit testing

I have created a custom msmq service with WCF, which uses a custom binding as it needs to do some custom logic at the channel layer, where it calls another wcf service. The service is going to be a ...
1
vote
1answer
62 views

securing duplex WCF MSMQ

I'm building a system where several clients are connected to a central server by WCF using duplex MSMQ (updates are sent to the server, messages are periodically pushed out to several clients). How ...
1
vote
2answers
263 views

WCF over MSMQ binding. How do I detect when a message is moved to the poison queue?

I am running a WCF client that invokes a WCF service via an MsmqBinding. Framework is .Net 4.0, client and server runs on Windows Server 2008 R2. The channel queue is transactional. The service is ...
1
vote
0answers
137 views

Why are my messages continuing to be retried After the error has been handled?

I have a poisoned message service. When I receive a poisoned message, the error is handled by a poisoned message handler, which sends an email, which then moves the message off of the queue. the ...
1
vote
2answers
127 views

msmq binding wcf

I have some messages in my queue. Now I notice that after 3 tries the service host faults. Is this a normal behavior? Where does the 3 times comes from? I thought it came from receiveRetryCount. But I ...
1
vote
1answer
606 views

WAS net.msmq service messages stuck in retry queue

We are hosting a net.msmq service in IIS7. The queue is transactional. Messages arrive in the queue and are picked up correctly by the service. If an exception occurs, message is put into the retry ...
1
vote
1answer
698 views

wcf msmq binding in iis 6.0

Hosting env : Windows 2003 server IIS : 6.0 Dev env : Windows XP IIS : 5.1 Scenario: Client will be pushing some message into MSMQ and WCF service will be the one keeping an eye on MSMQ. Once the ...
1
vote
2answers
2k views

WCF and MSMQ

Can any help me to find the answer of the following questions. We have a solution where we are picking the messages using Windows Service Service fires every after 2 minutes and pick the message to ...
0
votes
1answer
72 views

MSMQ in a server farm

We are considering using MSMQ as a message processing service in our application. What we want is - MSMQ in a farm of servers sitting behind Network Load Balancer (NLB) that distributes load among the ...
0
votes
1answer
222 views

netmsmqbinding with silverlight connections limit

I have develop a silverlight chat application. my question is (a) can netmsmqbinding support unlimited connections of wcf service. because first im use pollingduplex binding but it support only 10 ...
0
votes
2answers
500 views

Why WCF doesn't automatically affect the To header on outgoing message with the ReplyTo of the incoming message?

I have a service which send a message with the ReplyTo header set to a return address. I thought that : OperationContext.Current.GetCallbackChannel<IHelloCallback>().RespondHello("tomi"); ...