This is a good overview of an ASP.Net MVC 5
ASP.NET MVC Tutorial
This blog will hold favorite gadgets and graphic user interfaces that don't really fit in my main blog @ mmcelhaney.blogspot.com
Thursday, December 22, 2016
Thursday, May 12, 2016
compacting 2010 accdb database using VB 2012-VBForums
Here is the best method I found for programmatically compacting and repairing MS Access databases. It works!
compacting 2010 accdb database using VB 2012-VBForums
compacting 2010 accdb database using VB 2012-VBForums
Sunday, April 10, 2016
Friday, February 26, 2016
AirDroid
A really great app that lets you have remote access to your android device!
Instructions: AirDroid Allows Remote Access & Control Of Android Over Wi-Fi Via Web Browser
https://play.google.com/store/apps/details?id=com.sand.airdroid
Instructions: AirDroid Allows Remote Access & Control Of Android Over Wi-Fi Via Web Browser
https://play.google.com/store/apps/details?id=com.sand.airdroid
Labels:
AirDroid,
Android,
App,
Remote Access,
Remote control
ScreenShare (tablet) - Android Apps on Google Play
Here is an android App I wanna try out to remote control and view an android device on another device
ScreenShare (tablet) - Android Apps on Google Play
ScreenShare (tablet) - Android Apps on Google Play
Labels:
Android,
App,
Remote Access,
Remote control,
Screen Share
cardboard-games | all about google VR cardboard and Virtual reality games
Here is a link to VR cardboard games to try!
cardboard-games | all about google VR cardboard and Virtual reality games
cardboard-games | all about google VR cardboard and Virtual reality games
Wednesday, January 20, 2016
Throttling WCF
I found some really great articles on configuring throttling for WCF Services
From
From
I was looking up resources via Google on the entire concept of throttling in WCF. There are some very good pages if you use Google; sadly, MSDN is most definitely not on the list as it is practically useless for anything except class definitions. I decided to try to put into one document an overview of how throttling works, along with some sample projects to help get your head around it.
WCF Performance Tuning
WCF is a programming platform that allows us to build, configure and deploy the network distributed services. Basically WCF works on a Service oriented concept. There are some points that can help us to improve the performance of WCF.
Windows Communication Foundation (WCF) includes a large set of performance counters to help you gauge your application's performance.
WCF throttling provides some properties that you can use to limit how many instances or sessions are created at the application level. Performance of the WCF service can be improved by creating proper instance.
Attribute | Description |
---|---|
maxConcurrentCalls | Limits the total number of calls that can currently be in progress across all service instances. The default is 16. |
maxConcurrentInstances | The number of InstanceContext objects that execute at one time across a ServiceHost. The default is Int32.MaxValue. |
maxConcurrentSessions | A positive integer that limits the number of sessions a ServiceHost object can accept. The default is 10. |
Service Throttling can be configured either Adminstractive or Programatically
Subscribe to:
Posts (Atom)