Where is WebLogic Jar containing javax.servlet in 10.3?

Starting with WebLogic 10, BEA externalized the implementation of API specs from weblogic. Jar into various "modules". They now bundle a new api.

Jar in {BEA_HOME}/wlsever_10.3/server/lib that contains just a MANIFEST. MF which points to {BEA_HOME}/modules/*.jar.

Starting with WebLogic 10, BEA externalized the implementation of API specs from weblogic. Jar into various "modules". They now bundle a new api.

Jar in {BEA_HOME}/wlsever_10.3/server/lib/ that contains just a MANIFEST. MF which points to {BEA_HOME}/modules/*.jar. These modules include all API specifications as well as features provided BEA/ORACLE.So, for Servlet API 2.5, indeed include {BEA_HOME}/modules/javax.

Servlet_1.0.0.0_2-5.jar.

Not does this answer my question but clarifies the api.jar. I had seen it referenced but didn't under stand it since it is empty and why it didn't work in my dev environment. Thanks – bkoch Dec 6 '09 at 15:51 You're welcome.

Glad you found this helpful. – Pascal Thivent Dec 6 '09 at 16:04.

I found them. For those that need answer they are located here: $BEA_HOME/modules/javax. Servlet_1.0.0.0_2-5.jar.

I don't do weblogic, so I can't point the exact location, but I can at least hint that JAR files are basically ZIP files which adhere a special folder structure and have a different extension. Knowing that fact, you should be able to use any ZIP tool to your taste to open/extract them and take a look in the folder/file structure yourself. To ease the job, you can also grab WinRAR which has a Search function with which you can search for folders and files in JAR files.

I am doing development on Linux so I don't have WinRAR. But your approach was excellent and gave me a good idea. So I threw this bash command-line to accomplish the same thing.

For f in *. Jar; do if jar -tf $f | grep -q javax. Servlet; then echo $f; fi; done – bkoch Dec 4 '09 at 20:01.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions