Tagged Questions
The wcf-configuration tag has no wiki summary.
8
votes
2answers
6k views
WCF: using streaming with Message Contracts
I am trying to use the WCF streaming with Message Contracts, because I need additional parameters beside the stream itself.
Basically I am creating a file upload and download service, with some ...
7
votes
2answers
2k views
WCF Client Configuration: how can I check if endpoint is in config file, and fallback to code if not?
Looking to make a Client that sends serialized Message objects back to a server via WCF.
To make things easy for the end-developer (different departments) would be best that they didn't need to know ...
5
votes
3answers
6k views
WCF: Configuring Known Types
I want to know as to how to configure known types in WCF. For example, I have a Person class and an Employee class. The Employee class is a sublass of the Person class. Both class are marked with a ...
5
votes
4answers
5k views
How to configure WCF in a separate dll project
Aloha
I'm developing a web application (ASP.NET 3.5) that will consume a number of web services. I have created a separate dll-project for each web service: these projects contains the service ...
4
votes
4answers
512 views
WCF Service Communication Exception Due to Parameter Size
I've got a WCF Web MEthod that takes in an XElement object as a parameter. For one of my XML files (sized at 600KB or so) this works just fine, however, for this bigger XML file (about 5MB) I get a ...
3
votes
2answers
413 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
2answers
506 views
WCF ChannelFactory configuration outside of App.config?
I've got a Windows Service that makes use of a plugin system. I'm using the following code in the plugin base class to provide a separate configuration per DLL (so it'll read from plugin.dll.config):
...
3
votes
2answers
413 views
Can everything be done programmatically in WCF or are configuration files for certain features?
I have a strong preference for working in code, leverage IntelliSense and opening up all of the power of the C# language to work with WCF but I want to make sure that I'm not moving in a direction ...
2
votes
2answers
55 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
1answer
202 views
WCF Service hosted in VS Dev server works, in IIS not so much
I have a WCF Service that works just fine in the VS development server, but if I go to project settings and change the Web tab servers to use Local IIS Web Server instead I get a ...
2
votes
2answers
275 views
Easy way to startup NHibernate in a WCF project
I'd like to use an NHibernate startup module for my WCF project like the one I use for my ASP.NET MVC projects. Jeffery Palermo outlines the startup module that I use in his post ASP.NET MVC ...
2
votes
1answer
3k views
netsh htpp add urlacl : add reservation for a group
This article explain how to configure a namespace reservation for a user using netsh.exe as follows:
netsh http add urlacl url=http://+:80/MyUri user=DOMAIN\user
The parameter user= is said to ...
2
votes
1answer
410 views
Are there any WCF Configuration Tools out there that will make the job easier
Are there any tools that go beyond requiring deep and intimate knowledge of every configuration option and nuance and will just setup an application with a minimum of inputs. Something like a wizard ...
1
vote
1answer
175 views
Crossdomain WCF - Silverlight configuration error a:ActionNotSupported
I tried to run WCF functions from SilverLight Code. WCF is runing on site www.my-site.com
Silverlight application is downloaded from site www.my-site.com as < IFrame/> part of html page which is ...
1
vote
1answer
79 views
How to specify implemented Service Contract dll in WCF config
My service implementation is present in Calc.dll.
WCF Service is present in Svc.dll
I have added contract inside endpoint tag in the WCF app.config file of Svc.dll.
<service ...
1
vote
1answer
107 views
WCF Test Client - Any way to save the services/settings to a file to reload easily later?
The WCF Test Client is a really powerful tool. I can avoid creating a new console app to test my services. However, what is annoying is that I can't seem to save the services/config I add to the ...
1
vote
3answers
55 views
Why IMetadataExchange is invisible?
I have created WCF Service that is hosted with IIS 6 (Windows XP):
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior ...
1
vote
0answers
438 views
netsh does not work for AddressAccessDeniedException: HTTP could not register URL
When another developer tried to run the service through vs 2010, they received the error:
Please try changing the HTTP port to 88 or running as Administrator.
...
1
vote
2answers
50 views
WCF bindings/security configuration for Intranet that uses Mac and Windows?
What bindings and security configurations are best for an environment with Windows and Mac Computers?
1
vote
1answer
1k views
configuring web.config (system.serviceModel) for a site which talks to multiple web services (some through dlls)
I've a solution which consists of a web project and a class library project. The web project solution directly references a wcf service. There is a 2nd wcf service, but it is the class library project ...
1
vote
1answer
316 views
Modifying the service host base addresses without rewriting the application configuration file
I am trying to adjust the host base address prior to launching the WCF service host to add an instanceName to the base address:
var baseAddresses = Utils<Uri>.EmptyList;
var cfg = ...
1
vote
1answer
338 views
Adding endpoints implementing different interfaces to an AJAX-enabled WCF Service
I have an AJAX-enabled WCF service and everything works fine with the ajax endpoint. Now I want to add another wsHttpBinding endpoint that corresponds to another interface that is subset of the AJAX ...
0
votes
0answers
40 views
Can I hide http endpoints or https endpoints from the client depending on which protocol they want to use
I've followed various instructions from here to configure my WCF service to support both http and https. Basically, they've all pretty much pointed out that I need to duplicate my endpoints for each ...
0
votes
1answer
142 views
WCF wsHttpBinding with certificate message security
I am trying to create client and service applications with Message security with Certificate. But I have some errors all the time and can't make it work. Could somebody suggest what is wrong with my ...
0
votes
1answer
145 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
1answer
116 views
WCF 4.0 REST IIS Hosted Long Running Operation No Response after 1 hr
I have an IIS Hosted WCF REST 4.0 service. When I execute a rest operation that takes over an hour to run it never returns a response to the client. Instead I receive the following exception after 4 ...
0
votes
0answers
86 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
103 views
WCF Configuration for Endpoint in Another Project
I have two projects in a single solution. One project, let's call it MainProject, becomes an executable. The other project, let's call it ControlsProject, contains UserControl's and is referenced (and ...
0
votes
1answer
207 views
Configure WCF without using config file and instantiating proxy client with default constructor
I am not sure this is even possible to be honest,
I am wondering if there is a way of removing the use of the config file without having to override the creation of the client proxy. Let me give an ...
0
votes
3answers
207 views
Configuring the beast
Can anybody guide me on WCF configuration, I was getting errors (400) Bad Request and trace viewer told me that:
"The maximum message size quota for incoming messages (65536) has been exceeded. To ...
0
votes
1answer
119 views
WCF - question about endpoint element under system.serviceModel in config file
While implementing a WCF client endpoint, my config file had the following endpoint entry:
<endpoint address="http://localhost/MyProject/Services/MyService.svc/MyService"
...
0
votes
1answer
189 views
WCF - How to configure Site-level web.config and make all services use a same behaviorConfiguration
I have a site that host more then 60 services.
With the simplified version of the wcf configuration, i dont have to speficy all the services and its corresponding endpoints.
The question is how do I ...
0
votes
1answer
84 views
Adding AJAX-enabled WCF Service to the Solution throws an error
I am just trying to learn Ajax enabled WCF service, when I try to create a new web application and add new item "AJAX-enabled WCF Service" I get an error message that "The extension of type ...
0
votes
1answer
642 views
WCF 4 Rest Service on IIS Developer Express, Authentication Issue
When I host the "WCF 4 Rest Service Template" project (from template) in IIS Developer Express I get the following:
IIS specified authentication schemes 'IntegratedWindowsAuthentication, Anonymous', ...
0
votes
2answers
1k views
WCF Web Service Metadata Publishing Disabled Error
I modified my web.config to add a custom binding in order to increase the buffer and message size, and it seems like in creating the service element explicitly, it has somehow broken the reference to ...