The Artima Developer Community
Sponsored Link

.NET Buzz Forum
Application Center Test, VS, and robots.txt

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Jason Nadal

Posts: 184
Nickname: jnadal
Registered: Dec, 2003

Jason Nadal is an asp.net developer, dabbling in winforms from time to time.
Application Center Test, VS, and robots.txt Posted: Jun 18, 2004 9:41 AM
Reply to this message Reply

This post originated from an RSS feed registered with .NET Buzz by Jason Nadal.
Original Post: Application Center Test, VS, and robots.txt
Feed Title: Jason Nadal
Feed URL: http://www.asp.net/err404.htm?aspxerrorpath=/jnadal/Rss.aspx
Feed Description: Restless C#ding
Latest .NET Buzz Posts
Latest .NET Buzz Posts by Jason Nadal
Latest Posts From Jason Nadal

Advertisement
VS and ACT While attempting to write some stress testing using Application Center Test (that name just seems backwards to me), and stress testing a site with Robots.txt denying access to our authenticated folders for those search engine bots, I came across some interesting issues: 1) Lack of recorded SSL support (hence the (C)2001 on the about page -- this product is clearly dated). 2) If it sees robots.txt, even if that file allows the "Stress-Agent" user agent it claims to look for, it won't run the test 3) Visual studio integration doesn't allow you to change the option to ignore robots.txt 4) Lack of recorded SSL support (this really does annoy me! -- especially MS' workaround which I may post on separately) 1/4 I may tackle in a separate post; as for 2/3, by editing the non-included "properties.xml" in your Application Center Test project in visual studio, you can turn off cookies with the following section of xml at the top of the file: <DefaultValues > <Project > <ProxyEnable type="bool" value="false"/> <ProxyName type="string" value=""/> <ProxyPort type="long" value="80"/> <KeepOneRecycledFile type="bool" value="false"/> <RecycleSize type="long" value="20"/> <LogPath type="string" value="(automatic)"/> <LogEnable type="bool" value="true"/> <CheckRobots type="bool" value="false"/> <UseAbortiveTcpClose type="bool" value="true"/> <SocketTimeout type="long" value="120"/> </Project> ... (the file continues on)... Save and you're good to go...just right click your test, and the output window in visual studio should tell you the test is running.

Read: Application Center Test, VS, and robots.txt

Topic: VBParser samples Previous Topic   Next Topic Topic: Learn to run as non-Admin

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use