Uncheck below checkbox, and kill useless Qtagent32.exe. Reference:http://social.msdn.microsoft.com/Forums/en/vsautotest/thread/68558c34-55ad-4cf3-8ece-3113c87442ee
Welcome, just another weblog!
6
Aug
Uncheck below checkbox, and kill useless Qtagent32.exe. Reference:http://social.msdn.microsoft.com/Forums/en/vsautotest/thread/68558c34-55ad-4cf3-8ece-3113c87442ee
Tags: ASP.NET, CodeUI, unit test, visual studio 2010
4
Aug
I attempt to run code coverage testing in visual studio 2010, but get this error. “Cannot find any coverage data (.coverage or .coveragexml) files. Check test run details for possible errors.” After a few minutes with google’s help, it’s OK finally. First and foremost, there are two test settings available for you in visual studio 2010. [...]
27
Jul
I built up a team foundation server in my VM. It goes without saying that this tool is really impressive. I strongly recommed you to add the server into domain before you install the service. Dealing with machine name changes truly drive me nuts. Feature 1, two types of development processes are available Integrated with [...]
Tags: install, team foundation
15
Jul
几个星期前我写了关于Windows Server AppFabric的博客,许多朋友问到如何安装和配置Velocity。确实,在beta版本里这有点让人困惑,但是,在release版本里这一切方便多了。 如下就是某位朋友给我的建议: 你有尝试过安装一个appfabric吗?我建议你写篇博客,兴许可以用dasblog作为例子,我会非常愿意知道如何安装它,这确实有点太难了。 没问题,非常愿意效劳。我不会用dasblog来演示,但是我会给你一个可以在10分钟内实现的简单例子。 获取和安装AppFabric 你可以去http://msdn.com/appfabric直接下载,或者用Web Platform Installer. 使用installer选择AppFabric Cache。如果你使用的是windows 7,你可以安装IIS 7 Manager for Remote Administration从windows 7来管理你的远程IIS服务器。 注意:你也可以通过一个无人值守的安装,SETUP /i CACHINGSERVICE,来获得caching服务。 配置工具框会跳出,提示你进行一个简单的安装向导。你可以选择安装AppFabric Hosting Services中的Monitoring和Workflow Persistence,因为我只是为了实现caching,所以跳过了它。 Velocity Caching Service需要知道去哪里存储配置项,能用两种方式,数据库或者共享的XML文件。如果你使用XML,你需要确保service account有相应的权限。在这里,我选择使用数据库。向导会帮你完成配置工作。单击Next然后确认完成。 配置数据库。 好了,我们看看它的功能吧。 从PowerShell启动和管理你的内存集群 咋弄呢?先去开始菜单,输入Caching,你会看到一个叫”Caching Administration Windows PowerShell”的选项。这里就是你连接到cache的入口,此外它还提供了检查状态,创建一个新的cache等功能。记得使用管理员的帐号运行它。 如果你键入”get-command *cache*”你会看cache management的所有不同的命令。我输入start-cachecluster。 C:\> Start-CacheCluster HostName : CachePort Service Name Service Status Version Info ——————————– ————————— —————— ——————— [...]
9
Jul
The plugin I found is too heave for our current request, therefore, I wrote a simple and light one. You can find the demo from here. /* * jQuery float it plugin * Version 1.0 (8-July-2010) * @requires jQuery v1.4 or later * * Copyright (c) 2009-2010 Tony ZHOU * Dual licensed under the MIT [...]
5
Jul
It’s a great favour for me to get the translation authorization from Scoott Hanselman, who is a famous technical blogger focus on .Net platform.
Tags: scott hanselman, translation
14
Apr
Our team gain the event log from terminal server located in Paris frequently. Time zones and Daylight Saving Time (DST) are sometimes confusing. If you use Event Viewer, DST can cause unexpected behavior because Event Viewer changes the displayed time (and possibly the date) for events that have already occurred. For example, if an event [...]
17
Feb
希望能帮到遇到同样问题的人。 这周遇到一个问题就是本地cookie会被ie禁用,昏倒,我都加了trust site了还是没有用。 搞了好久发现应该是zone里面的一个节点1A10的数值不知道什么时候变成了0x00000003,应该是0x00000000。 我倒阿。
9
Feb
A GUID is a 128-bit number calculated so that it is globally unique after 100 nanoseconds (or so). However, if you call guid.tostring(), it will return a string in low-case, meanwhile, the GUID in database will be in upper-case. That could result in some weird problems, unfortunately, I met this kind of issue last week [...]
Tags: GUID