I was having problems capturing SOAP requests to a local WCF service using Fiddler. To see these I tried a numebr of things, these final settings made the difference: Remove any filters Add SOAP custom filters using fiddler script, at the start of the class: and also into OnBeginResponse method: Enable SOAP filters
SOAP Explanation
A clear and concise description of the SOAP messaging standard and each of the component parts: http://www.soapuser.com/basics3.html A full specification of the SOAP messaging standard can be found here: http://www.w3.org/TR/soap/
XMethods
A cool web site listing free-to-access web serivces available on the Internet: xMethods.com
App_Offline.htm
Cracking informational post from Scott Guthrie - and I can't believe I'd never heard of this before!! Original post from Scott: http://weblogs.asp.net/scottgu/archive/2005/10/06/426755.aspx: Basically, if you place a file with this name in the root of a web application directory, ASP.NET 2.0 will shut-down the application, unload the application domain from the server, and stop processing... Continue Reading →
VSS Versioning, Merging and Branching
When creating a new version of software in VSS there is a nifty feature called Branching that exposes some cool merging capabilities for retro-fixing issues. Firstly, share the files:Drag and drop the files from VSS UI into the new project folder: The files will appear with a little shortcut icon to show they are shared:... Continue Reading →
ASP.NET Write Permissions
When writing a file from ASP.NET application, the target directory needs to have write permissions set for both the logged in account (maybe IUSER_[name]) and also the IIS_WPG account.For example, writing a file to http://localhost/app/results, where the application root (http://localhost/app/) maps to C:\Inetpub\wwwroot\app\The permissions on the root folder (C:\Inetpub\wwwroot\app\) can be readonly, but the permission... Continue Reading →