I've got a Oracle Weblogic server (10.3.6) which is being started with the following JVM arguments:
Starting WLS with line: /oracle/javahome/jdk1.6.0_29/bin/java -server -Xms512m -Xmx1024m -XX:PermSize=256m -XX:MaxPermSize=768m <...some more arguments, and then...> -Xms1024m -Xmx2048m -XX:PermSize=512m -XX:MaxPermSize=1024m
Notice that the arguments 'ms', 'mx', 'PermSize' and 'MaxPermSize' each occur twice.
Now, obviously I'd rather not have 2 occurrences (working on resolving that), but in the meantime, for argument's sake, does anyone know which occurrence of each argument the Weblogic JVM will use? The 1st or 2nd?
Thanks.