Windows Communication Foundation is a part of the .NET Framework that provides a unified programming model for rapidly building service-oriented applications.
1
vote
2answers
82 views
Identity and Access Control in Web API vs WCF
Our team is looking to introduce Web API, MVC/ASP.NET implementation in our SOA. I am having a hard time trying to wrap my head around the identity and access control it has compared to WCF.
WCF has ...
16
votes
8answers
776 views
How do I manage the technical debate over WCF vs. Web API?
I'm managing a team of like 15 developers now, and we are stuck at a point on choosing the technology, where the team is broken into two completely opposite teams, debating over usage of WCF vs. Web ...
1
vote
0answers
116 views
Is OAuth (2.0) is the right choice to make WCF WebService secure?
I have WCF webservice which serves to various mobile application. This was implemented with typical HTTPS/SSL. But there are some cases like Replay Attack needs to be considered in the security ...
1
vote
4answers
119 views
Is Moving Entity Framework objects over a webservice really the best way?
I've inherited a .NET project that has close to 2 thousand clients out in the field that need to push data periodically up to a central repository. The clients wake up and attempt to push the data up ...
1
vote
0answers
47 views
Is Windows Workflow Foundation appropriate for a CPU-heavy async application?
At one of the DevDays conferences a presenter said that Workflow Foundation isn't just for applications that require persistence, but they can make it easier to write and maintain Async WCF code and ...
1
vote
1answer
56 views
Minimizing data sent over a webservice call on expensive connection
I am working on a system that has many remote laptops all connected to the internet through cellular data connections.
The application will synchronize periodically to a central database. The ...
2
votes
2answers
66 views
How do I reduce the number of WCF config files in a SOA?
After embracing the whole SOA thing, I've found that I'm gradually drowning in a sea of web.config and app.config files.
As an example, one system has 2 services that it interacts with. Each service ...
1
vote
1answer
132 views
Interfaces, Adapters, exposing business objects via WCF design
I know there have been countless discussions about this but I think this question is slightly different and may perhaps prompt a heated discussion (lets keep it friendly).
The scene:
I am developing ...
0
votes
1answer
72 views
Uses of WCF Binding
From MSDN, we have the following definition of WCF Binding
Bindings specify how a WCF service endpoint communicates with other endpoints.
At its most basic, a binding must specify the ...
0
votes
1answer
427 views
Why does DataContractJsonSerializer not include generic like JavaScriptSerializer?
So the JavaScriptSerializer was deprecated in favor of the DataContractJsonSerializer.
var client = new WebClient();
var json = await client.DownloadStringTaskAsync(url); // ...
0
votes
1answer
583 views
Implementing a claims-based security model to secure a WCF service
Currently, all of our web applications (and the WCF services they interact with) are run internally. Nothing is exposed to the web. We want to open up our web applications to the Internet and will ...
-1
votes
1answer
186 views
Why does my web site load fast locally and at home but slowly for our customer? [closed]
I'm having a frustrating problem that I need some advice with. I've written a ASP.Net web forms application that retrieves its data through a wcf web service. When I run it locally either on my ...
0
votes
1answer
380 views
Which design pattern is typically used when designing a WCF data services driven Winforms application?
Please excuse me as I am a bit new to the following technologies and practices. I have been given the task to create a management suite utilizing an MDI GUI. This suite will be the front end to a WCF ...
-2
votes
1answer
250 views
How do I create a web service with high amounts of traffic that works effectively with lots of different users? [closed]
I have created web services before that are used by a small number of users but have a new project that would have lots of users.
For each user that uses the services, this is what they would do:
1) ...
0
votes
1answer
689 views
ASP.NET MVC Web Site & WCF Web Service - Sharing functionalities
I have the following situation: I have to create a website and a web service that will share a part of the functionalities.
This is why I do not want to write code twice.
I have thought of the ...