Applet works in Windows Server and not in Unix server

My friends,

I have a signed applet working fine in a windows server and a client with win98. When a put this applet in a AIX/Unix server in same win98 client did not work.

The applet call a program in the client by Runtime.exec and a give "error=0".

Someone can help me ?

[304 byte] By [jimmycw74] at [2007-9-30 3:47:00]
# 1
Show the code with the runtimeexec line.Windows file system is different than UNix.Windows eg. Runtime.exec (c:/fileToRun.exe)*ix eg. Runtime.exec (fileToRun)
wew64 at 2007-6-29 15:00:24 > top of Java-index,Security,Signed Applets...
# 2

I Found the problem.

The path of executable was formated in this way :

"\\directory\\directory\\directory\\file"

(it work on windows client and windows server but not in windows client and unix server )

I change to this :

"/directory/directory/directory/file"

and it works.

jimmycw74 at 2007-6-29 15:00:24 > top of Java-index,Security,Signed Applets...