Search Results

1
vote
2answers
195 views

Can ADO.NET Data Services use named pipes as a transport

I am well aware that the Rest based approach is targeting HTTP. I would love to use the REST APIs and other goodness between processes on the same computer. Since ADO.NET data services is built o …
1
vote
4answers
205 views

How can I profile serialization overhead in my application

My application has a WCF service tier between the front-end and the database. Since we currently host in IIS6 we are using SOAP over HTTP. How can I find out how much real world time I am spendin …
0
votes
3answers
201 views

Is there a way to log or intercept First Chance Exceptions

Short of using a profiler, is there any way inside a running program to detect first chance exceptions? Ideally, I would like to record more detailed state information that is not available once t …
1
vote

How should I handle Session timeouts when using AJAX Web controls on an Aspx page?

On the server side you can detect that the session is expired and return a strong typed exception. On the browser side, you can specifically detect for that error and simply have the page refresh. …
0
votes

Will this WCF client side code cause a memory leak?

Don't forget that the proxy's don't correctly implement IDisposable. If an error occurs the code above will not clean up the connection and the handle will remain until the parent process is close …