Download link for WCF REST Starter Kit

In case you were looking, the direct download link for the WCF REST Starter Kit is here:

http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=18830

The top link contains an .msi you can use, while the second link gets you the source code for the whole solution.

image

#1 Dan Shechter on 11.11.2008 at 5:57 AM

Hi,

I would love to get a response from you guys regarding why there is no more concrete support in Silverlight for WCF Rest services.

I'm specifically referring to a question I also posted in StackOverflow: stackoverflow.com/.../whats-the-most-

And even more specifically... Why can't I do this:

var cf = new WebChannelFactory<IStatusService>(new Uri("http://localhost:8000/server/status"));

var ss = cf.CreateChannel();

#2 Dan Shechter on 11.11.2008 at 6:42 AM

Ehm..

I just tried using WebServiceHost2 for my WCF hosting.

I really like the dynamic help feature.

I do have issues with an exception being thrown when I call host.Close():

Which is really from the Starter Kit:

protected override void OnClose(TimeSpan timeout)

{

throw new NotImplementedException();

}

Why is this currently not implemented?