Tagged Questions
The operationcontext 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 ...
4
votes
1answer
269 views
WCF: Destinguish between REST and SOAP requests using the OperationContext
In WCF security, given the current OperationContext, what is the best way to determine whether the request is a SOAP request or a REST request?
2
votes
2answers
136 views
Making WCF play nicely with DI and testing
I'm running a WCF service hosted in a Windows service; dependencies of the WCF service are injected via Unity, which is all good. As a result, the service is also easy to write unit tests for.
...
2
votes
1answer
385 views
How to retrieve the client's machine name from within a WCF Operation Contract?
I'm currently looking at the OperationContect.Current properties. Is there a (nested) property the will always return the machine name of the client? I'm currently using net.tcp binding, but would ...
1
vote
0answers
135 views
netPeerTCPBinding - Does OperationContext.Current.GetCallbackChannel broadcast?
I found two sources that seem to be contradicting each other:
"When the service receives a call, OperationContext.Current.GetCallbackChannel returns a channel to just that caller. It does not return ...
0
votes
0answers
101 views
Adding headers to WCF service throws error
We are consuming a third party secured service using basicHttp binding. It expects some headers which they validate at their end to authenticate the user. I want to pass the header information, to do ...
0
votes
2answers
407 views
WCF service with HttpContext
I had a web service which I converted to wcf service with the same asmx extension. I have basicHttpbinding since my service talks to various clients like java, perl etc.
I had a validation which had ...
0
votes
1answer
3k views
WCF OperationContext
I'm developing a WCF service and if there is an error I want to serialize the incoming parameter from the original method that was called on the service. I am using IErrorHandler to catch all ...