This post originated from an RSS feed registered with Java Buzz
by dion.
Original Post: Microsoft comes out with details on Indigo
Feed Title: techno.blog(Dion)
Feed URL: http://feeds.feedburner.com/dion
Feed Description: blogging about life the universe and everything tech
Ted has been itching to talk about Indigo. Now he can.
Day 2 of VSLive 2005 was 'indigo day'. They came out talking about the ABCs of Indigo:
A = Address. This is the end point that makes a service accessible.
B = Binding. Binding represents the transports, encoding, and protocols used by the service.
C = Contract. The contract consists of the operations and schemas for the messages sent and received by the service.
And look at some VB code for writing service impls:
Imports System.ServiceModel
<ServiceContract(Name:="MyService", Namespace:=http://tempuri.org/MyService)>
Public Class MyService
<OperationContract>
Function DoSomething(input as String) as String
'Perform some logic returning a string
End Function
End Class
Module
Sub Main()
Dim sh as ServiceHost(of MyService)
End Sub
End Module
Read More
Microsoft To Release Whidbey CTP, Avalon And Indigo For Windows XP Soon
TSS VSLive Coverage