Setting javaplugin.maxHeapSize -Xmx at system level

G'day,
A similar unanswered question has been asked elsewhere
http://forum.java.sun.com/thread.jspa?forumID=30&threadID=5115738
I would really like to know whether it is possible to set the default value of javaplugin.maxHeapSize at the System Level (I know how to do it on a per user basis).
In particular, I am interested in doing this on Windows Vista, where I've read the limit can be as low as 64M (!)
http://forum.java.sun.com/thread.jspa?forumID=30&threadID=5168556
I understand that it might not be possible - the heap-size limit is set by the application, e.g. IE7, into which the Plug-In is being embedded. Even so, it can be overridden at the user-level, so why not at the system level?
Thanks,
Chris.

G'day,
Did you ever find a solution to this problem?
I'm in a similar boat...
http://forum.java.sun.com/thread.jspa?threadID=5185445
Thanks,
Chris.

Similar Messages

  • Setting "javaplugin.maxHeapSize" at System level deployment

    Hi all,
    I'm trying to change the default value for the "javaplugin.maxHeapSize" parameter. By default it is always 96m, but I need to configure it to 256m.:
    ....java.vm.version = 1.5.0_06-b05
    javaplugin.maxHeapSize = 96m
    javaplugin.nodotversion = 150_06
    javaplugin.proxy.config.type = auto
    javaplugin.version = 1.5.0_06....
    At user level configuration it runs ok, but at System level configuation it doesn't.
    I tried the following changes in the deployment.properties (located by the deployment.config file) :
    deployment.javapi.jre.1.5.0.args=-Xmx256m -Djavaplugin.maxHeapSize\=256m
    javaplugin.maxHeapSize=256m
    but these changes don't work.
    Can you help me?
    Thanks.
    Regards.

    G'day,
    Did you ever find a solution to this problem?
    I'm in a similar boat...
    http://forum.java.sun.com/thread.jspa?threadID=5185445
    Thanks,
    Chris.

  • Setting system level deployment.user.cachedir in deployment.config

    G'day,
    I've been experimenting with JRE 1.5.0_04 on Windows XP.
    By default deployment.user.cachedir is set to <user home>\Application Data\Sun\Java\Deployment\cache. However, I want it to be <user home>\Local Settings\Application Data\Sun\Java\Deployment\cache.
    I have managed this as follows.
    C:\Windows\Sun\Java\Deployment\deployment.config contains:
    deployment.system.config=file\:C\:/WINDOWS/Sun/Java/Deployment/deployment.propertiesand C:\Windows\Sun\Java\Deployment\deployment.properties contains:
    deployment.user.cachedir=$USER_HOME\\..\\..\\..\\..\\Local Settings\\Application Data\\Sun\\Java\\Deployment\\cacheThis works but is ugly. The problem is that $USER_HOME=<user home>\Application Data\Sun\Java\Deployment. It seems that $USER_HOME and $JRE_HOME are the only two variables for use in deployment properties. Are there any others, in particular, one that mirrors the user's actual home directory?
    Thanks,
    Chris.

    G'day,
    Open the Java Console and execute "dump system and
    deployment properties" which shows property values,
    and see if what you want is there.Thanks, but I don't think I can use these at the system level, can I?
    I did try using ${user.home} but that doesn't work.
    So, are there any variables other than $USER_HOME and $JRE_HOME that can be used when setting system level properties?
    More info, http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/properties.html
    Thanks,
    Chris.

  • BindByName system level setting

    Is there or will there ever be a system level parameter for OracleCommand.BindByName. It's very frustrating to have to set it everywhere, especially if you have common frameworks that use the generate IDbCommand/IDbConnection interfaces with a Connection factory.
    We had to put an explicit type test into our Persistance framework just to see if it was an OracleCommand and set that property. That means EVERY call regardless of the target database has to go through that check.

    G'day,
    Open the Java Console and execute "dump system and
    deployment properties" which shows property values,
    and see if what you want is there.Thanks, but I don't think I can use these at the system level, can I?
    I did try using ${user.home} but that doesn't work.
    So, are there any variables other than $USER_HOME and $JRE_HOME that can be used when setting system level properties?
    More info, http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/properties.html
    Thanks,
    Chris.

  • Alter system set events '1460 trace name errorstack level 10';

    Hi,
    If I issue :
    alter system set events '1460 trace name errorstack level 10';
    How can I come back after operation ?
    Thank you.

    SQL> alter system set events '1460 trace name errorstack level 10';
    System altered.
    SQL> alter system set events '1460 trace name off';
    alter system set events '1460 trace name off'
    ERROR at line 1:
    ORA-02194: event specification syntax error 230 (minor error 213) near 'OFF'
    SQL> alter system set events '1460 trace name errorstack off';
    System altered.

  • Help with "alter system set events = '1000 trace name ERRORSTACK level 3'"

    Hello.
    I am trying to find out wich sql code is creating the error ORA-01000 in my application (database release is 9.2.0.7). I have read this http://www.orafaq.com/node/758 and there they suggest doing this:
    Sometimes you will need to get a full stack trace of the problem by setting a trace for ORA-1000 as in:
    alter system set events = '1000 trace name ERRORSTACK level 3'
    or...
    alter session set events = '1000 trace name ERRORSTACK level 3'
    Then set open_cursors to a low enough number to catch the open cursor voilator in your net.I have no idea about this traces, so these are my questions:
    1. Do those commands force a trace every time the ORA-01000 errors rises in every session? (I have forced the ORA-01000 error in one sqplusl session after I wrote "alter session set events = '1000 trace name ERRORSTACK level 3'" in another sqlplus session)
    2. What does level 3 mean?
    3. I see that in the dump/user directory I have several trace files, how can I know which error traces are enabled in my db?
    4. How do I disable the traces once I find out to solve the problem?
    5. How do I identify in the traces the ORA-1000 error?
    Thanks in advance.

    Thanks for all the answers.
    What am I doing bad? I have tried ti find out what traces are enabled, and there seems to be none.
    SQL> r
      1  DECLARE
      2     OUT   BINARY_INTEGER;
      3  BEGIN
      4     DBMS_OUTPUT.put_line ('Init');
      5
      6     FOR i IN 1 .. 20000
      7     LOOP
      8        SYS.DBMS_SYSTEM.read_ev (i, OUT);
      9
    10        IF (OUT <> 0)
    11        THEN
    12           DBMS_OUTPUT.put_line ('i: ' || i || '; ' || OUT);
    13        END IF;
    14     END LOOP;
    15
    16     DBMS_OUTPUT.put_line ('End');
    17* END;
    Init
    EndBut, otherwise, there are trc files which have been modfiied recently? I seems as if this procedure can't detect all the tracles enabled:
    (oracle)mano1re(principal)$ ls -lt *.trc | more
    -rw-r-----   1 oracle   dba       348294 jul 14 18:35 reflex_ora_11706.trc
    -rw-r-----   1 oracle   dba       997820 jul  9 16:32 reflex_ora_15766.trc
    -rw-r-----   1 oracle   dba       399571 jul  3 15:23 reflex_ora_25955.trc
    -rw-r-----   1 oracle   dba      1637069 jun  9 15:34 reflex_ora_19742.trc
    PL/SQL procedure successfully completed.

  • Enabling alter system set events '1422 trace name errorstack level 1'

    Hello, please i need some help:
    I need to set events '1422 trace name errorstack level 1',
    where does this sentence generate the trace logs?.
    Once collected the information how do i disable it?
    Thanks in advance.

    Normally user dumps are written to the udump database parameter destination. See v$spparameter or v$parameter.
    You can set the level to "0" (zero) to set tracing off.
    HTH -- Mark D Powell --

  • JRE System-level settings does not work - JRE1.6.30

    Good day,
    I need to set deployment.security.mixcode parameter to "DISABLE" within of deployment.properties configuration file.
    Also I wish to place the deployment.properties configuration file is not user-specific path. The default location is
    <User Application Data Folder>\Sun\Java\Deployment\deployment.properties.
    TO change the default location I read about possibility to use the deployment.config for specifying the System-Level
    deployment.properties in the infrastructure.
    Unfortunatelly seems does not work. Someone have got experience about system level settings of deployment.properties?
    This is the configuration I have used.
    deployment.config:
    deployment.system.config.mandatory=FALSE
    deployment.system.config=file/:C:\Program Files\Java\jre6\lib\deployment.properties
    deployment.properties:
    #deployment.properties
    #Fri Feb 17 15:54:57 CET 2012
    deployment.version=6.0
    deployment.capture.mime.types=true
    deployment.browser.path=C\:\\Program Files\\Internet Explorer\\iexplore.exe
    #Java Deployment jre's
    #Fri Feb 17 15:54:57 CET 2012
    deployment.javaws.jre.0.product=1.6.0_31
    deployment.javaws.jre.0.registered=true
    deployment.javaws.jre.0.osname=Windows
    deployment.javaws.jre.0.platform=1.6
    deployment.javaws.jre.0.path=C\:\\Program Files\\Java\\jre6\\bin\\javaw.exe
    deployment.javaws.jre.0.location=http\://java.sun.com/products/autodl/j2se
    deployment.javaws.jre.0.enabled=true
    deployment.javaws.jre.0.osarch=x86
    deployment.security.mixcode=DISABLE <<====
    Thank you in advance
    Adriano C.
    Edited by: user12025469 on Feb 20, 2012 6:23 AM
    Edited by: user12025469 on Feb 20, 2012 7:48 AM

    user12025469 wrote:
    This is the configuration I have used.
    deployment.config:
    deployment.system.config.mandatory=FALSE
    deployment.system.config=file/:C:\Program Files\Java\jre6\lib\deployment.propertiesHm, try using a file URL like this:
    file\:C:/Program Files/Java/jre6/lib/deployment.propertiesI believe that the file is interpreted as a properties file, which means the colon and slashes need to be escaped. This would be it if you want to use a proper Windows path:
    file\:C:\\Program Files\\Java\\jre6\\lib\\deployment.properties

  • System Level deployment.properties on https Server

    We want to use the system level deployment.properties (
    http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/properties.html#location )
    which is placed on our https server.
    For Java Webstart applications this works perfect.
    But applets wont start.
    Applet console output when deployment.properties is placed on https server:
    Java Plug-in 1.5.0_06
    Using JRE version 1.5.0_06 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\xxxFinalizer, called close()
    Finalizer, called closeInternal(true)
    network: Loading user-defined proxy configuration ...
    network: Done.
    network: Loading proxy configuration from Internet Explorer ...
    network:     Auto config URL: http://proxy.xxx.com/pac/proxy.pac
    network: Done.
    network: Loading auto proxy configuration ...
    network: Downloading auto proxy file from http://proxy.xxx.com/pac/proxy.pac
    network: Done.
    network: Proxy Configuration: Automatic Proxy Configuration
         URL: http://proxy.xxx.com/pac/proxy.pac
    basic: Registered modality listener
    liveconnect: Invoking JS method: document
    liveconnect: Invoking JS method: URL
    basic: Referencing classloader: sun.plugin.ClassLoaderInfo@1efb836, refcount=1
    Exception in thread "Thread-2" java.lang.ClassCastException: sun.net.ProgressMonitor
         at sun.plugin.util.GrayBoxPainter.beginPainting(Unknown Source)
         at sun.plugin.AppletViewer.initApplet(Unknown Source)
         at sun.plugin.AppletViewer.appletInit(Unknown Source)
         at sun.plugin.viewer.LifeCycleManager.initAppletPanel(Unknown Source)
         at sun.plugin.viewer.IExplorerPluginObject$Initer.run(Unknown Source)
    Applet console output when deployment.properties is placed on http server:
    Java Plug-in 1.5.0_06
    Using JRE version 1.5.0_06 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\xxx
    network: Loading user-defined proxy configuration ...
    network: Done.
    network: Loading proxy configuration from Internet Explorer ...
    network:     Auto config URL: http://proxy.xxx.com/pac/proxy.pac
    network: Done.
    network: Loading auto proxy configuration ...
    network: Downloading auto proxy file from http://proxy.xxx.com/pac/proxy.pac
    network: Done.
    network: Proxy Configuration: Automatic Proxy Configuration
         URL: http://proxy.xxx.com/pac/proxy.pac
    basic: Cache is enabled
    basic: Location: C:\Documents and Settings\xxx\Application Data\Sun\Java\Deployment\cache\javapi\v1.0
    basic: Maximum size: unlimited
    basic: Compression level: 0
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    l:   dump classloader list
    m:   print memory usage
    o:   trigger logging
    p:   reload proxy configuration
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    x:   clear classloader cache
    0-5: set trace level to <n>
    basic: Registered modality listener
    liveconnect: Invoking JS method: document
    liveconnect: Invoking JS method: URL
    trustStore is: C:\PROGRA~1\Java\JRE15~1.0_0\lib\security\jssecacerts
    trustStore type is : jks
    trustStore provider is :
    init truststore
    adding as trusted cert:
    X509KeyManager passed to SSLContext.init():  need an X509ExtendedKeyManager for SSLEngine use
    trigger seeding of SecureRandom
    done seeding SecureRandom
    basic: Referencing classloader: sun.plugin.ClassLoaderInfo@fc9944, refcount=1
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter@1256ea2
    basic: Loading applet ...
    basic: Initializing applet ...
    basic: Starting applet ...
    # and so on ...I guess that the trusted jssecerts is not regarded until the system level deployment.properties has been downloaded.
    Whereas the deployment.properties can not be downloaded from my https server when the trusted certs are not known at this time.
    Or any other presumptions?
    Maybe it helped you ;-)

    I did something very similar. I am using jre 1.5.0_01.
    And it seems to work!
    The deployment.config is:
    deployment.system.config=file:/c:/jws/deployment.properties
    deployment.system.config.mandatory=true
    and the deployment.properties is (at the location above):
    deployment.system.cachedir=cache
    To load the cache I start javaws as follows:
    javaws -import -system -codebase file:/c:/cd file:/c:/cd/notepad.jnlp
    This results in creating the cache in
    file:/c:/jws//cache
    To start the app I did:
    javaws -system http://java.sun.com/products/javawebstart/apps/notepad.jnlp
    The -system seems to be neccessary but I am not quite sure. If it is omitted
    the app also starts, but javaws stores just the jnlp in the default user cache!

  • Invoice Tolerance - System Level

    Hi
    I've been looking at setting invoice tolerances to block invoices outside set limits.
    I am aware I can create invoice tolerance and set these at vendor level but to make maintenance of this simple can you set invoice tolerances at system level i.e. one tolerance rate that applies to all invoices recieved?
    Many Thanks for you help.
    Chris

    Please check these links for details:
    Invoice verification tolerance limits
    Re: RE: Invoice Tolerance
    Invoice Tolerance key BW.
    Re: Tolerance in invoice verification
    Edited by: Afshad Irani on Apr 29, 2010 9:11 PM

  • How to enable BPEL loggers at domain and system level ?

    As far as I know there are two kind of BPEL loggers
    - at domain and
    - system level
    Where EXACTLY can I enable/disable them resp. set them to e.g. DEBUG mode?
    Peter

    Apart from the posts mentioned above, please note that log4j-config.xml is the files that has these logging entries.
    For domain level : SOA_ORACLE_HOME\bpel\domains\default\config\log4j-config.xml
    For system level : SOA_ORACLE_HOME\bpel\system\config\log4j-config.xml
    You set these loggers on domain level or system level depending on the information you are interested to see, so set that particular logger.

  • System-level AbbreDailing

    We are using CCM6.0 right now. We would like to implement AbbreDailing, for example:
    **000 will goes to a number in China.
    **001 will goes to a number in Japan.
    we have over 100 abbreDailing number, and we need them to be avaliable in system level so every user can use it.
    Any idea how to implement it?

    You can use Translation Patterns, that would be the simplest way to make it work.
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/admin/6_0_1/ccmcfg/bccm.pdf
    The only caveat that I forsee is that translation patterns call out using whatever calling search space is assigned to the translation pattern. Which is OK if you have a single site and everyone dials out one way. But if you have multiple sites and they hit one translation pattern it will dial out one site. Which may or may not be OK. Just depends on you business structure. If start setting up a set of translation patterns per location that could get out of control quick.
    I have also seen some custom directory done which was a modified corporate directory, where it queries DC Directory and it only pulls records that have something like "SpeedDial" in the Departmnet field but that was long ago. It would be optimal though because it then would use the phones dialing rules when placing a call to the contact.

  • System Level Logs

    Hi All,
        from where i can know the ale/idoc/edi System Level Logs.
    plz dont send link.

    Hi Friend,
    System Level Logs:
    WE08          =>     Input File Log
    SM13          =>     Asynchronous Update
    ST22          =>     Monitor Dump Analysis
    SM21           =>     Monitor System Log
    SM58          =>     Display Transitional RFC Log (tRFC Monitoring)
    BDM7          =>     Statistical Analysis of Audit Log
    SO01          =>     SAP Inbox (Business Workplace of User)
    BD87          =>     Status Monitors.
    BDMONIC3     =>     SAP CCMS Monitor for Optional Components (ALE/ EDI)
    RZ20           =>     CCMS Monitor Sets – Maintenance Functions
    IDOC           =>     IDOC & EDI Basis : Repair & Check Programs
    BD84           =>     Re-processing of IDocs after ALE Input Error

  • Is there settng source system level for master data delta loading perfo

    Hi Viwers,
    Good Morning,
    I am loading data from the source to target level for Master data it is taking too much time,I would like to know the how to increase the master data delta loading performance.
    I would like to know the source system level is there any setting requited & target system level also.
    Please give your inputs..........
    Thanks & Regards,
    Venkat Vanarasi.

    Venkat -
            Are u deleting the indexes of data target before delta loading ? If not,delete the indexes of data target before delta loading  and recreate them after delta loading is done.This procedure increase load performance.You can perform whole procedure in process chain.
    Anesh B

  • Solaris 5.10 All operating system level parameters

    HI Experts,
    Pl let me know .Solaris 5.10 All operating system level parameters on ECC6.0
    .i really appreciate your feed back on this request
    Thanks
    Hari

    You cannot upgrade Solaris (any version) by simply applying patches. You also cannot upgrade Solaris 10 via any sort of downloaded "upgrade" package.
    You will need to download the current DVD/CD set, then boot from it. At that point, you will be offered the choice of upgrading your system.

Maybe you are looking for