Visual Studio Team Test ?

解决方案 »

  1.   

    It turns out that VSEnterpriseHelper.axd is the URL used by VSTS to trigger the runtime to load our tests into the web server (another entry on this in the future). Therefore that URL needs to be available to run. With the web.config we have all URLs (except CreateUser.aspx) are blocked to un-authenticated users, which means that VSEnterpriseHelper.axd cannot be accessed. There is one simple fix for this, allow un-authenticated access to the URL. You can add the following to your web.config and the testing code will work: <location path="VSEnterpriseHelper.axd">
      <system.web>
        <authorization>
          <allow users="*"/>
        </authorization>
      </system.web>
    </location>Hope that helps the next person who hits this problem, -----------------------------------------
    因为权限问题,按照上面配置你的web.config
      

  2.   

    http://localhost:6000/VSEnterpriseHelper.axd 
    不明白为什么出现 :我的工程也爱出现http://localhost:/VSEnter/priseHelper.asp 
    :是什么原因?
      

  3.   


    see
    http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=339779&SiteID=1https://blogs.msdn.com/echarran/archive/2006/04/06/570156.aspx