|
|
-
|
|
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......
|
|
-
|
|
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......
|
|
-
|
|
Client side Model binding with ASP.NET MVC 3 and KnockoutJs Knockoutjs is type safe client side library which provides declarative bindings of DOM with model data, Automatic UI refresh when view model changes etc. You can read more about KnockoutJS on its website. You can read more about AspNet MVC3......
|
|
-
|
|
This is third blog on security concept in WCF. You can read previous posts:
Something about Security in WCF- I
Implement windows authentication and security in WCF Service
Today I’ll describe how we can implement role based authorization using Windows
Grou......
|
|
-
|
|
This is continuation with previous post on “Security in WCF -I”. Here I’ll explain how we can implement windows authentication with transport level security in intranet environment. Windows authentication In intranet environment, client and service are .Net application.Windows authentication is m......
|
|
-
|
|
Authentication and authorization are key aspects for secure communication between client and server. The service needs to authenticate its callers and correspondingly allow to use allowed operations. Service level authentication is not only thing for secure communication, messages should also be sec......
|
|
-
|
|
Sometimes the client needs to programmatically verify whether a particular endpoint supports a particular contracts. Suppose Application administrator deployed application but it was pointing to development environment or some other address. If this feature implemented in application then he can get......
|
|
-
|
|
I personally feels there is still too much configuration in setting up WCF service infact Microsoft has reduced in new .net frameworks. If client application wants to consume WCF service then you need to create proxy class using Visual Studio and create configuration on Web/App config files (Visua......
|
|
-
|
|
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). ......
|
|
-
|
|
The Http bindings serialized messages into XML and send them via HTTP. HTTP is request response protocol, which is one way communication at a time. Caller sends requests to the server and server responds and sends response messages. Once the response is received connection gets closed whereas TCP is......
|
|