Feb
17
2009
What is WS-Discovery? As described in this excellent post by Jesus Rodriguez, WS-Discovery is an OASIS Standard that defines a lightweight discovery mechanism for discovering services based on multicast messages. Read the post for an example of its use in WCF 4.0.
no comments | tags: .NET Programming, SOA, WCF, Web Services | posted in .NET Programming, Service Oriented Architecture, REST, Web 2.0
Feb
3
2009
Click here to read the future plans for Delphi Prism, by Nick Hodges.
no comments | tags: .NET, .NET Programming, Delphi, Linux, Open Source, WCF, WPF | posted in .NET Programming, Delphi, Linux and Open Source, Programming, Rich Internet Applications
Jan
28
2009
Yi-Lun Luo has posted a great example in the forum about creating RESTful WCF services, click here to read the complete thread.
Useful links:
If you are interested in this subject, I also recommend the reading of this book by John Papa:

no comments | tags: REST, Silverlight, WCF, Web Services | posted in .NET Programming, Rich Internet Applications, Service Oriented Architecture, REST, Web 2.0
Jan
3
2009
As reported by the Web Services Team, Silverlight 2 supports custom SOAP headers.
A good working example can be found here, but it only uses WCF services, what about the “old” asmx ones?
I’ve modified the “SilverlightHeaders” solution to use both WCF and asmx, using OperationContext in the first case and HttpContext in the last, click here to download the complete solution.
1 comment | tags: ASP.NET, Silverlight, SOA, WCF, Web Services | posted in .NET Programming, Programming, Rich Internet Applications, Service Oriented Architecture, REST, Web 2.0
Dec
2
2008
Click here to download some useful examples, including a Duplex-service example and an implementation of SOAP faults and custom SOAP headers.
no comments | tags: Silverlight, SOA, WCF | posted in .NET Programming, Rich Internet Applications, Service Oriented Architecture, REST, Web 2.0
Nov
3
2008
One of the new features of .NET framework 3.5 SP1 is the possibility to serialize an object graph with circular references by using the standard xsd:ID/xsd:IDREF attributes.
Just mark your DataContract attribute with the IsReference=true property:
[DataContract(IsReference=true)]
public class Room
{
[DataMember]
public string description { get; set; }
[DataMember]
public Devices roomDevices { get; set; }
}
Check out this post by Zulfiqar for more examples.
no comments | tags: SOA, WCF | posted in .NET Programming, Service Oriented Architecture, REST, Web 2.0
Nov
1
2008
“The WCF REST Starter Kit is a set of features, Visual Studio templates, samples and guidance that enable users to create REST style services using WCF. The CodePlex Preview 1 release provides new features that enable or simplify various aspects of using the http capabilities in WCF, such as caching, security, error handling, help page support, conditional PUT, push style streaming, type based dispatch and semi-structured XML support. The WCF REST Starter Kit also provides Visual Studio templates for creating REST style services such as an Atom feed service, a REST-RPC hybrid service, Resource singleton and collection services and an Atom Publishing Protocol service. In addition, there are samples, documentation and other guidance that help to use these new capabilities.”
http://www.codeplex.com/aspnet/Wiki/View.aspx?title=WCF%20REST
More information are available here.
no comments | tags: REST, WCF, Web Services | posted in .NET Programming, Service Oriented Architecture, REST, Web 2.0