Questions tagged [wcf-extensions]
50 questions
0
votes
1 answer
Obtaining ClientCredentials from WCF operation
My WCF Service uses a custom credentials validator for custom Message-based security, because I want to ensure each client calling an operation on my web service has a corresponding username and password in my database.
Imports…

Llyle
- 5,980
- 6
- 39
- 56
0
votes
1 answer
wcfextras still generates many files instead of single WSDL file
Here is the app.config I got:

kseen
- 359
- 8
- 56
- 104
0
votes
1 answer
WCF: "Cancel" operation Call Dependent on Request Message Contract
Here's my contract:
[ServiceContract]
public interface IMyServiceContract {
[OperationContract]
OperationResponse1 Operation1(OperationRequest1 req);
[OperationContract]
OperationResponse2 Operation2(OperationRequest2 req);
…

Spikeh
- 3,540
- 4
- 24
- 49
0
votes
1 answer
Allow service access to specific client version
I am looking for some architectural ideas for a scenario as below:
Environment:
I have a service (wcf hosted in windows service) that does several functionalities. I provide client libraries (.NET windows dlls) which provides API's to access this…

Everything Matters
- 2,672
- 4
- 25
- 42
0
votes
3 answers
WCF extension for logging and performing actions for each method. IErrorHandler has no notion of method?
I have normal WCF service with few methods.
I would like to log some information and perform some actions at the beginning of method and in the end.
By implementing IParameterInspector I can easily do lot of logging. Methods BeforeCall and AfterCall…

Andriy Buday
- 1,959
- 1
- 17
- 40