The weboperationcontext tag has no wiki summary.
0
votes
1answer
58 views
How to mock WebOperationContext for unit testing?
I am trying to get a unit test(more of an integration test) written for the GetAwesomeResultsAsXml() for the following WCF Rest Service.
How do I deal with the WebOperationContext mocking aspect?
What ...
0
votes
0answers
69 views
WCF how can I get the current configuration for an existing serviceContract instance
I'm building a WCF service that will be hosted in an mvc application via a service route. I'm trying to test the service. My issue is in the middle of the call, the service calls out to another ...
2
votes
1answer
279 views
WebOperationContext.Current in WCF service null
I have a WCF service with the service file as - Serivce.svc
Here I can read incoming headers using the WebOperationContext.Current
The code from the Service file access a data access utility layer ...
0
votes
2answers
182 views
C# - HttpWebResponse Header Not Being Set
I'm attempting to set the content-length of my outgoing response headers but my code seems to have no effect on the headers.
web_op_context.OutgoingResponse.Headers.Set("Content-Type", ...
1
vote
1answer
171 views
Does a stream close when you return it in a WebOperationContext?
I'm returning some images as a stream as part of a WebOperationContext.Current.CreateStreamResponse()
I was wondering if the framework handles the closing of this stream after it gets returned. Or if ...
0
votes
2answers
701 views
Exception handling in REST service
I have a REST service and I want to have a helper class that handle exceptions
My code looks as follows:
[WebGet(UriTemplate = "/Test/{param}")]
public Stream Test(string param)
{
if (param ...
2
votes
0answers
368 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 ...
4
votes
1answer
938 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:
...
0
votes
1answer
492 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 ...
1
vote
1answer
261 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 ...
3
votes
2answers
483 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 ...
3
votes
1answer
521 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
639 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 ...
8
votes
4answers
3k 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 ...
1
vote
1answer
537 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 ...
24
votes
2answers
15k 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 ...