2 Replies Latest reply on May 29, 2006 2:46 PM by cpegwilliam

    Applet in Porlet

    cpegwilliam

      any one who know how to put an applet into a portlet window?

      I get trouble in locating the .jar file when the porlet is loaded.

        • 1. Re: Applet in Porlet
          shagy69

          It should work as a normal applet. Just put the descriptors for portlets and in your jsp file where you have your applet tag make sure you point to the real uri in the codebase tag. This is the way i do:

          <APPLET WIDTH="400" HEIGHT="300"
           CODEBASE="<%=renderRequest.getContextPath()%>"
           ...
           ...
          </APPLET>
          


          Good luck!

          • 2. Re: Applet in Porlet
            cpegwilliam

            It works. Really Thanks!!!