Gokul Nath KP
Gokul Nath KP

Reputation: 15574

JMeter with Java Swing Application

When intergrating with web application, we need to provide the URL and Port number, so that JMeter can start recording.

But if you have a Java Swing Application, is it possible to intergrate with JMeter?

Upvotes: 0

Views: 1453

Answers (2)

robjohncox
robjohncox

Reputation: 3665

With a bit of effort this should be entirely possible given that JMeter is written in Java. You can download the source code from here, and once you have that it will be a case of finding the right classes in the source code which run tests using JMeter & report the results, and you should then be able to call these from your own application.

Upvotes: 0

Thihara
Thihara

Reputation: 6969

From their web site :

Can load and performance test many different server types:

    Web - HTTP, HTTPS
    SOAP
    Database via JDBC
    LDAP
    JMS
    Mail - SMTP(S), POP3(S) and IMAP(S)
    Native commands or shell scripts

So I'm going to have to say no...

Upvotes: 3

Related Questions