Skip to content

manusovich/jmeter-xmpp-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

JMeter Xmpp Plugin

Usage

You can build plugin and run jmeter with it, by running maven command:

mvn package antrun:run -Djmeter.executable=<full path to jmeter executable file>

Description

XmppController

JMeter classpath issue

Latest Jmeter release (2.11) has issue in the code (JMeter.java). They trying to parse search_paths value with ';' instead of using system path.separator variable. That is why we are replacing all ':' with ';' in ant task before run jmeter:

   <loadresource property="runtime_classpath_fixed">
      <propertyresource name="runtime_classpath"/>
      <filterchain>
          <tokenfilter>
              <filetokenizer/>
              <replacestring from=":" to=";"/>
          </tokenfilter>
      </filterchain>
  </loadresource>

About

XMPP Plugin for JMeter

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages