Can anybody try and explain to me what happens to the class path variables that you define in WASD or RAD once you move you application to the application server.
What a I did is right click on the application project in the workspace go to properties and click on the
Java Build Path and than on the Libraries tab. Then click on Add Variable -> Configure Variable -> New and a variable name and the path to the library or the jar that you want to include. eg. Create a LOG4_J variable that points to you log4j.jar.
You can now use classes inside the jar inside your applications that you develop. My question is what happens if you jar up your application and deploy it to an application server. How does your Websphere Application Server map the LOG4_J variable to the log4j.jar on the application server?
The path is not the same that it was on you PC how will it find the jar?