java - Applet can't find classes in weblogic 11 -


i have applet , few libraries in jar files. obviously, required classes deployed applet added them library path in ide (jdeveloper). can't access these classes. applet freeze ups without errors. maybe caused security permissions ? here structure in deployment archive (war)

web-inf     classes             other_packages     lib       jar libs here applet.html   package of classes, don't know why duplicated 

here html file:

<applet code="my.base.applet1"    height="200" width="200" mayscript align="bottom">this browser not support applets. </applet> 

i tried add jar libraries , works if open html file applet local disk. have specify path libraries archive="web-inf/lib/commons-logging.jar". if use "commons-logging.jar" in official tutorials causes "class not found" error. can't find these jar files archive="web-inf/lib/commons-logging.jar" when deployed on server , accessed through http.

i use jdeveloper , deploy html, applet , libraries war file weblogic 11.

i tried codebase attribute both codebase="/bea_wls_internal/classes/" , additional "appname@componentname" specified codebase="/bea_wls_internal/classes/appname@componentname". maybe use "appname@componentname" wrong there few not clear examples how use it.

any appreciated.

resources in web-inf private server. resources not offered browsers.

you can check typing ('http:' or 'https:' prefixed) url pointing resource in web-inf browser's address bar , hitting enter.


Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -