Search Results

2
votes

Application pool error

That looks like the IIS worker process is crashing. If you have multiple sites/applications running on the same AppPool, I'd start by isolating them one at a time into separate AppPools. You'll pro …
1
vote

ChannelFactory Reuse Strategies

If you're using .NET 3.0 SP1 and up and don't need special stuff that requires handling channels directly, then the best option would be to just use client-side proxy classes derived from ClientBas …
0
votes

Exception Logging for WCF Services using ELMAH

I haven't tried doing this explicitly with the REST stuff, and haven't used ELMAH myself, but another option worth looking into might be to hook into WCF using an …
2
votes

RenderControl from within WCF service fails; ASMX works.

Have you tried turning on ASP.NET compatibility mode in your WCF configuration? The error is likely related to the …
1
vote

Callback with NetTCPBinding

Look into using Duplex Messaging. NetTCPBinding supports it natively, un …