Optimization techniques for JSC2 and its AppServer

There have been several forums posts about the lagging performance of JSC2 and the bundled App Server.
Could anyone suggest some steps to optimize the IDE and app server without any hardware changes?

check out:
http://developers.sun.com/prodtech/javatools/jscreator/reference/faqs/technical/tshooting/hot_fix_2.html
NB Performance FAQ's:
http://wiki.netbeans.org/wiki/view/NetBeansUserFAQ#section-NetBeansUserFAQ-Performance
HTH,
Sakthi

Similar Messages

  • I accidentally downloaded a website for coupons and its toolbar keeps popping up? I want to completely get rid of it on my internet. How do I do this?

    I accidentally downloaded a website for coupons and its toolbar keeps popping up at the top of my internet window. I went to the toolbar options and unchecked it but when I get back into the internet it is up again. I want it completely gone so that it doesn't even have a chance to be seen. I don't want it. How do I get rid of it?

    I would start off with Firefox's Add-ons page. Either:
    * Ctrl+Shift+a
    * orange Firefox button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then look for unwanted extensions and try the Remove button.
    If the Remove button is missing, this usually means the extension was installed through the Windows installer. In that case, check for it in the Windows Control Panel, Uninstall a Program. Clicking the "Installed on" column header will bring the most recent additions to the top for easier spotting.
    After you get rid of it, assuming you can remove it in one of those two ways, I suggest "mopping up" with some malware removers. This article lists tools that other Firefox users have found helpful: [[Troubleshoot Firefox issues caused by malware]].
    Any luck?

  • HT201263 my ipod is asking for passcode and its disabled now I cant access it as my computer in which I had synced it is crashed

    I have ipod touch for the last two years.  I had not used it for long time now, since my computer has been changed I can not synce it as its asking for passcode and its disabled now. I had not saved the password.  I also can not format it. Pl help me.

    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...  Be sure to Follow ALL the Steps..

  • TS1702 How do I get an app that I paid for transferred over to my iPhone? I paid for it and its not able to be used on iPad!

    How do I get an app that I paid for transferred over to my iPhone? I paid for it and its not able to be used on iPad!

    Assuming you're using the same Apple ID, just download it onto your iPhone.

  • Which table if for BADI and its implementation

    Which table if for BADI and its implementation
    I want to know which implementations have already been created and actived for one BADI.

    Hi
    check the tables for BADI
    SXC_ATTR   
    SXC_ATTRT  
    SXC_CLASS  
    SXC_COCO   
    SXC_EXIT   
    SXC_FCODE  
    SXC_FCODET 
    SXC_IMPSWH 
    SXC_SCRN   
    SXC_TABLE  
    SXC_TABLET 
    Regards
    Anji

  • Can one ask for engraving for ipad and its case in retail store or it is just an online feature?

    I am wondering if I go to an apple retail store, can I ask for engraving for ipad and its case that I bought there? Or they are doing this only for online purchases.

    Many users have found that engraving reduces the resale value of iPads.
     Cheers, Tom

  • HT201441 i got this iphone 4 off of someone for $60 and its linked to a apple account and i don't have any contact to him now do i go to apple to activate it?

    i got this iphone 4 off of someone for $60 and its linked to a apple account and i don't have any contact to him now do i go to apple to activate it?

    Hello tom,
    I understand you are having issues activating an iPhone 3G. The following article addresses the exact error message you included:
    iPhone: Troubleshooting activation issues
    http://support.apple.com/kb/TS3424
    Resolution
    - Restart the iPhone.
    - Try another means of reaching the activation server and attempt to activate.
              - Try connecting to Wi-Fi if you're unable to activate using a cellular data connection.
              - Try connecting to iTunes if you're unable to activate using Wi-Fi.
    - Restore the iPhone.
    If you receive an alert message when you attempt to activate your iPhone, try to place the iPhone in recovery mode and perform a restore.
    Thanks,
    Matt M.

  • HT1498 I rent a movie and I can see it.  And I go to iTunes Store, check for rentals and its not loading the movie.

    I rent a movie and I can't see it.   I went to itune store and check for rentals, but its not loading the movie.  What should I do?

    I went to check for rentals on Apple TV to find rental. There is no support and no resolve. The screen just kept loading, never showing the movie after I purchased it. This is the second time this has happened to me. Very disappointed.
    My have to look for alternative..

  • Query for  customer and its all the underlying sites in AR

    Hi Expert,
      Please help me to build a query for a customer and its all the underlying sites .
    Thanks

    Please check this thread:
    Running Total in QLD
    Thanks,
    Gordon

  • Re:Query for Item and its first child Itemcode from BOM...!!!

    Dear SAP Members,
    I need a query that contains
    ItemCode,ItemDescription from oitm table and its first child item code,Item Description,Quantity,currency and price from itt1 table.I have taken all the datas but there is no ItemDescription from itt1 table.How to join all these datas.
    Please Give suggestions or query for this issue.
    With Regards,
    Revathy

    Hi try this
    Declare @BOMDetails table(TreeType Nvarchar(MAX),PItem NVARCHAR(Max),PName NVARCHAR(MAX),CItem  NVARCHAR(Max),CName NVARCHAR(MAX),Comment NVARCHAR(MAX),onHand Numeric(18,0),[Committed] Numeric(18,0),FreeStock Numeric(18,0),[Status] NVARCHAR(MAX),Quantity numeric(18,0),Price numeric(18,0),Warehouse nvarchar(MAX),Currency nvarchar(MAX))
    INSERT Into @BOMDetails
    SELECT T1.TreeType ,T0.Father AS [Parent Code], T2.ItemName AS [Parent Description], T0.Code AS [Child Code],
    T1.ItemName AS [Child Description], T0.Comment, cast((T1.OnHand ) as Numeric(18,0)) as [Un-Committed Stock],
    cast(T1.IsCommited as Numeric(18,0)) AS [Committed Stock], cast((T1.OnHand - T1.IsCommited)as Numeric(18,0)) AS [Free Stock], T2.FrgnName AS [Status],T0.Quantity,T0.Price ,T0.Warehouse,T0.Currency
    FROM ITT1 T0 INNER JOIN OITM T1 ON T0.Code = T1.ItemCode
                 INNER JOIN OITM T2 ON T0.Father = T2.ItemCode
    WHERE T0.ChildNum=1
    Union All
    SELECT ' ',T0.Father as [Parent Code], T2.ItemName AS [Parent Description], '', '', '', 0,0,0 , '',0,0,'','' FROM ITT1 T0 INNER JOIN OITM T1
    ON T0.Code = T1.ItemCode INNER JOIN OITM T2 ON T0.Father = T2.ItemCode
    Group By T0.Father,T2.ItemName
    ORDER BY T0.Father, T0.Code
    update @BOMDetails set PItem='' ,PName='' where TreeType='N' or TreeType='P'
    Select PItem as[Parent Code] ,PName as [Parent Description],CItem as [Child Code],CName as [Child Description],Comment,Quantity,Price,Warehouse,Currency   from @BOMDetails
    thanks,
    Neetu

  • I have installed iPhoto for iPad and its taking a lot of time to sync the photos from the library

    I have been waiting for like 3 hours and iPhoto App can't sync all my albums. I don't have a lot of photos and its weird because the App hangs many times. I have the new iPad.

    iPhoto for iOS does not sync your photos. To sync photos you use iTunes on your computer and connect your iPad.
    When iPhoto for iOS runs it checks your photo library. If there have been changes to your photos iPhoto needs to update the library. It will compare the library in existence with the photos on your pad and update the reference to those things which have changed. If you have a lot of photos this will take some time. If iPhoto for iOS shuts down during this process you might have some corrupt photos on your ipadthat need to be fixed or deleted first.

  • Table for view and its description

    Hi,
    Is there any table which can have the view and its description in R/3?
    These views are primarily used in Generic extractor Definition!
    I am preparing a list of the views used in Gneric extraction and for that i need the description of the view in question!
    Raj

    Hi,
    I have nearly 1200 Views .
    It is just not possible to enter each entry of the view and to know the description manually.
    I know that we can find the description in SE11. but if there is a table which can have the viewid along with the description  my job is lot easiler.
    Any ideas?
    Raj

  • TABLE FOR DIVISION AND ITS DESCRIPTION

    Dear Mates,
    My client wants to add a Division and its Description to the Z report -Daily Collection Report from Customers.
    Can anybody help out for table name and its fields for Division and Description
    Thanks in anticipation
    Subbu

    Hi,
    I guess your question is about divisions within a Sales Organization. The related tables are listed below:
    TSPAT - organizational unit: Sales Divisions (Text)
    TVTA - Organizational Unit: Sales Area(s)
    TVKOS -Organizational Unit: Divisions per Sales Organization
    Hope you find the information relevant and useful. If so, please close the message.
    Muraleedharan.R

  • Need a common manage bean for page and its fragments

    Hi,
    I'm using Jdev 11.1.2.3.0. I have a page and its fragments (i using <af:region> to include these fragments).
    I want to create a mutual bean used for that page and its fragments.
    Beause my page fragments are contained in other BTF, so i cannot use PageFlow Bean scope and
    I don't want to use session scope and application scope.
    Could someone have any ideas ?
    Thank you.

    Hi Frank,
    I used Shared DC, but now I got an issue
    I have <af:panelGroupLayout> in my page fragment and i want to bind it to RichPanelGroupLayout in my common bean (already create Data Control for this bean).
    I cannot do this, I just can bind attributes of RichPanelGroupLayout to my page fragment.
    Do you have any ideas? Can we bind directly RichPanelGroupLayout in DC to page fragment like this: <af:panelGroupLayout id="panelGroupLayout11" layout="scroll" *binding="#{bindings.panelGroupLayout}"* ...
    Thank you very much
    Thanh Hoang

  • MMBE transaction fields for BATCH and ITS Quantity

    Hi Gurus,
               I am developing a report to get the details of material like Material code, Material type, Material Group, Material Group1, Special stock indicator, Special stock Numb, Batch and its quantity.
             Can any one suggest the table from where i cud fetch Special stock numb and its indicator , batch and relevant quantity of the material.
           My client is referring to standard transaction MMBE and wants me to get the details from there.
          I would like to take this opportunity to thank you in advance for your valuable suggestions.
    Thanking You,
    ZIa

    Hi,
    The following tables used for MMBE...Just identify your table & fields....
    TABLES: kna1,                     "Kundendaten auf MandEbene
            lfa1,                             "Lieferantendaten auf MandEb.
            lfm1,                             "Lief.daten auf EkOrgEb.
            tcurm,                            "Customizing (Bew.kreisebene)
            makt,                             "Material-Kurztexte
            mara,                             "Materialdaten auf MandEbene
            marav,                            "Materialdaten mit Kurztext
            marc,                             "Materialdaten auf Werksebene
            marcv,                            "Materialdaten auf Werksebene
            mard,                             "Materialdaten auf Lagerort
            marm,                             "Mengeneinheiten zum Material
            mchb,                             "Chargenbestaende
            mcha,                             "Chargen
            mch1,                             "Chargen
            mkol,                             "Lieferanten-Konsignation
                                              "Mehrwegtransportverpackungen
            msca,                             "K.Auftragsbest. beim Lief.
            mska,                             "Kundenauftragsbestand
            msku,                             "K.Lergut und K.Konsignation
            mslb,                             "Lieferantenbeistellung
            mspr,                             "Projektbestände
    *<<<    hier später weitere Bestandstabellen ergänzen
            ekbe,                             "enth. WE-Sperrbestand
            ekpo,                             "Bestellposition
            resb,                             "Reservierungsposition
            vbbe,                             "Bestände des Vertriebs
            t001,                             "Buchungskreistabelle
            t001l,                            "Lagertabelle
            t001w,                            "Werke
            t006a,                            "Zuo. externe - interne ME
            t134t,                            "Texte zur Materialart
            t148,                             "Sonderbestände
            t148k,                            "Sonderbestände Sicht MM_BD
            t136,                             "Bestandsfelder je Anz.Version
            t136a,                            "Bestandsfelder je Anz.Versio
            t136e,                            "max. Felder Einzelliste
            t136f,                            "max. Felder Grund/Aufrißliste
            t136v,                            "Anz.Version zur Einzelliste
            t157b,                            "Texte Bestandsfelder
            t320,                             "Lagernummer zu Werk/LgOrt
            t340d,                           "JH/13.05.98/4.0C
            rmmmb,                        "Hilfsfelder
            rmmme1,                      "Hilfsfelder für alt. MEs
            sscrfields.                      "Hilfsfeld Sel.bild SW/8.10.98

