Sud
Sud

Reputation: 25

How to Load Test wpf application that uses WCF web services to communicate?

I need to find out the performance of my application.This application works as follows-

Which tool would be the best for this scenario?

Upvotes: 0

Views: 986

Answers (2)

ChrisWue
ChrisWue

Reputation: 19020

For automated load testing you probably need two things:

  1. A database server with data in it. There is a question regarding generating test data: Creating test data in a database
  2. You can use the UI automation framework to simulate user input in your WPF app.

Then setup your server and run as many clients as you want to see when it falls over.

Upvotes: 1

CHowell
CHowell

Reputation: 85

There are a couple of excellent tools. Telerik has a good tool for profiling both a .NET windows application as well as a WCF service. I've also found that JetBrains has another excellent profiler. I've used Jet Brains to profile, WCF code as well as windows applications. If you're app communicates over HTTP. Fiddler could be another good

Upvotes: 0

Related Questions