Search Results

0
votes

Timeout when using WCF host on IIS 6

I wrote a few posts that explain why this happens in regard to IDisposable and …
3
votes

Visual Studio project type for a WCF app to work under IIS?

You don't need to use a special project type for hosing inside IIS. As long as you put the dlls in the bin folder and create a .svc file it will work. A standard web site project would do the trick …
2
votes

IIS hosted WCF-service + Windows auth in IIS + TransportCredentialOnly/Windows auth in basicHttpBinding

Check out this post by Nicholas Allen from the WCF team about this exact issue: htt …
0
votes

Capturing data from a .Net web-service that fails with an HTTP 500 error code

If you want a use a tool, use WireShark. Otherwise, the easiest way is to capture "everything" (assuming you are using ASMX) is to enable trace on system.net …
2
votes

Load testing WCF service (hosted on IIS)

Start with this: http://www.codeplex.com/WCFLoadTest It doesn't do everything possible with WCF, but it is the best …
3
votes

Want to host WCF Webservice as Windows Service as against to Hosting in IIS

If you are using IIS6, using a Windows Service is a must for many scenarios. Windows Services are 100% supported and a 100% safe way to host WCF. You can secure them with the same options as in IIS …