I was able to configure the EJB Adaptor 6.0, fix 7 (IS 6.5 with WAS 6.0)
Few points to take a note :
Follow installation guidelines and then do following
IS needs to be started with IBM JVM which is shipped with WAS
In server.bat, we have to change the JAVA_DIR (SET JAVA_DIR=D:\IBM\WebSphere\AppServer\java\jre)
remove -server on JAVA_RUN as IBM JVM does not support -server option (set JAVA_RUN=%JAVA_EXE% %JAVA_MEMSET%
rem -server)
copy EJB jar (for example the sample which comes with WAS 6.0 → BasicCalculatorEJB.jar, BasicCalsulatorClient.jar, BasicCalsulatorClientCommon.jar. Although the later 2 jar might not be required, yet to check that but BasicCalculatorEJB.jar is required)
paste these jars in /WmEJBAdapter/code/jars
Append the path for the above jars in server.bat “APPEND_CLASSES”
Start IS
I found it strange to copy the EJB jar also inside adapter, but as far it is working , should be fine.
Also, IS 7.1 has some problem with EJB 6.0 adapter as it refuses to start with IBM JVM 1.4.2 which is shipped with WAS 6.0 due to mismatch of compiler versions.
Well, now looking in how to start IS 7.1 with IBM JVM.