Apr
27
2009
I’ve already blogged about the new Silverlight 3 Beta Duplex support here. In these days I’ve found some interesting articles and tips about this topic, so this is a list of links I’ve found useful:
no comments | tags: .NET Programming, Silverlight, Silverlight 3, SOA, WCF, Web Services | posted in .NET Programming, Rich Internet Applications, Service Oriented Architecture, REST, Web 2.0
Mar
22
2009
I’m testing the updated Duplex support available in Silverlight 3 Beta, the important news is the possibility to simplify and reduce the code in the client:
- now it’s possible to use the “Add Service Reference” functionality of Visual Studio to consume the service;
- in this way you the use of channels can be avoided by simply attaching a callback to an event.
I’ve prepared an example based on the material available on the official documentation, download the complete solution from here.
6 comments | tags: .NET Programming, Silverlight, SOA, WCF, Web Services | posted in .NET Programming, Rich Internet Applications, Service Oriented Architecture, REST, Web 2.0
Mar
21
2009
Great news:
Check out the original post by the Silverlight Web Services Team.
Remember also to download the samples available here.
no comments | tags: Silverlight, SOA, WCF, Web Services | posted in .NET Programming, Rich Internet Applications, Service Oriented Architecture, REST, Web 2.0
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
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