Hi,
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 pass it ot a web Service.
Q1- Can i create a WCF service which will automatically pick the messages from MSMQ Queue.
Q2- Can I avoid...
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");
will automatically invoke my client, but I receive this exception :
For sending a message on server side
composite duplex channels, the messag...
Hello
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 connection on iis6 also on server edition.im allready set service throttling options but not effect on server iis. so that now i want ...
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 message is pulled from MSMQ WCF service will process and then put the data/message on to some other MSMQ.
We are thinking of creating a WCF...
Hi !
Has anyone tested MSMQ Binding with soapUI Pro ? If yes, could you please share your experience and how effective the testing has been ?
Thanks,
Bhaskar
...
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 queue.
The retry delay is set to 1 hour, however when this time elapses the message is not "re-tried".
If we browse to the .svc or send an...
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 for a typical HTTP WCF service would work great.
However, in WAS activate services there is no HTTP pipeline, so I can't use InRequestScope...
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 core pience of functionality for our systems for at the the next few years. i want to do what I can to make sure the service is robust, but, ...
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 set that one to 1.
I got 20 messages in my queue waiting to be processed. The WCF operation that is responsible to process the message s...
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 problem I'm having is rather than sending one email. It sends 4-5 and I'm really struggling to figure out why this is happening. The way I do th...