|
|
-
|
|
Synchronization Concepts There are different strategies to make your thread safe or synchronize. Some of features are below: Basic Synchronization Thread .Sleep : Blocks execution for provided time period. Thread.Sleep(0) ; //will do context switch Thread.Sleep(100); // will block execution fo......
|
|
-
|
|
Here I am trying to explain steps for how to use knockoutjs viewmodel, jquery ajax request in asp.net mvc3 project. I am taking practical example to show behaviour. This example will have simple UI screen with search textbox and button. When click on search button ajax request will go to se......
|
|
-
|
|
There are different types of bindings supported by WCF. Now question is which binding is suitable for your service.Following is list of frequently used bindings in WCF: BasicHttpBinding: If clients can be non-WCF. This exposes service to the outside world as if it was an ASMX (webservice). ......
|
|
-
|
|
This is my first post on NoSql database technologies. There have been drastic changes in database technologies over the few years. Increase in user’s requests, high availability of applications, real time performance forced to think on different databas...
|
|
-
|
|
This in continuation with previous post on QuickFix which explain how to connect to FIX Server and send order to Fix Server.
I don't have any environment to test now. I just want to give idea about how can we get market price from FIX server if broker/exchange is sending market price in FIX message......
|
|
-
|
|
Multithreading requires careful programming. For most tasks, you can reduce complexity by queuing requests for execution by thread pool threads. This topic addresses more difficult situations, such as coordinating the work of multiple threads, or handling threads that block. Deadlocks and Race Cond......
|
|
-
|
|
Handling exceptions in WCF service is different than usual exceptions handling in .Net. If service raise exception it should propagate to clients and properly handle by client application. Since Exception object is .Net specific so it cannot propagate to clients because clients can be of different t......
|
|
-
|
|
What is Refactoring? Refactoring of code helps to restructure the code to enhance performance, scalability, reusability and code readability. There could be chances that refactoring can result in breaking of application flow when you do refactoring of big chunks of code. It is better to do refactor......
|
|
-
|
|
I developed a sample application long time back to use WPF UI in multithreaded scenario. This application shows market prices in real time. I don’t have any exchange connection so I created arbitrary market price generator to simulate live environment. I am explaining step by step functional......
|
|
-
|
|
Some times it is needed to run visual studio as administrator for system level activities like if you want to setup IIS virtual directory in your visual studio project, To setup IIS settings etc. If you want to run visual studio as administrator once, ...
|
|