Check this page. Launch the IBM Thin Client for Enterprise JavaBeans (EJB) for more information.
What all libraries do I need to include in the classpath?
You will need com.ibm.ws.ejb.thinclient_8.5.0.jar (located in app_server_root\runtimes ) and endorsed_apis_8.5.0.jar (located in app_server_root \ runtimes \ endorsed). Copy the compressed jar to JAVA_JRE\lib\endorsed
How to build a search string?
Call your application as follows:
<java_install_root>\bin\java -classpath com.ibm.ws.ejb.thinclient_8.5.0.jar;<list_of_your_application_jars_and_classes> -Djava.naming.provider.url=iiop://<your_application_server_machine_name>:<orbPort> <fully_qualified_class_name_to_run>
If you have security enabled on your server and require SSL, you need to add the following:
-Dcom.ibm.SSL.ConfigURL=file:///home/user1/ssl.client.props -Dcom.ibm.CORBA.ConfigURL=file:///home/user1/sas.client.props
you can find these files in the WebSphere installation files, in PROFILE_ROOT\properties
source share