Expert
You need to modify a WCF service that is defined as follows.
The SubmitOrder method triggers a call to another service. The ProcessMessage method does not work as expected when under heavy load. You need to enable the ability for the service to support concurrent messages.
New messages should only be processed when the ProcessMessage method is not busy with other messages, or when it is waiting for the return of the SubmitOrder method. What attribute do you need to apply to the MessageProcessor class?
Author: InconnuStatus: PublishedQuestion passed 29 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
0
Create a service host in Dot-net0
How to get the first element of an array in C#0
Fix the error in this C# code.0
Configure IIS to allow the http verbs PUT and DELETE for the service.1
How to create a WCF service in C#0
Create a WCF ContentManagement.svc service with the WebGetAttribute and WebInvokeAttribute attributes.,Define an endpoint behavior (EndpointBehavior) in the web.config that enables the web programming model.0
Generate a proxy class with asynchronous methods and use it for new clients.