Tagged Questions
The weboperationcontext tag has no wiki summary.
17
votes
1answer
9k views
What is the WCF equivalent of HttpContext.Current.Request.RawUrl?
I've got some RESTful services running in a pure WCF context (i.e. ASP.NET compatibility is not enabled, and thus there is no HttpContext.Current object available).
The URLs to the services are ...
5
votes
4answers
1k views
WCF 4 REST service can't return a StatusDescription, only StatusCode
I'm currently migrating my WCF RESTful service from .NET 3.5 (Starter Kit) to .NET 4. I started my project using a WCF Rest service template from Visual Studio 2010.
I had to figure out how to keep my ...
2
votes
1answer
39 views
Testing WCF methods with Nunit but WebOperationContext is null
How do you get around the WebOperationContext being null in a WCF service method when testing the method using NUnit
I have a unit test project using NUnit to test data returned by a WCF Method:
...
2
votes
1answer
277 views
WebOperationContext.Current.OutgoingResponse.StatusDescription is ignored
Value that I set on server side for WebOperationContext.Current.OutgoingResponse.StatusDescription property is ignored. Client side gets a default message, for example Not Found for 404 code, OK for ...
1
vote
0answers
41 views
Mocking WebOperationContext.IncomingRequest
I need to mock the WebOperationContext and specifically the IncomingRequest with a header that assigns the Accept value, as to test that the value is being read properly and the ...
1
vote
1answer
66 views
is WebOperationContext available in a static function?
I have a RESTful WCF service that have a service method say BeginX()
Inside BeginX, I call my static Validate function in a static helper class. Inside the static Validate method, can I call ...
1
vote
2answers
92 views
Performing CreateTextResponse(…) in mocking WebOperationContext as in WebOperationContext
I'm mocking the WebOperationContext class over wrapper for unit testing (using Moq). But I need to execute CreateTextResponse(...) method from WebOperationContext class in my mocked context for ...
1
vote
1answer
328 views
WebOperationContext Object reference not set to an instance of an object
When I try to use WebOperationContext.Current in a WCF project, the Current is null. Below is the example. Could anyone please shed a light on it?
WebForm - default.aspx:
ServiceClient sc = new ...
1
vote
1answer
356 views
How System.ServiceModel.Web.WebOperationContext works when InstanceContextMode is Single?
If my WCF Service has this attribute:
[ServiceBehavior(
InstanceContextMode = InstanceContextMode.Single,
ConcurrencyMode = ConcurrencyMode.Multiple)]
How can the following a Singleton ...
0
votes
1answer
60 views
Mocking WebOperationContext
I'm using the WCFMock to mock the WebOperationContext in my web service. The only usage is to add a custom HTTP header to the WebOperationContext.Current.OutgoingResponse.Headers collection. I'm ...