Saturday, November 15, 2014

Microsoft Visual Studio 2015 for every developer in every platform

Microsoft release the ultimate developer tool next version for preview. Now  you can download it from Microsoft Visual Studio downloads . It is designed for support n every developer platform.  And Microsoft enables the access to developer platform for developers as open source project It is one of favorite thing to my self. hopefully it will rapidly improve the new feature additions to the visual studio. in 12 Nov 2014 Microsoft announced...

Wednesday, November 12, 2014

NodeJs web service With MongoDb

NodeJs is one of the powerful Lagrange that can do lot of things in programming world. When size of data become larger most of databases not can handle them efficiently. Therefor it leads to the change of database structure. Relational (SQL) database is not the best solution in most cases. NoSQL (Not Only SQL) databases are the best solution in those situations. One of the best NoSQL databse is MongoDb. You can follow above hyperlinks to download...

Thursday, November 6, 2014

Authentication with third party Auth providers in new era of Mobile Apps

When you are developing app, to increase security and manipulate users without taking user details is use authentication providers help such like Live, Google, Facebook, twitter , linked in, flickers etc. With the newer versions of mobile BCL is not supported the olde way of authenticating with third party SDK's. All the BCL are updated with 8.1 and Universal apps. With this post I'm gonna explain how to implement those authentication (ex: facebook) 1. you need to have facebook app. (http:\\developer.facebook.com) To implement the...

HttpClient Caching

Is any one of you have an experience on when send http request through http client the response become the same (no change) even your source of the response (server) is updated. It is the way that default http protocol behaves By default HttpClient use a cache to store responses that come up with response headers without Cache-Control header. ( Ref: HTTP Header fields) In a scenario you need to change the cache behavior with HttpClient you can have two options 1. Edit the service (server) to response with relevant cache headers 2. Modify...