Tagged Questions
2
votes
0answers
112 views
SecurityException when loading an app with a WCF behaviorExtension in the app.config over the network
I have an .NET 4 .exe (Winform Desktop app) to which I have added a WCF behaviorExtension. The app loads fine on the local machine, but throws a SecurityException when loaded across the network. If I ...
2
votes
1answer
58 views
In WCF can you re-use enpoint behaviors, service behaviors and bindings?
In WCF can you re-use enpoint behaviors, service behaviors and bindings?
Or must each service / endpoint have distinct ones even if they are the same except for their ID.
2
votes
2answers
127 views
How do you differentiate between application and infrastructure endpoints?
I'm creating a custom behaviour for WCF which can (for interoperability reasons) only function correctly when a service exposes a single application endpoint.
I would like to be able to use the ...
2
votes
2answers
557 views
Setting custom WCF-binding behaviour via .config file - why doesn't this work?
I am attempting to insert a custom behavior into my service client, following the example here.
I appear to be following all of the steps, but I am getting a ConfigurationErrorsException. Is there ...
1
vote
2answers
80 views
Custom Behavior won't register in my web.config
I have a working application using Json.NET (newtonsoft) as a custom serializer. Currently I'm adding this derivative of WebHttpBehavior in a custom WebServiceHostFactory. See the code snippet at the ...
1
vote
0answers
55 views
Something like an operation filter in WCF REST?
I am looking for something like the AuthorizeAttribute in MVC, something I can use like this:
[WebGet(UriTemplate = "data/{spageNumber}")]
[WebCache(CacheProfileName = "SampleProfile")]
...
1
vote
1answer
49 views
Making domain data available to WCF behavior
In my application, I have a value ("BusinessUnit") which I want to add into every request to a web-service. One way of doing this would be to write a WCF behaviour, which would insert the value for ...
1
vote
1answer
363 views
WCF service behavior extension throwing null reference exception
So, im trying to write routing service. The idea is that, every time someone calls routing service, endpoint is randomly selected by WCF behavior extension. I used slightly modified example from MSDN ...
1
vote
2answers
133 views
Throwing a fault inside a behavior and returning it to client
I'm writing some services in WCF to be called by a Silverlight client. I change status code to 200 every time a fault is to be returned, via a IDispatchMessageInspector.
It works almost perfect, but ...
1
vote
0answers
258 views
WCF endpointBehaviors extension not picked up when the name param is present?
I am trying to extend my service endpoint behaviour with custom MessageInspector, extension works fine and its picked up, but only if I don’t define the “name” parameter on behaviour tag and don’t ...
1
vote
2answers
814 views
Programmatic configuration of Exception-sending in WCF
I would like my Silverlight client to be able to display exceptions that have happened at the server during a WCF call.
Given my current code to create a WCF Channel (on the client):
// create the ...
0
votes
1answer
28 views
Set wcf service credentials in config file for a service with endpoints created in code
I want to be able to set the uri for a service endpoint in code while having the configuration for the security behaviour set in the config file.
The following gets me some of the way there, the ...
0
votes
1answer
25 views
WCF - Addressing issue when using custom endpoint behavior
I am trying to implement a custom endpoint/operation extension in my WCF service. I have wired up my custom extension in the websconfig so that I can decorate my service & and operations with an ...
0
votes
2answers
78 views
Modify returnvalue in WCF operation
I want to ensure that all our operations that return datasets in our WCF has .ExcludedSchema value set in Property SchemaSerializationMode.
Can I do this with a CustomBehavior?
I tried to implement ...
0
votes
0answers
85 views
How to use netTcpBinding with Message level security?
I am migrating my WSE3 services to WCF platform. Clients are going to be legacy WSE3 clients.
To achieve some requirements, I have created custom service behavior. The configuration (in web.config) ...
0
votes
1answer
53 views
What do you think is the most beautiful thing about WCF? [closed]
Does WCF make your life easier or harder? Do you think it's beautiful in nature or should you avoid its ugliness like the plague?
I like the idea of supporting REST + SOAP interfaces with simple ...
0
votes
1answer
39 views
WCF - Does a client must have the same behavior as the endpoint?
I have the following WCF endpoint configuration:
<service behaviorConfiguration="MyNamespace.ContainerManagementServiceBehavior"
name="MyNamespace.ContainerManagementService">
...
0
votes
1answer
357 views
WCF challenge (in AfterReceiveRequest method of IDispatchMessageInspector Interface)
I'm getting some values in AfterReceiveRequest and want to use that in BeforeSendReply in WCF.
Please help me, how I can do that. I'm working in C# project files. I can't use Seesion, ViewState here. ...