A number of script and batch files must be updated to reflect your environment before you can enable application security.
Configuration batch and script files can be run against WebSphere® Application Server V6.0.2 and V6.1. Because WebSphere Application Server V6.0.2 and V6.1 have different classpaths, you must specify the WebSphere Application Server classpath before you run your script using commenting.
# The required WAS 6.0.2 jars. # export WAS_JARS=$WAS_HOME/lib/j2ee.jar:$WAS_HOME/lib/wsdl4j.jar # The required WAS 6.1 jars. export WAS_JARS=$WAS_HOME/lib/j2ee.jar:$WAS_HOME/plugins/ com.ibm.ws.runtime_6.1.0.jarTo run this script against WebSphere Application Server V6.0.2, uncomment the earlier WAS-JARS export line and comment the current WAS_JAR export line; for example:
# The required WAS 6.0.2 jars. export WAS_JARS=$WAS_HOME/lib/j2ee.jar:$WAS_HOME/lib/wsdl4j.jar # The required WAS 6.1 jars. # export WAS_JARS=$WAS_HOME/lib/j2ee.jar:$WAS_HOME/plugins/ com.ibm.ws.runtime_6.1.0.jar