使用 VS2008 负载测试功能获取无 cookie 会话页面的统计信息
我正在使用 Visual Studio 负载测试工具对网页进行负载测试,但在显示结果时遇到问题。问题是无 cookie 会话。每次新用户访问页面时,页面 URLL 都会发生变化,并且我无法计算平均页面响应时间。对此我们能做些什么呢?
I'm load testing a web page using visual studio load testing tool, but I have problems displaying results. The problem is cookieless session. Everytime new user comes to a page, page URLL changes and I'm not able to calculate average page response time. What can be done about it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们将 cookie 移至查询字符串。
在此之前,我编写了一个不区分大小写的 url 验证事件处理程序,该处理程序忽略 Url 的会话部分。下面的仅消除了区分大小写的情况。
调用者
现在我需要做的就是添加
到 Web 测试中以获得不区分大小写的调用。
请注意,此代码包含以下不适当的行
We moved the cookie to the querystring.
Before that I wrote a case insensitive url validation event handler that ignores the session component of the Url. The one below only removes case sensitivity.
Called by
Now all I need to do is add
into a web test to get case insensitive calling.
Be aware that this code contains the following innappropriate line