The servicebehavior tag has no wiki summary.
4
votes
1answer
567 views
WCF - Custom Credentials & Security Tokens
I'm fairly new to WCF development and have run into a couple problems whilst learning the framework. I have a service api which must support both REST & SOAP. So far this has been easy to ...
3
votes
2answers
542 views
WCF ConcurrencyMode Single and InstanceContextMode PerCall
I have an issue with my wcf service config.
I would like every call to my service create a new instance of the service.
For the concurrency I would like to one call is finished before another start.
...
3
votes
1answer
3k views
An error occurred when verifying security for the message
When I try to call a WCF service I am getting the following message "An error occurred when verifying security for the message."
When I remove the custom authenication the service works no problem. I ...
2
votes
2answers
73 views
WCF - How to attach serviceBehaviors to WCF endpoint (no <service> tag)
I am consuming a third party WCF service and its config is below (a portion of it). I wanted to assign serviceBehaviors to endpoint, but there is no <service> tag here. In this case, how do you ...
2
votes
3answers
724 views
WCF Error “Maximum number of items that can be serialized or deserialized in an object graph is '65536'”
I am receiving the following error on a WCF call:
Maximum number of items that can be serialized or deserialized in an
object graph is '65536'
I've read a ton of forum posts and many of them ...
2
votes
1answer
75 views
Can I call multiple operation contracts when ConcurrencyMode is Single
I have a WCF service with 3 operation contracts. I set [ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Single)] for this service. My basic doubt is can I able to call all the 3 service at a time or ...
2
votes
1answer
121 views
Why is a ServiceBehavior an attribute of the Service Class and not the Contract?
I've found plenty of places where people point out that a ServiceBehavior should be an attribute of the service class and not the contract, and this definitely seems to be the case. Why is this?
2
votes
0answers
1k views
WCF service dataContractSerializer maxItemsInObjectGraph in web.config
I am having issues specifying the dataContractSerializer maxItemsInObjectGraph in host's web.config.
<behaviors>
<serviceBehaviors>
<behavior name="beSetting">
...
2
votes
1answer
312 views
How many instances exists when a InstanceContextMode.Single WCF service exposes multiple endpoints?
Does the ServiceBehavior setting InstanceContextMode.Single sets a single instance regardless of the number of endpoints?
1
vote
0answers
42 views
Is the ServiceBehaviour's namespace important for web service versioning?
Simple, as that... is the ServiceBehaviour's namespace important for web service versioning? Meaning that for forward/backward compatibility of clients to server is this namespace involved in any way?
...
1
vote
1answer
158 views
How to get WCF and Java clients to work. Expert help needed
Background (a wee bit long):
A few years back I wrote for a customer a WCF service that is configured to use the basicHttpBinding with security mode = "Transport" with clientCredentialType = ...
1
vote
1answer
207 views
Disabling web.config inheritance for behaviorExtensions
I'm trying to add a web application in IIS under an existing (root level) website. The root level website's web.config file defines certain behaviorExtensions under system.serviceModel:
...
1
vote
2answers
210 views
Is there a .net equivalent of a Java initialization Servlet?
Is there a .net equivalent of a Java initialization Servlet?
While we're at it, the equivalent of a filter?
And finally if said thing exists (filters) can these run before/after a request is made to ...
1
vote
1answer
1k views
WCF method throws an exception of maximum items in an object graph is '65536'
I get an exception when there are too many objects returned:
The formatter threw an exception while trying to deserialize the message: There was an error while trying to deserialize parameter ...
1
vote
2answers
331 views
Specifying a WCF Service session to persist indefinitely
I'm new to WCF, so maybe this is something best done in another way.
Right now I have a collection of WCF Services, but I am trying to build in functionality which sends weekly emails. To do this I ...
0
votes
1answer
21 views
Exclude the WCF ServiceBehaviorExtension for one particular endpoint
I would like to exclude the custom Behavior extension which expects a custom Header for one of my service. Is it possible? I read about RemoveBehaviorExtension element but there is no mention on where ...
0
votes
1answer
53 views
Is it Possible to turn on IncludeExceptionDetailInFaults with castle windsor fluent api?
I am getting this exception.
The server was unable to process the request due to an internal error.
For more information about the error, either turn on
IncludeExceptionDetailInFaults (either ...
0
votes
0answers
99 views
Error in WCF Endpoint behavior Extension in config
I am trying to create a behavior extension so I can trace my wcf messages. However I keep getting a runtime error:
System.Configuration.ConfigurationErrorsException: An error
occurred creating ...
0
votes
0answers
18 views
WCF 4- Two svc files hosted in one virtual directory, one service doesn't get the custom behavior
I have WCF 4.0 service hosted in IIS 7.I have 2 svc file which get instantiated using their own CustomWebHostFactory classes.
The web config defines both services under services tag and each of the ...
0
votes
1answer
173 views
Adding attribute to BehaviorExtensionElement
I'm adding a custom behaviorExtensionElement for WCF and want to add an attribute that can be read when the configured element is being read, e.g.
<system.serviceModel>
<extensions>
...
0
votes
0answers
93 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
518 views
Simple example of IServiceBehavior and ApplyDispatchBehavior
I am trying to Plug Unity into a WCF Service Library with a Service Behavior.
I need a simple bare bones example of a Service Behavior.
All I want to do is setup my IOC Unity Container on startup of ...
0
votes
1answer
176 views
Can I create a ServiceBehavior that will replace the OperationBehaviors I already apply to every Operation in my Service?
I know all the operations in this service will require the same OperationBehavior.. could I implement a ServiceBehavior that will perform the same functionality before the operation is run?
I ...
0
votes
1answer
1k views
Does implementing IServiceBehavior affect ServiceBehavior attributes?
I have a WCF service. I need to implement IServiceBehavior in my class that implements ServiceContract. I have some some attributes on that class that specify service behavior. I wanted to ask if ...