Stories recently tagged with 'WCF'

WCF Data Service with SQL Azure(www.codegain.com)

submitted by codegaincodegain(2794) 1 year, 2 months ago

In this article we will expose database from cloud or SQL Azure as WCF Data Service. There two steps mainly involved in this,Creating local Database and migrating to SQL Azure and Exposing SQL Azure Database as WCF DATA Service. read more...

add a comment |category: |Views: 11

tags: another

Programmatically finding Binding Elements in WCF Binding(www.codegain.com)

submitted by codegaincodegain(2794) 1 year, 2 months ago

Binding is one of the important aspect of WCF Programming. It deals with, “How Service and client will talk to each other?” Binding is made up of different binding elements. When different binding elements are stacked together they form a Binding. Different binding types are made up of different binding elements. read more...

add a comment |category: |Views: 2

tags: another

WCF does not support compression out of the box, so fix it(omaralzabir.com)

submitted by oazabiroazabir(1805) 1 year, 3 months ago

WCF does not support compression over IIS. Even IIS does not support compression of SOAP messages by default. Learn how to fix both. read more...

add a comment |category: |Views: 1

tags: another

Contract first vs Code first WCF(www.instantiate.co.nz)

submitted by lukus7lukus7(135) 1 year, 3 months ago

Reflections on Contract First WCF and if it is worth the extra effort. read more...

add a comment |category: |Views: 8

tags: another

WCF return values cannot be of type IEnumerable!(nizarnoorani.com)

submitted by noorani786noorani786(342) 1 year, 3 months ago

So, I spent a few hours spinning my wheels trying to figure out why I’ve been getting the following exception: read more...

add a comment |category: |Views: 26

tags: another

Windows Phone 7 and WCF REST – Authentication Solutions(mytakeon.net)

submitted by EShyEShy(90) 1 year, 3 months ago

Two solutions for authentication from windows phone clients when using WCF REST services read more...

add a comment |category: |Views: 27

tags: another

Windows Phone 7 and WCF REST - Authentication(www.mytakeon.net)

submitted by EShyEShy(90) 1 year, 3 months ago

Authentication solutions for WCF REST service from Windows Phone clients read more...

add a comment |category: |Views: 45

tags: another

Agatha rrsl and WCF Collection types(softwarebytes.blogspot.com)

submitted by gnikolaropoulosgnikolaropoulos(41) 1 year, 3 months ago

A guide on when to use interfaces on WCF and when not. read more...

add a comment |category: |Views: 10

tags: another

100% Pure XAML, no code behind – Part 2 : No Model on Client, Server(milanche.blog.com)

submitted by bungleboozbunglebooz(1132) 1 year, 3 months ago

Solution from previous post http://milanche.blog.com/2011/01/100-pure-xaml-no-code-behind/ , we split to two part Server and Client : read more...

add a comment |category: |Views: 0

tags: another

A simple REST service in C#(www.progware.org)

submitted by iwannisiwannis(452) 1 year, 3 months ago

The first steps in implementing a RESTful service (GET Request) and hosting it. read more...

add a comment |category: |Views: 27

tags: another

Configuring WCF to handle complex data contracts and large data(www.vasylevskyi.com)

submitted by avasylevavasylev(49) 1 year, 3 months ago

Configuring WCF to handle complex data structures and large data is a tricky task. There are lots of MaxXXXX properties to tune and they’re in so many different configuration elements. Some are easy to figure from the exceptions, some give just failed http request error. In this post I described all required tuning in one place. read more...

add a comment |category: |Views: 17

tags: another

WCFContext and Inversion of Control in WCF with Unity(xhalent.wordpress.com)

submitted by xhalentxhalent(85) 1 year, 4 months ago

This posts covers how to implement a HttpContext -like WCFContext for WCF, and then how to leverage that to implement clean IOC/DI container integration with WCF, with a particular focus on Unity and ServiceLocator (so applicable to StructureMap implementations also). read more...

add a comment |category: |Views: 14

tags: another

WCF RIA Service Tutorial-Part 01(www.codegain.com)

submitted by codegaincodegain(2794) 1 year, 4 months ago

It may be bit late but let us learn WCF RIA together. I will be writing many parts on Learning WCF RIA Services. read more...

add a comment |category: |Views: 26

tags: another

CRM2011 CrmOnline CrmSvcUtil(blog.arkesystems.com)

submitted by ericsstollericsstoll(225) 1 year, 4 months ago

Step by step guide on using Dynamics CRM 2011 SDK crmsvcutil.exe with CRM Online. read more...

add a comment |category: |Views: 27

tags: another

WCF Versioning Guidelines(wcfpro.wordpress.com)

submitted by arielabarielab(65) 1 year, 4 months ago

Services exist in order to serve external clients. They do so by exposing a wide range of external interfaces which are later used by the clients to interact with the service. After initial deployment, and potentially several times during their lifetime, services may need to be changed for a variety of reasons, such as changing business needs, re-factorization of code, or to address other issues. Each change introduces a new version of the service. Each new service version potentially introduces changes to the external interfaces exposed by the service. Our goal, as developers, is to be able to freely change our service internals (and sometimes, when needed, external interfaces), and on the same time, allow existing and new clients to keep using the service. In order to do so, we need to form a set of versioning guidelines. read more...

1 comment |category: |Views: 328

tags: another

A Sneak Preview of WebSocket-enabled WCF Services(www.nikosbaxevanis.com)

submitted by baxevanisbaxevanis(30) 1 year, 5 months ago

Recently the Interoperability Bridges and Labs Center released a prototype implementation (in managed code) of two drafts of the WebSockets protocol specification: draft-hixie-thewebsocketprotocol-75 and draft-hixie-thewebsocketprotocol-76 The prototype can be found at HTML5 Labs. I put in this blog post all the information I found (until now) and snippets of code about how this can be done using WCF. read more...

add a comment |category: |Views: 51

tags: another