Running several times an application

hi, I am beginner in JAVA programming.
I have done a main class with methods using variables. On the other hand I have an interface vers the application's user can change those variables. How can I run several times my main class, each time the user changes a variable?
Thanks for your help and hello to everybody from the bourbon Island !(Reunion Island)

Hmm , you usually don't call your main-method multiple times...
Could you post your code, that should make thing more clear...

Similar Messages

  • Have a bash script run every time an application is opened.

    Hi,
    On my Arch box I would like to have a bash script run every time a certain application is opened from the menu. I would prefer a delay of a 5 - 10 seconds after the program opens if that is possible. Could someone please let me know if and how I can achieve this?

    Problem is, OP wants the "meat" of his script to run after the program, which would mean putting it after the exec. But AFAIK, anything after the exec will be ignored. You could call another script to run in the background before the exec, but that seems hackish.
    Last edited by alphaniner (2013-04-10 14:57:01)

  • Query that becomes slower and slower when runned several times

    Hi everybody,
    I have an issue with one querie...
    I have a select that is a join between 3 subqueries, 2 of them are using a function with pipeline.
    When I run this query it work fine.
    * First run lasts less than 1 sec.
    * Second run lasts less than 1 sec.
    * Third run lasts 2 sec.
    * Fourth run lasts 2 min.
    * Fifth run lasts 10 min.
    * ... and then worse an worse...
    Of course, I always use same bind variables and data within the database does not change.
    I looked at the execution plan that seems to be the same for all the runs.
    The problem is during the Execute phase :
    for the first run :
    call count cpu elapsed disk query current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.20 0.20 0 1215 0 0
    Fetch 3 0.12 0.14 0 246 0 19
    total 5 0.33 0.36 0 1461 0 19
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 66
    for the fifth run
    call count cpu elapsed disk query current rows
    Parse 1 0.01 0.01 0 0 0 0
    Execute 1 95.29 100.96 0 1215 0 0
    Fetch 3 0.27 0.39 0 246 0 19
    total 5 95.57 101.36 0 1461 0 19
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 66
    I didn't find dynamic sampling during the execution plan.
    All subqueries are very stable in time.
    When the join query starts to have a strange behavior, subqueries are still very perfomant !
    If I flush the shared pool, the problem disappear and the cycle restarts...
    1) any idea of the root cause of the issue ?
    2) is there a solution (with hint for instance) for not recording the query inthe shared pool ?
    Thanks in advance...
    The query is :
    select
    a.anneefiscale,
    a.marque,
    a.priorite,
    a.de,
    b.eng_et_real_total "eng et real annee moins 1",
    c.estime "estime",
    a.engage_nip "engage nip",
    a.engage_autre "engage autre",
    a.engage_total "engage total",
    a.realise_nip "realise nip",
    a.realise_autre "realise autre",
    a.realise_total "realise total",
    a.eng_et_real_nip "eng et real nip",
    a.eng_et_real_autre "eng et real autre",
    a.eng_et_real_total "eng et real total",
    decode(c.estime,0,NULL,round(a.eng_et_real_total/c.estime*100,1)) "pourcentage"
    from
    select
    anneefiscale,
    marque,
    priorite,
    de,
    round(sum(engage_nip)) engage_nip,
    round(sum(engage_autre)) engage_autre,
    round(sum(engage_nip)+sum(engage_autre)) engage_total,
    round(sum(realise_nip)) realise_nip,
    round(sum(realise_autre)) realise_autre,
    round(sum(realise_nip)+sum(realise_autre)) realise_total,
    round(sum(engage_nip)+sum(realise_nip)) eng_et_real_nip,
    round(sum(engage_autre)+ sum(realise_autre)) eng_et_real_autre,
    round(sum(engage_nip)+sum(engage_autre)+sum(realise_nip)+sum(realise_autre)) eng_et_real_total
    from
    select * from table(mypackage.reporting_tbordmarque_promo(:P50_RESEAU,:P50_DE,:P50_GROUPE,:P50_ANNEE_FISCALE))
    union
    select * from table(mypackage.reporting_tbordmarque_nip(:P50_RESEAU,:P50_DE,:P50_GROUPE,:P50_ANNEE_FISCALE))
    union
    select * from table(mypackage.reporting_tbordmarque_eng(:P50_RESEAU,:P50_DE,:P50_GROUPE,:P50_ANNEE_FISCALE))
    group by anneefiscale, marque, priorite, de
    ) a,
    select
    anneefiscale,
    marque,
    de,
    round(sum(engage_nip)+sum(engage_autre)+sum(realise_nip)+sum(realise_autre)) eng_et_real_total
    from
    select * from table(mypackage.reporting_tbordmarque_promo(:P50_RESEAU,:P50_DE,:P50_GROUPE,mypackage.get_previous_annee_fiscale(:P50_ANNEE_FISCALE)))
    union
    select * from table(mypackage.reporting_tbordmarque_nip(:P50_RESEAU,:P50_DE,:P50_GROUPE,mypackage.get_previous_annee_fiscale(:P50_ANNEE_FISCALE)))
    union
    select * from table(mypackage.reporting_tbordmarque_eng(:P50_RESEAU,:P50_DE,:P50_GROUPE,mypackage.get_previous_annee_fiscale(:P50_ANNEE_FISCALE)))
    group by anneefiscale, marque, de
    ) b,
    select
    annee_fiscale.nom anneefiscale,
    marque.nom marque,
    de.nom de,
    round(sum(montant)) estime
    from
    estime,
    annee_fiscale,
    marque,
    enseigne,
    groupe,
    de,
    reseau
    where
    estime.id_annee_fiscale_fk = annee_fiscale.id_annee_fiscale and
    estime.id_marque_fk = marque.id_marque and
    estime.id_enseigne_fk = enseigne.id_enseigne and
    estime.id_type_estime_fk = :P50_TYPE_ESTIME and
    enseigne.id_groupe_fk = groupe.id_groupe and
    groupe.id_de_fk = de.id_de and
    de.id_reseau_fk = reseau.id_reseau and
    (:P50_ANNEE_FISCALE is NULL OR :P50_ANNEE_FISCALE=0 OR estime.id_annee_fiscale_fk = :P50_ANNEE_FISCALE) and
    (:P50_RESEAU is NULL OR :P50_RESEAU=0 OR reseau.id_reseau = :P50_RESEAU) and
    (:P50_DE is NULL OR :P50_DE=0 OR de.id_de = :P50_RESEAU)
    group by annee_fiscale.nom, marque.nom, de.nom
    ) c
    where
    a.marque=b.marque(+) and a.de=b.de(+) and
    a.marque=c.marque(+) and a.de=c.de(+)
    order by
    a.anneefiscale, a.marque, a.de;
    Edited by: user7499092 on 17 nov. 2012 05:50
    Edited by: user7499092 on 17 nov. 2012 05:50

    Hi Nikolay
    Concerning point 2, the database seems perfectly OK and I encountered an issue only with this query :-(
    The database is hosted on a dedicated server and I am the only one user. Moreover the issue is reproducible as I want... Very strange for me...
    I am very interested on a method to check waits and more precisely IO waits. Can you describe me a procedure ?
    The only one thing I can produce is the tkprof output focused on the fifth run that is very long...
    TKPROF: Release 11.2.0.1.0 - Development on Sat Nov 17 04:45:56 2012
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    Trace file: MYDB_ora_3493.trc
    Sort options: default
    count    = number of times OCI procedure was executed
    cpu      = cpu time in seconds executing
    elapsed  = elapsed time in seconds executing
    disk     = number of physical reads of buffers from disk
    query    = number of buffers gotten for consistent read
    current  = number of buffers gotten in current mode (usually for update)
    rows     = number of rows processed by the fetch or execute call
    select
    a.anneefiscale,
    a.marque,
    a.priorite,
    a.de,
    b.eng_et_real_total "eng et real annee moins 1",
    c.estime "estime",
    a.engage_nip "engage nip",
    a.engage_autre "engage autre",
    a.engage_total "engage total",
    a.realise_nip "realise nip",
    a.realise_autre "realise autre",
    a.realise_total "realise total",
    a.eng_et_real_nip "eng et real nip",
    a.eng_et_real_autre "eng et real autre",
    a.eng_et_real_total "eng et real total",
    decode(c.estime,0,NULL,round(a.eng_et_real_total/c.estime*100,1)) "pourcentage"
    from
      select
      anneefiscale,
      marque,
      priorite,
      de,
      round(sum(engage_nip)) engage_nip,
      round(sum(engage_autre)) engage_autre,
      round(sum(engage_nip)+sum(engage_autre)) engage_total,
      round(sum(realise_nip)) realise_nip,
      round(sum(realise_autre)) realise_autre,
      round(sum(realise_nip)+sum(realise_autre)) realise_total,
      round(sum(engage_nip)+sum(realise_nip)) eng_et_real_nip,
      round(sum(engage_autre)+ sum(realise_autre)) eng_et_real_autre,
      round(sum(engage_nip)+sum(engage_autre)+sum(realise_nip)+sum(realise_autre)) eng_et_real_total
      from
        select * from table(mypackage.reporting_tbordmarque_promo(:P50_RESEAU,:P50_DE,:P50_GROUPE,:P50_ANNEE_FISCALE))
        union
        select * from table(mypackage.reporting_tbordmarque_nip(:P50_RESEAU,:P50_DE,:P50_GROUPE,:P50_ANNEE_FISCALE))
        union
        select * from table(mypackage.reporting_tbordmarque_eng(:P50_RESEAU,:P50_DE,:P50_GROUPE,:P50_ANNEE_FISCALE))
      group by anneefiscale, marque, priorite, de
    ) a,
      select
      anneefiscale,
      marque,
      de,
      round(sum(engage_nip)+sum(engage_autre)+sum(realise_nip)+sum(realise_autre)) eng_et_real_total
      from
        select * from table(mypackage.reporting_tbordmarque_promo(:P50_RESEAU,:P50_DE,:P50_GROUPE,mypackage.get_previous_annee_fiscale(:P50_ANNEE_FISCALE)))
        union
        select * from table(mypackage.reporting_tbordmarque_nip(:P50_RESEAU,:P50_DE,:P50_GROUPE,mypackage.get_previous_annee_fiscale(:P50_ANNEE_FISCALE)))
        union
        select * from table(mypackage.reporting_tbordmarque_eng(:P50_RESEAU,:P50_DE,:P50_GROUPE,mypackage.get_previous_annee_fiscale(:P50_ANNEE_FISCALE)))
      group by anneefiscale, marque, de
    ) b,
      select
        annee_fiscale.nom anneefiscale,
        marque.nom marque,
        de.nom de,
        round(sum(montant)) estime
      from
        estime,
        annee_fiscale,
        marque,
        enseigne,
        groupe,
        de,
        reseau
      where
        estime.id_annee_fiscale_fk = annee_fiscale.id_annee_fiscale and
        estime.id_marque_fk = marque.id_marque and
        estime.id_enseigne_fk = enseigne.id_enseigne and
        estime.id_type_estime_fk = :P50_TYPE_ESTIME and
        enseigne.id_groupe_fk = groupe.id_groupe and
        groupe.id_de_fk = de.id_de and
        de.id_reseau_fk = reseau.id_reseau and
        (:P50_ANNEE_FISCALE is NULL OR :P50_ANNEE_FISCALE=0 OR estime.id_annee_fiscale_fk = :P50_ANNEE_FISCALE) and
        (:P50_RESEAU is NULL OR :P50_RESEAU=0 OR reseau.id_reseau = :P50_RESEAU) and
        (:P50_DE is NULL OR :P50_DE=0 OR de.id_de = :P50_RESEAU)
        group by annee_fiscale.nom, marque.nom, de.nom
    ) c
    where
      a.marque=b.marque(+) and a.de=b.de(+) and
      a.marque=c.marque(+) and a.de=c.de(+)
    order by
      a.anneefiscale, a.marque, a.de
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.01       0.01          0          0          0           0
    Execute      1     95.29     100.96          0       1215          0           0
    Fetch        3      0.27       0.39          0        246          0          19
    total        5     95.57     101.36          0       1461          0          19
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: 66 
    Rows     Row Source Operation
         19  SORT ORDER BY (cr=55154 pr=0 pw=0 time=0 us cost=39985 size=175631625 card=60045)
         19   HASH JOIN RIGHT OUTER (cr=55154 pr=0 pw=0 time=234 us cost=3348 size=175631625 card=60045)
         19    VIEW  (cr=246 pr=0 pw=0 time=198 us cost=52 size=6233 card=23)
         19     HASH GROUP BY (cr=246 pr=0 pw=0 time=108 us cost=52 size=1932 card=23)
        230      HASH JOIN  (cr=246 pr=0 pw=0 time=801 us cost=51 size=1932 card=23)
        230       HASH JOIN  (cr=238 pr=0 pw=0 time=114 us cost=48 size=1633 card=23)
        230        HASH JOIN  (cr=230 pr=0 pw=0 time=1259 us cost=45 size=1265 card=23)
         28         NESTED LOOPS  (cr=8 pr=0 pw=0 time=999 us)
         28          NESTED LOOPS  (cr=7 pr=0 pw=0 time=135 us cost=8 size=297 card=9)
          4           NESTED LOOPS  (cr=5 pr=0 pw=0 time=39 us cost=5 size=75 card=3)
          1            TABLE ACCESS FULL DE (cr=3 pr=0 pw=0 time=0 us cost=4 size=18 card=1)
          4            TABLE ACCESS BY INDEX ROWID GROUPE (cr=2 pr=0 pw=0 time=33 us cost=1 size=49 card=7)
          4             INDEX RANGE SCAN GROUPE_DE_FK (cr=1 pr=0 pw=0 time=18 us cost=0 size=0 card=7)(object id 69080)
         28           INDEX RANGE SCAN ENSEIGNE_GROUPE_FK (cr=2 pr=0 pw=0 time=48 us cost=0 size=0 card=3)(object id 69079)
         28          TABLE ACCESS BY INDEX ROWID ENSEIGNE (cr=1 pr=0 pw=0 time=0 us cost=1 size=24 card=3)
        852         TABLE ACCESS FULL ESTIME (cr=222 pr=0 pw=0 time=1337 us cost=37 size=11638 card=529)
          7        VIEW  index$_join$_013 (cr=8 pr=0 pw=0 time=18 us cost=3 size=112 card=7)
          7         HASH JOIN  (cr=8 pr=0 pw=0 time=18 us)
          7          INDEX FAST FULL SCAN ANNEE_FISCALE_CON (cr=4 pr=0 pw=0 time=6 us cost=1 size=112 card=7)(object id 68294)
          7          INDEX FAST FULL SCAN ANNEE_FISCALE_PK (cr=4 pr=0 pw=0 time=6 us cost=1 size=112 card=7)(object id 68293)
         35       VIEW  index$_join$_014 (cr=8 pr=0 pw=0 time=340 us cost=3 size=455 card=35)
         35        HASH JOIN  (cr=8 pr=0 pw=0 time=272 us)
         35         INDEX FAST FULL SCAN MARQUE_PK (cr=4 pr=0 pw=0 time=0 us cost=1 size=455 card=35)(object id 68321)
         35         INDEX FAST FULL SCAN MARQUE_UK (cr=4 pr=0 pw=0 time=102 us cost=1 size=455 card=35)(object id 68322)
         19    HASH JOIN RIGHT OUTER (cr=54908 pr=0 pw=0 time=216 us cost=3295 size=159359430 card=60045)
         19     VIEW  (cr=28629 pr=0 pw=0 time=666 us cost=94 size=6640584 card=24504)
         19      HASH GROUP BY (cr=28629 pr=0 pw=0 time=504 us cost=94 size=7743264 card=24504)
         41       VIEW  (cr=28629 pr=0 pw=0 time=80 us cost=92 size=7743264 card=24504)
         41        SORT UNIQUE (cr=28629 pr=0 pw=0 time=40 us cost=92 size=49008 card=24504)
         42         UNION-ALL  (cr=28629 pr=0 pw=0 time=1066 us)
         11          COLLECTION ITERATOR PICKLER FETCH REPORTING_TBORDMARQUE_PROMO (cr=13107 pr=0 pw=0 time=230 us cost=29 size=16336 card=8168)
         18          COLLECTION ITERATOR PICKLER FETCH REPORTING_TBORDMARQUE_NIP (cr=14242 pr=0 pw=0 time=136 us cost=29 size=16336 card=8168)
         13          COLLECTION ITERATOR PICKLER FETCH REPORTING_TBORDMARQUE_ENG (cr=1280 pr=0 pw=0 time=84 us cost=29 size=16336 card=8168)
         19     VIEW  (cr=26279 pr=0 pw=0 time=162 us cost=94 size=58393032 card=24504)
         19      HASH GROUP BY (cr=26279 pr=0 pw=0 time=36 us cost=94 size=56800272 card=24504)
         42       VIEW  (cr=26279 pr=0 pw=0 time=123 us cost=92 size=56800272 card=24504)
         42        SORT UNIQUE (cr=26279 pr=0 pw=0 time=82 us cost=92 size=49008 card=24504)
         42         UNION-ALL  (cr=26279 pr=0 pw=0 time=328 us)
         13          COLLECTION ITERATOR PICKLER FETCH REPORTING_TBORDMARQUE_PROMO (cr=12209 pr=0 pw=0 time=72 us cost=29 size=16336 card=8168)
         19          COLLECTION ITERATOR PICKLER FETCH REPORTING_TBORDMARQUE_NIP (cr=13006 pr=0 pw=0 time=108 us cost=29 size=16336 card=8168)
         10          COLLECTION ITERATOR PICKLER FETCH REPORTING_TBORDMARQUE_ENG (cr=1064 pr=0 pw=0 time=36 us cost=29 size=16336 card=8168)
    SQL ID: cb21bacyh3c7d
    Plan Hash: 3452538079
    select metadata
    from
    kopm$  where name='DB_FDO'
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.00       0.00          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        1      0.00       0.00          0          2          0           1
    total        3      0.00       0.00          0          2          0           1
    Misses in library cache during parse: 0
    Optimizer mode: CHOOSE
    Parsing user id: SYS   (recursive depth: 1)
    Rows     Row Source Operation
          1  TABLE ACCESS BY INDEX ROWID KOPM$ (cr=2 pr=0 pw=0 time=0 us cost=1 size=108 card=1)
          1   INDEX UNIQUE SCAN I_KOPM1 (cr=1 pr=0 pw=0 time=0 us cost=0 size=0 card=1)(object id 553)
    etc etc etc etc etc
    OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.01       0.01          0          0          0           0
    Execute      1     95.29     100.96          0       1215          0           0
    Fetch        3      0.27       0.39          0        246          0          19
    total        5     95.57     101.36          0       1461          0          19
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    OVERALL TOTALS FOR ALL RECURSIVE STATEMENTS
    call     count       cpu    elapsed       disk      query    current        rows
    Parse       16      0.01       0.00          0          0          0           0
    Execute     23      0.02       0.03          1          5         26           2
    Fetch       33      0.67       0.74          0      54935          0        1447
    total       72      0.70       0.79          1      54940         26        1449
    Misses in library cache during parse: 2
    Misses in library cache during execute: 2
       13  user  SQL statements in session.
       11  internal SQL statements in session.
       24  SQL statements in session.
    Trace file: MYDB_ora_3493.trc
    Trace file compatibility: 11.1.0.7
    Sort options: default
           1  session in tracefile.
          13  user  SQL statements in trace file.
          11  internal SQL statements in trace file.
          24  SQL statements in trace file.
          12  unique SQL statements in trace file.
         485  lines in trace file.
         176  elapsed seconds in trace file.Edited by: easyoups on Nov 19, 2012 6:50 AM

  • Urgent Help please ---deploying several times an application

    Hi everyone,
    I am trying to deploy an EJB (TestEJB, remote interface is Test) component
    into weblogic 6.1. All the files related to TestEJB are in the package com.myApplication.test.
    In the config.xml, the tag
    <Application Deployed="true" Name="Test" Path=".\config\mydomain\applications\test">
    <EJBComponent Name="test" Targets="server1" URI="test.jar"/>
    </Application>
    is written only once. Initially first time when I start the weblogic server,
    the test.jar will be deployed successfully without any error. When I stop the
    server and check the config file, there will be two <Application> tags
    for test.jar. I do not know how this tag is added once again.
    So when I restart the server now , I get the following error :
    Unable to deploy EJB: Test from test.jar:
    Unable to bind a cluster-aware stateless session EJBObject to the name: ejb.com.
    myApplication.test_EO. Please ensure that the jndi-name in the weblogic-ejb-jar.x
    ml is correct. The error was:
    javax.naming.NameAlreadyBoundException: Can't rebind anything but a replica-aware
    stub to a name that is currently bound to a replica-aware stub; remaining name
    <<no stack trace available>>
    >
    <Nov 11, 2003 1:49:21 PM EST> <Error> <Management> <Error deploying application
    .\config\mydomain\applications\test: java.lang.reflect.UndeclaredThrowableExcept
    ion>
    Again when I start the server, one more <Application> tag will added for test.jar.
    Very weird !!!
    I do not know why this <Application> tag for the componet test.jar is getting
    added each time when I start the server. How to avoid it ?
    Only first time when I start the weblogic server, I do not get this error
    because there will be only one tag in the config file. But when I stop
    the server, the config.xml will be updated with one additional <Application>
    tag for test.jar. This keeps repeated each time when I restart the weblogic
    server.
    Please suggest me how to get rid of this tag getting added repeatedly to the
    config.xml.
    My weblogic-ejb-jar.xml for test.jar :
    <!DOCTYPE weblogic-ejb-jar PUBLIC '-//BEA Systems, Inc.//DTD WebLogic 6.0.0 EJB//EN'
    'http://www.bea.com/servers/wls600/dtd/weblogic-ejb-jar.dtd'>
    <!-- Generated XML! -->
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>Test</ejb-name>
    <stateless-session-descriptor>
    <pool>
    </pool>
    <stateless-clustering>
    </stateless-clustering>
    </stateless-session-descriptor>
    <transaction-descriptor>
         <trans-timeout-seconds>30</trans-timeout-seconds>
    </transaction-descriptor>
    <reference-descriptor>
    <resource-description>
    <res-ref-name>jdbc/test</res-ref-name>
    <jndi-name>test</jndi-name>
    </resource-description>
    </reference-descriptor>
    <jndi-name>ejb.com.myApplication.test</jndi-name>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    Thanks and regards.

    I'm not following you anymore.
    The only thing in your applications directory should be test.jar. Is
    that the case?
    When you boot the server, it will add an Application to the domain
    configuration with a path of applications/test.jar.
    If you're still having problems, can you show me your config.xml, or at
    least the Application entries.
    -- Rob
    mogli wrote:
    >
    >
    My first recommmendation would be to stop the server and remove any
    <Application> tags from the config.xml.
    I removed all such <Application> tag for the test.jar
    Next, if you're trying to deploy to the applications directory, then
    it
    should be applications/test.jar, not applications/test/test.jar
    I think the server believes you have 2 different applications, and
    that's causing problems because they both have the same JNDI name.
    I removed "test" from the path.
    But still I am getting the error. The main reason for this error is, When
    I STOP the server, it is adding the tag <Application> for test.jar. (god
    only know why it is adding this tag) and this will be repeated each time when
    i STOP the server.
    Obviously, when i restart the server, the server will come accross multiple
    <Application> tag for this test.jar. That's why it gives error "javax.naming.NameAlreadyBoundException:
    Can't rebind anything ....."
    All my question is why server is adding this tag <Application> to test.jar
    thanks.
    mogli wrote:
    Hi everyone,
    I am trying to deploy an EJB (TestEJB, remote interface is Test)component
    into weblogic 6.1. All the files related to TestEJB are in thepackage com.myApplication.test.
    In the config.xml, the tag
    <Application Deployed="true" Name="Test" Path=".\config\mydomain\applications\test">
    <EJBComponent Name="test" Targets="server1" URI="test.jar"/>
    </Application>
    is written only once. Initially first time when I start the weblogicserver,
    the test.jar will be deployed successfully without any error. WhenI stop the
    server and check the config file, there will be two <Application>tags
    for test.jar. I do not know how this tag is added once again.
    So when I restart the server now , I get the following error :
    Unable to deploy EJB: Test from test.jar:
    Unable to bind a cluster-aware stateless session EJBObject to the name:ejb.com.
    myApplication.test_EO. Please ensure that the jndi-name in the weblogic-ejb-jar.x
    ml is correct. The error was:
    javax.naming.NameAlreadyBoundException: Can't rebind anything but areplica-aware
    stub to a name that is currently bound to a replica-aware stub; remainingname
    <<no stack trace available>>
    <Nov 11, 2003 1:49:21 PM EST> <Error> <Management> <Error deployingapplication
    .\config\mydomain\applications\test: java.lang.reflect.UndeclaredThrowableExcept
    ion>
    Again when I start the server, one more <Application> tag will addedfor test.jar.
    Very weird !!!
    I do not know why this <Application> tag for the componet test.jaris getting
    added each time when I start the server. How to avoid it ?
    Only first time when I start the weblogic server, I do not getthis error
    because there will be only one tag in the config file. Butwhen I stop
    the server, the config.xml will be updated with one additional <Application>
    tag for test.jar. This keeps repeated each time when I restartthe weblogic
    server.
    Please suggest me how to get rid of this tag getting added repeatedlyto the
    config.xml.
    My weblogic-ejb-jar.xml for test.jar :
    <!DOCTYPE weblogic-ejb-jar PUBLIC '-//BEA Systems, Inc.//DTD WebLogic6.0.0 EJB//EN'
    'http://www.bea.com/servers/wls600/dtd/weblogic-ejb-jar.dtd'>
    <!-- Generated XML! -->
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>Test</ejb-name>
    <stateless-session-descriptor>
    <pool>
    </pool>
    <stateless-clustering>
    </stateless-clustering>
    </stateless-session-descriptor>
    <transaction-descriptor>
         <trans-timeout-seconds>30</trans-timeout-seconds>
    </transaction-descriptor>
    <reference-descriptor>
    <resource-description>
    <res-ref-name>jdbc/test</res-ref-name>
    <jndi-name>test</jndi-name>
    </resource-description>
    </reference-descriptor>
    <jndi-name>ejb.com.myApplication.test</jndi-name>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    Thanks and regards.

  • My track pad highlights applications and files and then opens them without my doing anything. I run MacKeeper and having run the scan several times only get cleaning issues (5 -). Any ideas as MacKeeper Kromtech have not responded to my calls nor email.

    Folks
    I run an iMac. Today for some reason when I run the cursor across the screen applications and files are highlighted and then opened without me doing anything (no clicking etc) In fact print at times opens. As far as I can tell I have not changed any settings except to open firewall.
    I run MacKeeper and when I run a scan only a few cleaning items open. Safe and fast are as they should be. I run fix. If I again run the scan I get a few more but different claeing items to fix.
    I have rung MacKeeper several times without getting through. The occasion I did get through the bloke said he could not help and passed me to a higher authority. Needless to say the line dropped out after 30 minutes waiting.
    As it is the weekend and I do not live near an Apple store I am quite keen to get the problem identified and fixed so I can continue working.
    Your assistance please.

    Remove the "MacKeeper" scam product as follows. First, back up all data.
    "MacKeeper" has only one useful feature: it deletes itself.
    Note: These instructions apply to the version of the product that I downloaded and tested in early 2012. I can't be sure that they apply to other versions.
    IMPORTANT: "MacKeeper" has what the developer calls an “encryption” feature. In my tests, I didn't try to verify what this feature really does. If you used it to “encrypt” any of your files, “decrypt” them before you uninstall, or (preferably) restore the files from backups made before they were “encrypted.” As the developer is not trustworthy, you should assume that the "decrypted" files are corrupt unless proven otherwise.
    In the Finder, select
    Go ▹ Applications
    from the menu bar, or press the key combination shift-command-A. The "MacKeeper" application is in the folder that opens. Quit it if it's running, then drag it to the Trash. You'll be prompted for your login password. Click the Uninstall MacKeeper button in the dialog that appears. All the functional components of the software will be deleted. Reboot.
    ☞ Quit MacKeeper before dragging it to the Trash.
    ☞ Don't empty the Trash. Let MacKeeper delete itself.
    ☞ Don't try to drag the MacKeeper Dock icon to the Trash.

  • Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system. I have a wndiws 7 system and use a Intel core processor. I have restarted several times and still ge this

    Firefox is already running, but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system. I have a wndows 7 system and use a Intel core processor. I have restarted several times and still ge this error. I have also tried to reinstall firefox and get the same error
    == This happened ==
    Every time Firefox opened
    == today ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDS; InfoPath.2; .NET4.0C; AskTbUT2V5/5.8.0.12304)

    <u>'''Kill Application'''</u>
    In Task Manager, does firefox.exe show in the <u>'''Processes'''</u> tab?
    See: [http://kb.mozillazine.org/Kill_application Kill Application]
    '''<u>Causes and solutions for Firefox hanging at exit:</u>'''
    [[Firefox hangs]]
    [http://kb.mozillazine.org/Firefox_hangs#Hang_at_exit Firefox hangs at exit]
    [[Firefox is already running but is not responding]]
    <u>'''Safe Mode'''</u>
    You may need to use '''[[Safe Mode]]''' (click on "Safe Mode" and read) to localize the problem. Firefox Safe Mode is a diagnostic mode that disables Extensions and some other features of Firefox. If you are using a theme, switch to the DEFAULT theme: Tools > Add-ons > Themes <u>'''before'''</u> starting Safe Mode. When entering Safe Mode, do not check any items on the entry window, just click "Continue in Safe Mode". Test to see if the problem you are experiencing is corrected.
    See:
    '''[[Troubleshooting extensions and themes]]'''
    '''[[Troubleshooting plugins]]'''
    '''[[Basic Troubleshooting]]'''
    If the problem does not occur in Safe-mode then disable all of your Extensions and Plug-ins and then try to find which is causing it by enabling <u>'''one at a time'''</u> until the problem reappears. <u>'''You MUST close and restart Firefox after EACH change'''</u> via File > Restart Firefox (on Mac: Firefox > Quit). You can use "Disable all add-ons" on the Safe mode start window.

  • IMac (2008) OS10.6.8 - Main menu freezes when running more than one application at a time.  Apple and 3rd party applications - all freeze the main menu.  Safe mode seems to work OK. Tried repairing permissions - didn't work.

    For the past 60 days I've experienced Main Menu freeze when running more than one application at a time.  iPhoto, Preview, Text Edit, Epson Scan, Firefox and Thunderbird are the apps I use almost daily.  No matter what I do, when more than one is running they will freeze the Main Menu (top of the screen).  I've tried booting is Safe Mode and I don't seem to have a problem.  I've tried several suggestions from repairing permission (DiskUtility) to eliminating specifis login items.  Nothing works. I've posted this issue on the Apple forum several times and no one else has experienced this problem.  I hesitate to take my iMac to the Apple Store or a private Apple repair service until I've exhausted all of my options.  Do I have any more options?    

    Question:  Everytime an app crashes I have the option to report it to Apple - which I usually do.  But I've NEVER reported a Main Menu freeze because it never asks me to
    There's really no need to submit to Apple, it's just a round file cabinet on the other end, especially with 10.6 or earlier.
    This sure sounds like a resource problem...
    See if the Disk is issuing any S.M.A.R.T errors in Disk Utility...
    http://support.apple.com/kb/PH7029
    Open Activity Monitor in Applications>Utilities, select All Processes & sort on CPU%, any indications there?
    How much RAM & free space do you have also, click on the Memory & Disk Usage Tabs.
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.
    In the Memory tab, are there a lot of Pageouts?

  • Itunes 10.5.1 update wouldn't work and now 10.5.2 dosn't either Im running windows 7 and have downloaded the 64 bit version and uninstalled itunes several times. iy comes up with something to do with 'windows 32' error message

    Im still having problems een with the latest update 10.5.2 64 bit for windows 7 this is the message below. This is the same error messagege I get when trying to update from 10.5.1 I have uninstalled several times and nothing seems to cure it. Im really getting fed up with it as I have to use an older laptop with XP on it to transfer Itunes info

    Try the following steps:
    1. Go to Microsoft website to fix install and Unistall problems. Click "Run now" from Fix it to remove all iTunes & related installer files:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    Be aware that Windows Installer CleanUp Utility will not remove the actual program from your computer. However, it will remove the installation files so that you can start the installation, upgrade, or uninstall over.
    2. You should remove all instances of iTunes and the rest of the components listed below:
    it may be necessary to remove all traces of iTunes, QuickTime, and related software components from your computer before reinstalling iTunes.
    Use the Control Panel to uninstall iTunes and related software components in the following order:
    iTunes
    QuickTime
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Follow the instructions from Apple article listed here: http://support.apple.com/kb/HT1923 to remove all components
    3. Reboot your computer. Next, download iTunes from here:http://www.apple.com/itunes/download/ and install from scratch

  • Problem description: My iMac (early 2008) with OS 10.10.2 runs slow.  I have run EtreCheck several times, and I am unable to move beyond Problem System Launch Agents (11 processes killed due to memory pressure) and Launch Daemons (12 processes killed

    Problem description:
    My iMac (early 2008) with OS 10.10.2 runs slow.  I have run EtreCheck several times, and I am unable to move beyond Problem System Launch Agents (11 processes killed due to memory pressure) and Launch Daemons (12 processes killed).
    EtreCheck version: 2.1.8 (121)
    Report generated April 14, 2015 at 9:50:48 AM EDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (24-inch, Early 2008) (Verified)
        iMac - model: iMac8,1
        1 3.06 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR2 SDRAM 800 MHz ok
            BANK 1/DIMM1
                2 GB DDR2 SDRAM 800 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce 8800 GS - VRAM: 512 MB
            iMac 1920 x 1200
    System Software: ℹ️
        OS X 10.10.2 (14C1510) - Time since boot: 4 days 20:29:22
    Disk Information: ℹ️
        Hitachi HDS721010KLA330 disk0 : (1 TB)
            EFI (disk0s1) <not mounted> : 210 MB
            Mac iBook HD (disk0s2) / : 999.35 GB (521.60 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Apple, Inc. Keyboard Hub
            Apple, Inc Apple Keyboard
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
    Configuration files: ℹ️
        /etc/sysctl.conf - Exists
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.coreservices.appleid.authentication.plist
        [killed]    com.apple.icloud.fmfd.plist
        [killed]    com.apple.Maps.pushdaemon.plist
        [killed]    com.apple.printtool.agent.plist
        [killed]    com.apple.SafariNotificationAgent.plist
        [killed]    com.apple.sbd.plist
        [killed]    com.apple.scopedbookmarkagent.xpc.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        [killed]    com.apple.warmd_agent.plist
        11 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.AssetCacheLocatorService.plist
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.emond.aslmanager.plist
        [killed]    com.apple.icloud.findmydeviced.plist
        [killed]    com.apple.ifdreader.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.nesessionmanager.plist
        [killed]    com.apple.periodic-daily.plist
        [killed]    com.apple.periodic-weekly.plist
        [killed]    com.apple.softwareupdate_download_service.plist
        [killed]    com.apple.wdhelper.plist
        [killed]    org.cups.cupsd.plist
        12 processes killed due to memory pressure
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [running]    com.adobe.AdobeCreativeCloud.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [running]    com.arubanetworks.via.NetworkMonitorLaunchd.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.spotify.webhelper.plist [Click for support]
    User Login Items: ℹ️
        ChronoSyncBackgrounder    Application  (/Library/Application Support/ChronoSync/ChronoSyncBackgrounder.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        Canon IJ Network Scanner Selector2    Application Hidden (/Library/Printers/Canon/IJScanner/Utilities/Canon IJ Network Scanner Selector2.app)
        Google Drive    Application  (/Applications/Google Drive.app)
    Internet Plug-ins: ℹ️
        Google Earth Web Plug-in: Version: 6.1 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        AdobeExManDetect: Version: AdobeExManDetect 1.1.0.0 - SDK 10.7 [Click for support]
        Flip4Mac WMV Plugin: Version: 3.1.0.24   - SDK 10.8 [Click for support]
        OVSHelper: Version: 1.1 [Click for support]
        AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 [Click for support]
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        DivX Web Player: Version: 3.2.4.1250 - SDK 10.6 [Click for support]
        FlashPlayer-10.6: Version: 17.0.0.134 - SDK 10.6 [Click for support]
        Flash Player: Version: 17.0.0.134 - SDK 10.6 Outdated! Update
        iPhotoPhotocast: Version: 7.0
        QuickTime Plugin: Version: 7.7.3
        SharePointBrowserPlugin: Version: 14.4.8 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        Silverlight: Version: 5.1.20913.0 - SDK 10.6 [Click for support]
        JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
    User internet Plug-ins: ℹ️
        WebEx: Version: 1.0 [Click for support]
        Google Earth Web Plug-in: Version: 7.1 [Click for support]
    3rd Party Preference Panes: ℹ️
        Adobe Version Cue CS2  [Click for support]
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        VIA PrefPane  [Click for support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
             3%    WindowServer
             3%    Mail
             2%    com.apple.iCloudHelper
             1%    Creative Cloud
             1%    Google Chrome
    Top Processes by Memory: ℹ️
        223 MB    Google Chrome
        150 MB    Finder
        129 MB    Google Chrome Helper
        112 MB    Mail
        69 MB    Google Drive
    Virtual Memory Information: ℹ️
        35 MB    Free RAM
        1.45 GB    Active RAM
        1.45 GB    Inactive RAM
        888 MB    Wired RAM
        27.01 GB    Page-ins
        851 MB    Page-outs

    When you see a beachball cursor or the slowness is especially bad, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • TS1717 On Windows Vista and tried several times to start up my iTunes, but keep getting 'application failed MSVCR80.dll error-7 (windows 126) is this an easy fix ...?

    On Windows Vista and tried several times to start up my iTunes, but keep getting 'application failed MSVCR80.dll error-7 (windows 126) is this an easy fix ...?

    Click here and follow the instructions. You may need to completely remove and reinstall iTunes and all related components, or run the process multiple times; this won't normally affect its library, but that should be backed up anyway.
    (99442)

  • I am unable to open PDF files or run adobe flash when its needed I have downloaded it several times and tried updating it.

    I am unable to open PDF files or run adobe flash when its needed I have downloaded it several times and tried updating it. NEED HELP

    Adobe Acrobat NPAPI Plug-in, Version 11.0.04
    Adobe® Acrobat® Plug-in for Web Browsers, Version 11.0.04 — from file “AdobePDFViewerNPAPI.plugin”.
    application/pdf
    Acrobat Portable Document Format
    pdf
    application/vnd.adobe.pdf
    Acrobat Portable Document Format (Interim)
    pdf
    application/vnd.adobe.pdfxml
    Acrobat XML Portable Document Format
    pdfxml
    application/vnd.adobe.x-mars
    Acrobat XML Portable Document Format (Interim)
    mars
    application/vnd.adobe.xdp+xml
    XML Data Package
    xdp
    application/vnd.adobe.xfd+xml
    FormFlow99 Data File
    xfd
    application/vnd.adobe.xfdf
    Acrobat Forms Data Format in XML
    xfdf
    application/vnd.fdf
    Acrobat Forms Data Format
    fdf
    doubleTwist Web Plugin
    doubleTwist Web Plugin — from file “doubleTwistWebPlugin.bundle”.
    application/x-vnd-doubletwist
    doubleTwist Web Plugin
    Java Applet Plug-in
    Displays Java applet content, or a placeholder if Java is not installed. — from file “JavaAppletPlugin.plugin”.
    application/x-java-applet
    Basic Java Applets
    javaapplet
    application/x-java-applet;deploy=10.25.2
    Java applet
    application/x-java-applet;javafx=2.2.25
    Java applet
    application/x-java-applet;jpi-version=1.7.0_25
    Java applet
    application/x-java-applet;version=1.1
    Java applet
    application/x-java-applet;version=1.1.1
    Java applet
    application/x-java-applet;version=1.1.2
    Java applet
    application/x-java-applet;version=1.1.3
    Java applet
    application/x-java-applet;version=1.2
    Java applet
    application/x-java-applet;version=1.2.1
    Java applet
    application/x-java-applet;version=1.2.2
    Java applet
    application/x-java-applet;version=1.3
    Java applet
    application/x-java-applet;version=1.3.1
    Java applet
    application/x-java-applet;version=1.4
    Java applet
    application/x-java-applet;version=1.4.1
    Java applet
    application/x-java-applet;version=1.4.2
    Java applet
    application/x-java-applet;version=1.5
    Java applet
    application/x-java-applet;version=1.6
    Java applet
    application/x-java-applet;version=1.7
    Java applet
    application/x-java-vm
    Java applet
    application/x-java-vm-npruntime
    Java applet
    QuickTime Plug-in 7.7.1
    The QuickTime Plugin allows you to view a wide variety of multimedia content in web pages. For more information, visit the QuickTime Web site. — from file “QuickTime Plugin.plugin”.
    application/sdp
    SDP stream descriptor
    sdp
    application/x-mpeg
    AMC media
    amc
    application/x-rtsp
    RTSP stream descriptor
    rtsp,rts
    application/x-sdp
    SDP stream descriptor
    sdp
    audio/3gpp
    3GPP media
    3gp,3gpp
    audio/3gpp2
    3GPP2 media
    3g2,3gp2
    audio/aac
    AAC audio
    aac,adts
    audio/ac3
    AC3 audio
    ac3
    audio/aiff
    AIFF audio
    aiff,aif,aifc,cdda
    audio/amr
    AMR audio
    amr
    audio/basic
    uLaw/AU audio
    au,snd,ulw
    audio/mid
    MIDI
    mid,midi,smf,kar
    audio/midi
    MIDI
    mid,midi,smf,kar
    audio/mp3
    MP3 audio
    mp3,swa
    audio/mp4
    MPEG-4 media
    mp4
    audio/mpeg
    MPEG audio
    mpeg,mpg,m1s,m1a,mp2,mpm,mpa,m2a,mp3,swa
    audio/mpeg3
    MP3 audio
    mp3,swa
    audio/vnd.qcelp
    QUALCOMM PureVoice audio
    qcp,qcp
    audio/wav
    WAVE audio
    wav,bwf
    audio/x-aac
    AAC audio
    aac,adts
    audio/x-ac3
    AC3 audio
    ac3
    audio/x-aiff
    AIFF audio
    aiff,aif,aifc,cdda
    audio/x-caf
    CAF audio
    caf
    audio/x-gsm
    GSM audio
    gsm
    audio/x-m4a
    AAC audio
    m4a
    audio/x-m4b
    AAC audio book
    m4b
    audio/x-m4p
    AAC audio (protected)
    m4p
    audio/x-midi
    MIDI
    mid,midi,smf,kar
    audio/x-mp3
    MP3 audio
    mp3,swa
    audio/x-mpeg
    MPEG audio
    mpeg,mpg,m1s,m1a,mp2,mpm,mpa,m2a,mp3,swa
    audio/x-mpeg3
    MP3 audio
    mp3,swa
    audio/x-wav
    WAVE audio
    wav,bwf
    image/jp2
    JPEG2000 image
    jp2
    image/jpeg2000
    JPEG2000 image
    jp2
    image/jpeg2000-image
    JPEG2000 image
    jp2
    image/pict
    PICT image
    pict,pic,pct
    image/png
    PNG image
    png
    image/tiff
    TIFF image
    tif,tiff
    image/x-bmp
    BMP image
    bmp,dib
    image/x-jpeg2000-image
    JPEG2000 image
    jp2
    image/x-macpaint
    MacPaint image
    pntg,pnt,mac
    image/x-pict
    PICT image
    pict,pic,pct
    image/x-png
    PNG image
    png
    image/x-quicktime
    QuickTime image
    qtif,qti
    image/x-sgi
    SGI image
    sgi,rgb
    image/x-targa
    TGA image
    targa,tga
    image/x-tiff
    TIFF image
    tif,tiff
    video/3gpp
    3GPP media
    3gp,3gpp
    video/3gpp2
    3GPP2 media
    3g2,3gp2
    video/avi
    Video For Windows (AVI)
    avi,vfw
    video/flc
    AutoDesk Animator (FLC)
    flc,fli,cel
    video/mp4
    MPEG-4 media
    mp4
    video/mpeg
    MPEG media
    mpeg,mpg,m1s,m1v,m1a,m75,m15,mp2,mpm,mpv,mpa
    video/msvideo
    Video For Windows (AVI)
    avi,vfw
    video/quicktime
    QuickTime Movie
    mov,qt,mqv
    video/sd-video
    SD video
    sdv
    video/x-m4v
    Video (protected)
    m4v
    video/x-mpeg
    MPEG media
    mpeg,mpg,m1s,m1v,m1a,m75,m15,mp2,mpm,mpv,mpa
    video/x-msvideo
    Video For Windows (AVI)
    avi,vfw
    SharePoint Browser Plug-in
    Microsoft Office for Mac SharePoint Browser Plug-in — from file “SharePointBrowserPlugin.plugin”.
    application/x-sharepoint
    Microsoft Office for Mac SharePoint Browser Plug-in
    Shockwave Flash
    Shockwave Flash 11.9 r900 — from file “Flash Player.plugin”.
    application/futuresplash
    FutureSplash Player
    spl
    application/x-shockwave-flash
    Shockwave Flash
    swf
    Silverlight Plug-In
    5.1.20913.0 — from file “Silverlight.plugin”.
    application/x-silverlight

  • My iMac running 10.10.2 keeps crashing several times a day. It does a automatic restart and gives me a option to send in a report. Any ideas what might be causing this?

    My iMac does an automatic restart several times a day. It gives me a option to send in a "panic" report. This happens randomly during the day and night. Any idea of anything new that might be causing this? I am up to date on all applications.

    Mac users often ask whether they should install "anti-virus" (AV) software. The usual answer is "no." That answer is right, but it may give the wrong impression that there is no threat from what are loosely called "viruses." There is a threat, and you need to educate yourself about it.
    1. This is a comment on what you should—and should not—do to protect yourself from malicious software ("malware") that circulates on the Internet and gets onto a computer as an unintended consequence of the user's actions.
    It does not apply to software, such as keystroke loggers, that may be installed deliberately by an intruder who has hands-on access to the computer, or who has been able to take control of it remotely. That threat is in a different category, and there's no easy way to defend against it. AV software is not intended to, and does not, defend against such attacks.
    The comment is long because the issue is complex. The key points are in sections 5, 6, and 10.
    OS X now implements three layers of built-in protection specifically against malware, not counting runtime protections such as execute disable, sandboxing, system library randomization, and address space layout randomization that may also guard against other kinds of exploits.
    2. All versions of OS X since 10.6.7 have been able to detect known Mac malware in downloaded files, and to block insecure web plugins. This feature is transparent to the user. Internally Apple calls it "XProtect."
    The malware recognition database used by XProtect is automatically updated; however, you shouldn't rely on it, because the attackers are always at least a day ahead of the defenders.
    The following caveats apply to XProtect:
    ☞ It can be bypassed by some third-party networking software, such as BitTorrent clients and Java applets.
    ☞ It only applies to software downloaded from the network. Software installed from a CD or other media is not checked.
    As new versions of OS X are released, it's not clear whether Apple will indefinitely continue to maintain the XProtect database of older versions such as 10.6. The security of obsolete system versions may eventually be degraded. Security updates to the code of obsolete systems will stop being released at some point, and that may leave them open to other kinds of attack besides malware.
    3. Starting with OS X 10.7.5, there has been a second layer of built-in malware protection, designated "Gatekeeper" by Apple. By default, applications and Installer packages downloaded from the network will only run if they're digitally signed by a developer with a certificate issued by Apple. Software certified in this way hasn't been checked for security by Apple unless it comes from the App Store, but you can be reasonably sure that it hasn't been modified by anyone other than the developer. His identity is known to Apple, so he could be held legally responsible if he distributed malware. That may not mean much if the developer lives in a country with a weak legal system (see below.)
    Gatekeeper doesn't depend on a database of known malware. It has, however, the same limitations as XProtect, and in addition the following:
    ☞ It can easily be disabled or overridden by the user.
    ☞ A malware attacker could get control of a code-signing certificate under false pretenses, or could simply ignore the consequences of distributing codesigned malware.
    ☞ An App Store developer could find a way to bypass Apple's oversight, or the oversight could fail due to human error.
    Apple has taken far too long to revoke the codesigning certificates of some known abusers, thereby diluting the value of Gatekeeper and the Developer ID program. Those lapses don't involve App Store products, however.
    For the reasons given, App Store products, and—to a lesser extent—other applications recognized by Gatekeeper as signed, are safer than others, but they can't be considered absolutely safe. "Sandboxed" applications may prompt for access to private data, such as your contacts, or for access to the network. Think before granting that access. Sandbox security is based on user input. Never click through any request for authorization without thinking.
    4. Starting with OS X 10.8.3, a third layer of protection has been added: a "Malware Removal Tool" (MRT). MRT runs automatically in the background when you update the OS. It checks for, and removes, malware that may have evaded the other protections via a Java exploit (see below.) MRT also runs when you install or update the Apple-supplied Java runtime (but not the Oracle runtime.) Like XProtect, MRT is effective against known threats, but not against unknown ones. It notifies you if it finds malware, but otherwise there's no user interface to MRT.
    5. The built-in security features of OS X reduce the risk of malware attack, but they are not, and never will be, complete protection. Malware is a problem of human behavior, not machine behavior, and no technological fix alone is going to solve it. Trusting software to protect you will only make you more vulnerable.
    The best defense is always going to be your own intelligence. With the possible exception of Java exploits, all known malware circulating on the Internet that affects a fully-updated installation of OS X 10.6 or later takes the form of so-called "Trojan horses," which can only have an effect if the victim is duped into running them. The threat therefore amounts to a battle of wits between you and Internet criminals. If you're better informed than they think you are, you'll win. That means, in practice, that you always stay within a safe harbor of computing practices. How do you know when you're leaving the safe harbor? Below are some warning signs of danger.
    Software from an untrustworthy source
    ☞ Software with a corporate brand, such as Adobe Flash Player, doesn't come directly from the developer’s website. Do not trust an alert from any website to update Flash, or your browser, or any other software. A genuine alert that Flash is outdated and blocked is shown on this support page. Follow the instructions on the support page in that case. Otherwise, assume that the alert is fake and someone is trying to scam you into installing malware. If you see such alerts on more than one website, ask for instructions.
    ☞ Software of any kind is distributed via BitTorrent, or Usenet, or on a website that also distributes pirated music or movies.
    ☞ Rogue websites such as Softonic, Soft32, and CNET Download distribute free applications that have been packaged in a superfluous "installer."
    ☞ The software is advertised by means of spam or intrusive web ads. Any ad, on any site, that includes a direct link to a download should be ignored.
    Software that is plainly illegal or does something illegal
    ☞ High-priced commercial software such as Photoshop is "cracked" or "free."
    ☞ An application helps you to infringe copyright, for instance by circumventing the copy protection on commercial software, or saving streamed media for reuse without permission. All "YouTube downloaders" are in this category, though not all are necessarily malicious.
    Conditional or unsolicited offers from strangers
    ☞ A telephone caller or a web page tells you that you have a “virus” and offers to help you remove it. (Some reputable websites did legitimately warn visitors who were infected with the "DNSChanger" malware. That exception to this rule no longer applies.)
    ☞ A web site offers free content such as video or music, but to use it you must install a “codec,” “plug-in,” "player," "downloader," "extractor," or “certificate” that comes from that same site, or an unknown one.
    ☞ You win a prize in a contest you never entered.
    ☞ Someone on a message board such as this one is eager to help you, but only if you download an application of his choosing.
    ☞ A "FREE WI-FI !!!" network advertises itself in a public place such as an airport, but is not provided by the management.
    ☞ Anything online that you would expect to pay for is "free."
    Unexpected events
    ☞ A file is downloaded automatically when you visit a web page, with no other action on your part. Delete any such file without opening it.
    ☞ You open what you think is a document and get an alert that it's "an application downloaded from the Internet." Click Cancel and delete the file. Even if you don't get the alert, you should still delete any file that isn't what you expected it to be.
    ☞ An application does something you don't expect, such as asking for permission to access your contacts, your location, or the Internet for no obvious reason.
    ☞ Software is attached to email that you didn't request, even if it comes (or seems to come) from someone you trust.
    I don't say that leaving the safe harbor just once will necessarily result in disaster, but making a habit of it will weaken your defenses against malware attack. Any of the above scenarios should, at the very least, make you uncomfortable.
    6. Java on the Web (not to be confused with JavaScript, to which it's not related, despite the similarity of the names) is a weak point in the security of any system. Java is, among other things, a platform for running complex applications in a web page, on the client. That was always a bad idea, and Java's developers have proven themselves incapable of implementing it without also creating a portal for malware to enter. Past Java exploits are the closest thing there has ever been to a Windows-style virus affecting OS X. Merely loading a page with malicious Java content could be harmful.
    Fortunately, client-side Java on the Web is obsolete and mostly extinct. Only a few outmoded sites still use it. Try to hasten the process of extinction by avoiding those sites, if you have a choice. Forget about playing games or other non-essential uses of Java.
    Java is not included in OS X 10.7 and later. Discrete Java installers are distributed by Apple and by Oracle (the developer of Java.) Don't use either one unless you need it. Most people don't. If Java is installed, disable it—not JavaScript—in your browsers.
    Regardless of version, experience has shown that Java on the Web can't be trusted. If you must use a Java applet for a task on a specific site, enable Java only for that site in Safari. Never enable Java for a public website that carries third-party advertising. Use it only on well-known, login-protected, secure websites without ads. In Safari 6 or later, you'll see a padlock icon in the address bar when visiting a secure site.
    Stay within the safe harbor, and you’ll be as safe from malware as you can practically be. The rest of this comment concerns what you should not do to protect yourself.
    7. Never install any commercial AV or "Internet security" products for the Mac, as they are all worse than useless. If you need to be able to detect Windows malware in your files, use one of the free security apps in the Mac App Store—nothing else.
    Why shouldn't you use commercial AV products?
    ☞ To recognize malware, the software depends on a database of known threats, which is always at least a day out of date. This technique is a proven failure, as a major AV software vendor has admitted. Most attacks are "zero-day"—that is, previously unknown. Recognition-based AV does not defend against such attacks, and the enterprise IT industry is coming to the realization that traditional AV software is worthless.
    ☞ Its design is predicated on the nonexistent threat that malware may be injected at any time, anywhere in the file system. Malware is downloaded from the network; it doesn't materialize from nowhere. In order to meet that nonexistent threat, commercial AV software modifies or duplicates low-level functions of the operating system, which is a waste of resources and a common cause of instability, bugs, and poor performance.
    ☞ By modifying the operating system, the software may also create weaknesses that could be exploited by malware attackers.
    ☞ Most importantly, a false sense of security is dangerous.
    8. An AV product from the App Store, such as "ClamXav," has the same drawback as the commercial suites of being always out of date, but it does not inject low-level code into the operating system. That doesn't mean it's entirely harmless. It may report email messages that have "phishing" links in the body, or Windows malware in attachments, as infected files, and offer to delete or move them. Doing so will corrupt the Mail database. The messages should be deleted from within the Mail application.
    An AV app is not needed, and cannot be relied upon, for protection against OS X malware. It's useful, if at all, only for detecting Windows malware, and even for that use it's not really effective, because new Windows malware is emerging much faster than OS X malware.
    Windows malware can't harm you directly (unless, of course, you use Windows.) Just don't pass it on to anyone else. A malicious attachment in email is usually easy to recognize by the name alone. An actual example:
    London Terror Moovie.avi [124 spaces] Checked By Norton Antivirus.exe
    You don't need software to tell you that's a Windows trojan. Software may be able to tell you which trojan it is, but who cares? In practice, there's no reason to use recognition software unless an organizational policy requires it. Windows malware is so widespread that you should assume it's in every email attachment until proven otherwise. Nevertheless, ClamXav or a similar product from the App Store may serve a purpose if it satisfies an ill-informed network administrator who says you must run some kind of AV application. It's free and it won't handicap the system.
    The ClamXav developer won't try to "upsell" you to a paid version of the product. Other developers may do that. Don't be upsold. For one thing, you should not pay to protect Windows users from the consequences of their choice of computing platform. For another, a paid upgrade from a free app will probably have all the disadvantages mentioned in section 7.
    9. It seems to be a common belief that the built-in Application Firewall acts as a barrier to infection, or prevents malware from functioning. It does neither. It blocks inbound connections to certain network services you're running, such as file sharing. It's disabled by default and you should leave it that way if you're behind a router on a private home or office network. Activate it only when you're on an untrusted network, for instance a public Wi-Fi hotspot, where you don't want to provide services. Disable any services you don't use in the Sharing preference pane. All are disabled by default.
    10. As a Mac user, you don't have to live in fear that your computer may be infected every time you install software, read email, or visit a web page. But neither can you assume that you will always be safe from exploitation, no matter what you do. Navigating the Internet is like walking the streets of a big city. It can be as safe or as dangerous as you choose to make it. The greatest harm done by security software is precisely its selling point: it makes people feel safe. They may then feel safe enough to take risks from which the software doesn't protect them. Nothing can lessen the need for safe computing practices.

  • I can't find the mac app store on my imac. i am running snow leopard, and i have run "update software" several times. what's up?

    I am trying to upgrade to Lion. I need to go through Mac App store to buy it. I need to get the Mac App store icon in my dock. I have run Update Software several times, trying to get the Mac App store onto my iMac, but with no luck. It doesn't show up in the dock, it doesn't show up in Finder under Applications, and it doesn't show up when I search in Searchlight for App Store, Store, Mac App Store, etc. What am I doing wrong?

    I am running snow leopard
    James....
    You arne't necessarily doing anything wrong.
    Install the Mac OS X 10.6.8 Update Combo
    That should reinstall the App Store for you.
    Restart your Mac after the combo is finished installing.
    You should see the App Store icon in the Dock and be able to access from your Apple menu also.
    Make sure your Mac meet's Lion's requirements

  • How to run a query several times?

    Hi all,
    Anyone has a clue for the following situation:
    We have made a query (on the web) with several characteristics and key-figures. One of the characteristics has unique values that occurs only once (something like numbers for documents in R/3). The query was build with only one user-input variable based on this characteristic. The query was build especially for printing and fits exactly on a A4-paper.
    We would like to give the end-user a tool in which he/she can store several values for the characteristic. On the basis of these stored values the system has to run the query several times.
    Something for the Reporting Agent or is there an other solution?
    Thanks in advance,
    Henk.

    hi Henk,
    'control query' in few words is to filter data with combination of characteristic value.
    http://help.sap.com/saphelp_nw04s/helpdata/en/6e/b5663a5fb46752e10000000a11402f/frameset.htm
    Control Query for Pre-calculating Web Templates
    Definition
    A control query is a help query that you execute before you execute the queries in the Web template, and use the result to parameterize the Web template.
    Use
    You can specify a control query as significant information in the Reporting Agent settings for a Web template. When you specify a control query, the system does not pre-calculate the Web template itself, but a number of filtered views from the Web template.
    We particularly recommend this procedure when wanting to calculate several Web templates only distinguished by their filter values in one swoop.
    Using a control query in particular allows you to formulate complex selection criteria for the data to be pre-calculated.
    Pre-calculate only the TOP50 customers, whose data is frequently requested, for example.
    Structure
    A very simple query, which contains exactly those characteristics in the drilldown in the rows according to which the Web template will be filtered, is particularly suitable as a control query. Every row in the table that a control query delivers, subsequently serves as a dynamic filter for the Web template views.
    The respective combination of characteristic values is used as a filter for the Web template Data Provider for each table row. The background run produces pre-calculated data records, in actual fact one data record for each table row that delivers a control query.
    If a characteristic does not appear in a view, the filter value is ignored.
    In addition, you automatically get only those filter value combinations, for which data exists in the InfoCube used to define the control query.
    Example
    A typical application of this approach for pre-calculating a Web template is with cockpit applications, since they are controlled mainly through selection lists and no real OLAP navigation is necessary.
    You can also use a control query for filtering when pre-calculating Crystal reports queries. You can find additional information under Defining Crystal Reports Queries Settings.

  • Help! my MacBookPro (Dual core Intel 2.6ghz) has begun to emulate a Windows device. Crashes serveral times a day ... sometimes several times an hour. Running 10.6.8. Any ideas?

    Help! My MacBookPro (Intel dual-core 2.6ghz) running MacOS 10.6.8 has decided to emulate a Windows device ... crashes several times a day ... sometimes even several times an hour. Also seems to be running significantly hotter. Any ideas?

    Heat can be a big problem.
    Check the S.M.A.R.T. status of the drive in Disk Utilty by highlighting the Drive & looking at the bottom of the window.
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.
    Have you blown the dust out lately? Let it cool for an hour & see if you can get these...
    Get Temperature Monitor to see if it's heat related...
    http://www.macupdate.com/info.php/id/12381/temperature-monitor
    iStat Menus...
    http://bjango.com/mac/istatmenus/
    And/or iStat Pro...
    http://www.islayer.com/apps/istatpro/
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.
    Also, open console in Applications>Utilities, check the system log for the date/time of the last problem for clues.
    Open Activity Monitor, Show:>All Processes, sort on CPU%, see if anything using too much CPU% when this happens, click on Memory tab, do you have many Pageouts?
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.

Maybe you are looking for

  • Error message "F" using Menu Builder

    I have created two movies, saved them as .cp files and also exported them as EXE files. I inserted the the EXE versions as Items into a MenuBuilder project. I save that project as an .mpg file and exported it as an EXE file as well. What I wanted to

  • AE CC works but AE CC2014 hangs at media init - so does Media Encoder 2014

    OSX 10.9.4 AE CC works great -- AE CC2014 hangs at Initializing Media Core.  When it finally opens it says the quick time not installed.  I set all cache - adobe folders to read/write permissions.  I have only apple codex in Library/Quicktime.   My f

  • Auto-choosing a specific network

    hello, i have two wireless networks at my house, and i pick up a neighbor's too. when i awake my powerbook, i'd like it to be able to connect to my wireless g only network, not my b one. my powerbook used to do this, but recently, i had to do a facto

  • USB 4G LTE modem won't work second time trying it during the day :(

    I have a VERIZON USB551L 4GLTE modem. In the morning the laptop fires up and modem fine. Then trying to disconnect it takes forever, or it will sit there and say initializing. VZAM version 7.6.3.1. HELP

  • Application session won't terminate

    Hello This is a strange issue. Network connection paramaters: -Remote site has 50/10 cable link (no QoS).     Cable company has verified connections/signal etc.. = good -Wireless AP is cisco AIR-CAP3602I-A-K9 which connects back to a WISM (WS-SVC-WIS