Método de applet llamando desde Javascript

Tengo un applet para cargar algunos archivos de una carpeta específica y eliminarlos, pero algo está mal cuando llamo a una función de applet desde mi código javascript, cuando llamo a esa función desdeinit() funciona bien.

Mi código de applet:

public class Uploader extends Applet {
   String serverPath;
   String clientPath;
   private JSObject win;
   @Override
   public void init() {
       serverPath = getParameter("serverPath");
       clientPath = getParameter("clientPath");
       try {
           win = JSObject.getWindow(this);
       } catch (JSException e) {
           log.warning("Can't access JSObject object");
       }
       upload(topic,clientPath);
   }
   public void upload(String topic,String clientPath) {
       log.log(Level.SEVERE, "upload functiond");
       DefaultHttpClient client = new DefaultHttpClient();
       MultipartEntity form = new MultipartEntity();
       log.log(Level.SEVERE, "upload functiond2");
       try {
            File directory = new File(clientPath);
            log.log(Level.SEVERE, "upload functiond2.2");
            File[] files = directory.listFiles();
            log.log(Level.SEVERE, "upload functiond2.5");
            int i = 0;
            for (File file : files) {
                log.log(Level.SEVERE, "upload functiond2.6");
                i++;
                form.addPart("file" + String.valueOf(i), new FileBody(file));
                System.out.println("adding file " + String.valueOf(i) + " " + file);
                log.log(Level.SEVERE, "adding file " + String.valueOf(i) + " " + file);
            }
            log.log(Level.SEVERE, "upload functiond3");
            form.addPart("topic", new StringBody(topic, Charset.forName("UTF-8")));
            form.addPart("action", new StringBody(action, Charset.forName("UTF-8")));
            form.addPart("path", new StringBody(serverPath, Charset.forName("UTF-8")));
            HttpPost post = new HttpPost(serverPath);
      ....

y este es mi código javascript:

document.applet.upload(title,"c:\scan");

Cuando llamé desde javascript solo se imprimió el registro:

log.log(Level.SEVERE, "upload functiond2.2");

Tenga en cuenta que cuando llamo desdeinit método de applet funciona bien.

Envuelvo mi código en unaPriviligedAction, pero va solo un paso adelante y espera

log.log(Level.SEVERE, "upload functiond2.5");

Respuestas a la pregunta(1)

Su respuesta a la pregunta