Applet fails to read value against Properties, with name=value pair, defined inside the htmls using "java_arguments" if specified values contains spaces in it. Putting properties value with spaces inside the "" with escape character "\" returns "\" only when read inside the applet
Try to load the following applet.
http://sqeweb.sfbay/deployment2/jitu/deployment_mustang_exec_ws/deployment/src/plugin/runtimeArgs/runtimeArgs/html/secure/TestUntrustedSecureMOE.html
If read value is "/" instead of "User defined Trusted Test1" then bug is reproduced
We need to define our own escaping rules for JVM command-line parameters containing spaces. Experimentation has shown that we can not include a double quote ('"') inside the java_arguments parameter, even if it is escaped, because the browser treats this as the end of the parameter's value. We need to watch for the escaping character ('\') and always include the next character as part of the previous token. This implies replacing the StringTokenizer in JVMParameters.parseImpl() with our own custom character-by-character tokenizer.