Not long ago I notice interesting “feature” of WCF REST, hosted in the IIS7: when size of data from client exceeds some value, service broke the connection. I created test service, where I could reproduce this issue, using WCF REST Starter Kit (you can download here actual release, Preview 2). One of service's method is: [WebHelp(Comment = "Sample description for DoWork")] [WebInvoke(UriTemplate = "DoWork", Method = "POST")] [OperationContract] public SampleResponseBody DoWork(SampleRequestBody request)...
ClickOnce is a useful deployment system, which consist of many interesting features, such as easy deployment and updating. This technology is introduced long ago, and it's good-described. I want to stop on some tips, which can help you. 1. Making offline-installer ClickOnce offer some mechanism for installing prerequisite software, before installing our application. It may be MS .NET Framework of necessary version, SQL Server Compact Edition, etc. For example, we have WPF application, which use SQL...