Problem with App Fabric Visual Studio 2013

I updated my solution for working with VS2013. Everything builds perfectly.

However, there seems to be a problem with initializing AppFabric and seems to hang on the line:

new DataCacheFactory(); 

The exact code works fine in VS2010, so it completely abandoned me!

+1
source share
1 answer

Can you take a dump of your client application when it is in HUNG state using the Debug Diagnostic 2.0 tool ( http://www.microsoft.com/en-us/download/details.aspx?id=40336 ) and then analyze the file Dump by simply double-clicking the .dmp file and seeing a column of the stream freezing when trying to create a DataCacheFactory?

This will give an idea of ​​where the thread is currently stuck and should help in figuring out the cause of the problem.

To collect a process dump, you can simply install the tool and open the tool, and then click "Cancel" in the "Rules Wizard" and go to the "Processes" tab, find your client process, and then select Create a full user Dump

0
source

Source: https://habr.com/ru/post/957055/


All Articles