Maybe you are looking for

  • Why is Mail 6.2 not displaying messages from my Exchange account?

    Greetings, I have a new 13" MacBook Air running Mountain Lion and I'm noticing that most of the time my Mail inbox is not displaying messages from my work Exchange account; however, it does display messages correctly for my Gmail account.  I've inclu

  • Regarding MIGO Creation

    Hello, While creating MIGO in Material Management, I'm getting this error " Account Determination for entry OPB0 (OPerational Chart of Accounts) BSX BPGC (Group Chart of Accounts) ____3000 not possible." Please help me regarding this. Thanks rin Adva

  • Cramming multiple envelopes in one response

    Hello, list! I need to implement a kind of SOAP server combined with SOAP client. "Kind of" because the standard I follow (CPE WAN Mgmt Protocol [1],[2]) introduced some "extensions" to SOAP (section 3.4.1), the most important of which is the possibi

  • RSH gethostbyname: Error 0

    Apologies for posting Solaris 8 query in this forum. When I try to do a RSH (rsh HOST pwd). gethostbyname: Error 0 gethostbyname: Error 0 If you see this. The error comes up but still the RSH command works. This affects the USFDUMP scheduled backup w

  • Firefox suddenly won't open at all

    Starting yesterday, firefox doesn't open at all. When I bring up the task manager it shows that firefox is running. I've tried ending the process and then restarting, but it still doesn't open. I tried uninstalling and reinstalling. I also tried to c