Windows Communication Foundation is an API for the .NET Framework for building connected, distributed, service-oriented applications under an SOA architecture. WCF supports interoperability with other WCF services deployed on Windows machines or services deployed on other operating systems, using ...
2
votes
1answer
73 views
Using WCF as an API for Database access by the GUI, or no?
Originally I asked this question on Stackoverflow but I was suggested to move the question here.
I've asked this question a while ago in MSDN forums but I'd like a second opinion from ...
0
votes
0answers
49 views
Authentication & Authorization and Auditing in WCF services
I'm trying to find out what are the best possible solutions to achieve Authentication, Authorization & Auditing in service oriented applications.
The scenario is as below :
1. WCF web service ...
2
votes
3answers
234 views
chat/game server best way to implement, is WCF the way to go? [closed]
I'm creating a game on wp7 and it will be an online game played between a max of 4 players. The game will be a turn based game. My question really is what is the best way to do this server wise? is ...
0
votes
1answer
69 views
Communication between WCF service [library] and Self-host [Winform]
Introduction:
I have a WCF service library and a self-host Winform.
service features is File explorer including (copy,move,delete,new folder,delete..etc) and Task Manager (run,kill,update list).
...
6
votes
3answers
151 views
WCF to Java webservices interop seems surprisingly problematic. Any good resources?
With a recent project our .Net based dev team has been tasked with integrating with a whole host of java based web services around the world, and we really have had a surprisingly (well, we are ...
7
votes
3answers
513 views
ASP.NET MVC vs WCF for REST API + Webpage usage
I think the discussion for programmatic service oriented usage vs human interaction is clear.
But if I were to create an application that makes use of both a programmatic API and a website that makes ...
3
votes
4answers
365 views
REST Service Authentication/Authorization
I have a WCF rest service that will be consumed by multiple clients. The information returned by the client requires me to know who they are, so that I can return information specific to them.
Is ...
0
votes
3answers
103 views
Solutions for software using many calls to a server
I am developing software that uses many calls to a server. On a client side it's a Silverlight application. Almost every time a user clicks on a button in it, it sends 1-5 WCF calls to a server. There ...
6
votes
1answer
273 views
How to build a good service layer in ASP.NET?
I have looked through some questions, technologies for building a good service layer but I have some questions regarding this that I need help with.
First some information of what I have for ...
3
votes
1answer
261 views
JavaScript client for talking with WCF server with WebSockets binding
I'm excited about the possibilities for duplex communication with WebSockets between a web browser and web server. I see that WCF for .NET 4.5 supports a WebSockets binding now, and I know there's a ...
1
vote
1answer
334 views
What security is used by default in WSHttpBinding (service side) or the WCF Test client (client side)?
I recently moved a service from BasicHttpBinding to WSHttpBinding (i.e. soap 1.1 -> soap 1.2). In WCF, using WSHttpBinding() makes it start using some default security settings. I presume the same ...
2
votes
2answers
336 views
If ASP.NET MVC 4 supports RPC style communication what does that mean for WCF?
From http://www.microsoft.com/download/en/details.aspx?id=28942
ASP.NET MVC 4 also includes ASP.NET Web API, a framework for building
and consuming HTTP services that can reach a broad range of ...
9
votes
2answers
85 views
Imitating Exchange Server's “RBAC AuthZ” in my own application… (is there something similar?)
Exchange 2010 has a delegation model where groups of winrm cmdlets are essentally grouped into roles, and the roles assigned to a user.
(Image source)
This is a great & flexible model ...
3
votes
2answers
228 views
How should an iPhone app connect to a .NET service?
I need to accept text and photo data from an iPhone app. Normally I would write a web service or a windows service with WCF for client server connections. I'm not familiar with iPhone apps, what is ...
1
vote
1answer
172 views
In Windows 8 will it be possible to use WCF in conjunction with HTML5/JS?
Correct me if I'm wrong but I've heard that communicating with a database in Windows 8 will more than likely be done with WCF when working with C#/XAML.
If this is true then will this also be the ...