Bug 55242

Summary: BeanShell Client jar throws exceptions after upgrading to 2.8
Product: JMeter - Now in Github Reporter: Wojtek <wojtek.oledzki>
Component: MainAssignee: JMeter issues mailing list <issues>
Status: RESOLVED FIXED    
Severity: regression    
Priority: P2    
Version: 2.8   
Target Milestone: ---   
Hardware: PC   
OS: Linux   

Description Wojtek 2013-07-11 16:54:16 UTC
script
----
properties = JMeterUtils.getJMeterProperties();
Iterator i = properties.keys();
while(i.hasMoreElements()) {
  String me = i.nextElement();
  print(me + " : " + properties.get(me));
}
----

output
----
Connecting to BSH server on 127.0.0.1:9000
Reading responses from server ...
Exception in thread "main" B... disconnected from server.
java.net.SocketException: Socket is closed
	at java.net.Socket.shutdownOutput(Socket.java:1425)
	at org.apache.jmeter.util.BeanShellClient.main(BeanShellClient.java:79)
Exception in thread "Thread-0" java.lang.NoClassDefFoundError: org/apache/jorphan/util/JOrphanUtils
	at org.apache.jmeter.util.BeanShellClient$SockRead.run(BeanShellClient.java:111)
Caused by: java.lang.ClassNotFoundException: org.apache.jorphan.util.JOrphanUtils
	at java.net.URLClassLoader$1.run(URLClassLoader.java:217)
	at java.security.AccessController.doPrivileged(Native Method)
	at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:321)
	at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
	at java.lang.ClassLoader.loadClass(ClassLoader.java:266)
	... 1 more
----
Comment 1 Wojtek 2013-07-11 17:21:22 UTC
copying lib/bshclient.jar from 2.7 fixes the issue.
Comment 2 Sebb 2013-07-12 00:33:26 UTC
Thanks for the report; it's broken in 2.9 as well.
Problem is that the code calls an external method and the class is not present in the jar.
Comment 3 Sebb 2013-07-12 00:41:04 UTC
URL: http://svn.apache.org/r1502404
Log:
BeanShell Client jar throws exceptions after upgrading to 2.8
Bugzilla Id: 55242

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/util/BeanShellClient.java
    jmeter/trunk/xdocs/changes.xml
Comment 4 The ASF infrastructure team 2022-09-24 20:37:54 UTC
This issue has been migrated to GitHub: https://github.com/apache/jmeter/issues/3164