| Hi,             I’m developing small
applications where I need to have 3 applets in the same html file (each one in
a different frame). The problem is that I’m having (sometimes) an access
denied problem. For checking purposes I used this simple test that reproduces
my problem (the SystemInfoApplet.html is the one that comes with the xmlblaster
distribution). As you can see the applet gets stuck after subscribing a
message)             Help will be appreciated. <html> <head> <base target="_self"> </head>       <frameset rows="33%,33%,34%">         <frame name="alerts"
src="" scrolling="no" target="_self"> 
         <frame name="alert" src="" SystemInfoApplet.html
" scrolling="no" target="_self">         <frame name="freeText"
src="" scrolling="no"
target="_self">       </frameset>                  <noframes>   <body topmargin="0" leftmargin="0"
rightmargin="0" bottommargin="0">   <p>Esta página utiliza frames,
mas o seu browser não as suporta.</p>   </body>   </noframes> </frameset> </html> |