-- the file bsf.cls must be either in the BSF4ooRexx850 folder (no subfolder), or in the same folder as this program -- execute this file with rexxj G01T01A2.txt rexxObj=.bpClass~new rexxObj~servus say "I am a Rexx Object with a Java Connection" jproxy=BSFCreateRexxProxy(rexxObj) -- create a Java RexxProxy object jproxy~sendMessage0("servus") -- send via Java ::requires BSF.CLS -- get Java support ::class bpClass ::method servus say "hello from" pp(self)