Toolscript Manager (Ajax Control Toolkit script Manager)Performance in different SharePoint Environments

In Ajax enabled webpart pages  toolscript manager's reference is added
This works perfectly fine in  SharePoint dev Environment (no performance issue) but
after these webparts are moved to staging enviroment , page performance becomes critical.
How to identify the factor in staging enviroment which affects toolscript manager's performance in staging env
can tool like fiddler be used?How?
Swati
SP Page: http://www.facebook.com/SharePointQ SP Blog: http://swatipoint.blogspot.com

with fiddler  I was able to find that
In staging environment,
following entry was generated  in fiddler  tool  page.aspx? _tsm_combinedscripts_=true........
which requires significantly good time to download the large data.(largest time than other  requests)
in  dev env this entry was not generated in fiddler , now I want to know , how this entry was  generated in staging environment and not in dev environment 
SP Page: http://www.facebook.com/SharePointQ SP Blog: http://swatipoint.blogspot.com

Similar Messages

  • Oracle 10g Enterprise Manager DB control vs Enterprise Manager Console

    We have a consultant install Oracle 10g on Windows platform. Somehow, I only see Enterprise Manager Console installed and I can use this console to access database. I don't see Enterprise Manager Database Control installed. What difference between Console and DB control? Please advise.
    Thanks
    S.

    ski123 wrote:
    I see the interfaces are totally different. the console is more like Oracle 9i. I know the DB control is a web tool, just for Oracle 10g. My question is in terms of admin, which one is better? Why Oracle has different tool to manage Database?The Oracle Enterprise Manager Console is a Java Standalone client, not a 3-tier product like the EM DB Console.
    The Java Standalone client was deprecated in 10gR1. Probably since not all features had been ported to the 3-tier DB Console (eg: Spatial index management and Workspace Management), Oracle decided to let us use the Java Console as an extra install from the Client/Companion disk. However it is no longer available going forward into 11g.
    If you look at the 'Console' carefully, you will not that some areas are no longer functional and it does not cover all capability of 10g, for example in partitioning and indexing.

  • Can Enterprise Manager Grid Control 10g R4 manages Oracle DB 11g?

    Are there some articles or documents for that?

    I assume you are asking whether it is possible to run Enterprise Manager Grid Control without using the embedded database. The answer is yes. There is a step in the install wizard that ask you whether you want to create an embedded database, or use an existing database environment. Just follow the instructions on the wizard to point your EM server to the database of your choice. You can even run EM on RAC provided that you already have the license for it.

  • Update panel did not work with ajax control toolkits

    hye there, can anybody helps me about the update panel. I have a grid view that must show the file that i already browser. in my situation i am using Ajax control toolkit so it automatically will upload the file in the grid view. Unfortunately it did not
    work but the other code is work. this is my code
    function clearContents() {
                var AsyncFileUpload = $get("<%=MemoFileUpload.ClientID%>");
                var AsyncFileUpload = $get("<%=AttorneyFileUplod.ClientID%>");
                var AsyncFileUpload = $get("<%=TORFileUpload.ClientID%>"); 
                var txts = AsyncFileUpload.getElementsByTagName("input");
                for (var i = 0; i < txts.length; i++) {
                    if ((txts[i].type == "file") || (txts[i].type == 'text')) {
                        txts[i].value = "";
                        txts[i].style.backgroundColor = "transparent";
                    if (txts[i].type == 'text') {
                        txts[i].value = '';
            function uploadComplete1(sender, args) {
                clearContents();
                __doPostBack("<%= HiddenButton.UniqueID %>", "");
            function uploadComplete2(sender, args) {
                clearContents();
                __doPostBack("<%= HiddenButton2.UniqueID %>", "");
    //the code that works
    <td>
                                                                       <%-- <asp:FileUpload
    ID="MemoFileUpload" runat="server" Height="25px" Width="275px" />--%>
                                                                        <asp:AsyncFileUpload
    OnClientUploadComplete="uploadComplete1" runat="server" ID="MemoFileUpload"
                                                                            Width="400px"
    UploaderStyle="Modern" CompleteBackColor="White" UploadingBackColor="#CCFFFF"
                                                                            ThrobberID="imgLoader"
    OnUploadedComplete="btnMemoUplod_Click" OnClientUploadStarted="uploadStarted" />
                                                                        <asp:Button runat="server"
    ID="HiddenButton" Style="display: none;" />
                                                                        <asp:Image ID="imgLoader"
    runat="server" ImageUrl="../Images/loader.gif" /><br />
                                                                        <br />
                                                                        <img id="imgDisplay"
    alt="" src="" style="display: none" />
                                                                    </td>
                                                                    <td align="right">
                                                                        <asp:Button ID="btnMemoUplod"
    runat="server" Text="<%$ Resources: Section64OpenKPDetailedPRS.aspx,btnMemoUplod %>" Visible="false" />
                                                                        <%--CssClass="ButtonStyle"--%>
                                                                    </td>
                                                                    <asp:UpdatePanel ID="update1"
    runat="server" UpdateMode="Always">
                                                                        <Triggers>
                                                                            <asp:PostBackTrigger
    ControlID="btnMemoUplod" />
                                                                            <%--<asp:PostBackTrigger
    ControlID="GridInspection" />--%>
                                                                            <%--
     <asp:AsyncPostBackTrigger ControlID="btnMemoUplod" EventName="Click" />--%>
                                                                        </Triggers>
                                                                        <ContentTemplate>
                                                                        </ContentTemplate>
                                                                    </asp:UpdatePanel>
                                                                </tr>
    //the code that did not work
     <td>
                                                                        <%--<asp:FileUpload
    ID="AttorneyFileUplod" runat="server" />--%>
                                                                         <asp:AsyncFileUpload
    OnClientUploadComplete="uploadComplete2" runat="server" ID="AttorneyFileUplod"
                                                                            Width="400px"
    UploaderStyle="Modern" CompleteBackColor="White" UploadingBackColor="#CCFFFF"
                                                                            ThrobberID="imgLoader1"
    OnUploadedComplete="btnAttrnyUpload_Click" OnClientUploadStarted="uploadStarted" />
                                                                         <asp:Button
    runat="server" ID="HiddenButton2" Style="display: none;" />
                                                                        <asp:Image ID="imgLoader1"
    runat="server" ImageUrl="../Images/loader.gif" />
                                                                    </td>
                                                                    <td align="right">
                                                                        <asp:Button ID="btnAttrnyUpload"
    runat="server" Text="<%$ Resources: Section64OpenKPDetailedPRS.aspx,btnAttrnyUpload %>" visible ="false" />
                                                                        <%--CssClass="ButtonStyle"--%>
                                                                        <asp:UpdatePanel
    ID="Update2" runat="server" UpdateMode="Conditional">
                                                                            <Triggers>
      <asp:PostBackTrigger ControlID="btnAttrnyUpload" />
      <%--<asp:PostBackTrigger ControlID="grdAttorny" />--%>
                                                                            </Triggers>
                                                                            <ContentTemplate>
                                                                            </ContentTemplate>
                                                                        </asp:UpdatePanel>
                                                                    </td>
                                                                </tr>

    Hi,
    For ASP.NET problem, please post in ASP.NET forum!
    Best Wishes!
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey. Thanks<br/> MSDN Community Support<br/> <br/> Please remember to &quot;Mark as Answer&quot; the responses that resolved your issue. It is a common way to recognize those who have helped you, and
    makes it easier for other visitors to find the resolution later.

  • Install Enterprise Manager Grid Control 11R1 Failed at OMS Configuration

    Hello:
    I have installed Oracle 11g (11.2.0.1) and WebLogic Server (WLS) 10.3.6.0 and currently I am in the process of installing Enterprise Manager Grid Control 11R1 on a Linux RedHat 5.8 and it fails at OMS Configuration.
    I have read the following thread and they suggested to use WLS 10.3.2:
    Trouble installing EM GC -- installer patch 9329357 fails
    I was looking for WLS 10.3.2 in Oracle's website and I could not find it.
    Any help would be greatly appreciated.
    Here is the log regarding the error:
    The patch has more than one Archive Action but there is no Make Action.
    ApplySession applying interim patch '9367763' to OH '/dbs0/product/fmw/oms11g'
    Running prerequisite checks...
    You selected -local option, hence OPatch will patch the local system only.
    Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
    (Oracle Home = '/dbs0/product/fmw/oms11g')
    Is the local system ready for patching? y
    Y (auto-answered by -silent)
    User Responded with: Y
    Backing up files and inventory (not for auto-rollback) for the Oracle Home
    Backing up files affected by the patch '9367763' for restore. This might take a while...
    Backing up files affected by the patch '9367763' for rollback. This might take a while...
    Patching component oracle.ldap.rsf, 11.1.1.2.0...
    Updating archive file "/dbs0/product/fmw/oms11g/lib/libldapclnt11.a" with "lib/libldapclnt11.a/gslu.o"
    ApplySession adding interim patch '9367763' to inventory
    Verifying the update...
    Inventory check OK: Patch ID 9367763 is registered in Oracle Home inventory with proper meta-data.
    Files check OK: Files from Patch ID 9367763 are present in Oracle Home.
    Execution of 'sh /dbs0/product/fmw/oms11g/install/oneoffs/111010/9367763/custom/scripts/post -apply 9367763 ':
    Return Code = 0
    The local system has been patched and can be restarted.
    OPatch succeeded.
    This config tool has failed. Please re-run this config tool manually from another terminal as
    <ORACLE_HOME>/perl/bin/perl <ORACLE_HOME>/install/oneoffs/apply_NewOneoffs.pl <ORACLE_HOME> <oneoff_numbers>
    Eg: /scratch/EM/agent10g/perl/bin/perl /scratch/EM/agent10g/install/oneoffs/apply_NewOneoffs.pl /scratch/EM/agent10g 5632264,5961654
    Finished one-offs apply...
    Deleting the files...
    Finished deleting the above files...
    Configuration assistant "OMS Oneoff Patch Application" Succeeded
    Running Configuration assistant "Repository Configuration"
    Calling the EMSCHEMA MANAGER: CREATE
    Please check the Repository Configuration Assistant logs at: /dbs0/product/fmw/oms11g/sysman/log/schemamanager
    The create is completed now running the MOS
    Configuration assistant "Repository Configuration" Succeeded
    Running Configuration assistant "MDS Schema Configuration"
    Configuration assistant "MDS Schema Configuration" Succeeded
    Running Configuration assistant "OCM EM Repository Instrumentation"
    Configuration assistant "OCM EM Repository Instrumentation" Succeeded
    Running Configuration assistant "OMS Configuration"
    Executing the OMSCA command...
    Check the OMS Configuration Assistant logs at: /dbs0/product/fmw/oms11g/cfgtoollogs/omsca
    INFO: Required tool's Execution failed
    Configuration assistant "OMS Configuration" Failed
    INFO: ***Configuration Assistants Action END ***
    *** The installation was Successful, but some configuration assistants were failed or cancelled or skipped. ***

    Hello:
    For some reason after selecting the Retry button it successfully passed the Add-on OMS Side Configuration. Now I am failing at the "Agent Configuration Assistant". Here's the agent log:
    log4j:ERROR No appenders could be found for category (oracle.sysman.emas.sdk.discovery.discover.WeblogicTargetDiscovery).
    log4j:ERROR Please initialize the log4j system properly.
    Total Discovery time is :1675milliseconds.
    INFO: oracle.sysman.top.agent:AddingToTargetsXml: WLS targets
    INFO: oracle.sysman.top.agent:Adding /oracle/product/agent11g/sysman/install//oraclewls.out file to /oracle/product/agent11g
    INFO: oracle.sysman.top.agent:addToTargetsXML:TargetInstaller added target file= /oracle/product/agent11g/sysman/install//oraclewls.out to /oracle/product/agent11g successfully.
    INFO: oracle.sysman.top.agent:AgentPlugIn:perform:Starting Agent with startAgent=true
    INFO: oracle.sysman.top.agent:Starting the agent
    INFO: oracle.sysman.top.agent:Starting the agent...
    INFO: oracle.sysman.top.agent:Executing Command: /oracle/product/agent11g/bin/emctl start agent
    INFO: oracle.sysman.top.agent:Oracle Enterprise Manager 11g Release 1 Grid Control 11.1.0.1.0
    INFO: oracle.sysman.top.agent:Copyright (c) 1996, 2010 Oracle Corporation. Allrights reserved.
    INFO: oracle.sysman.top.agent:Agent is already running
    INFO: oracle.sysman.top.agent:Requested Operation Completed with Status = 0
    INFO: oracle.sysman.top.agent:
    The Management Agent Configuration Assistant has failed. The following failureswere recorded:
    Securing of the agent failed.
    INFO: oracle.sysman.top.agent:Internal PlugIn for {Micro Step state:step:2:configuration in CfmAggregateInstance: oracle.sysman.top.agent:11.1.0.1.0:common:family=CFM:oh=/oracle/product/agent11g:label=10} failed with an unhandled exception:
    java.lang.Exception:
    The Management Agent Configuration Assistant has failed. The following failureswere recorded:
    Securing of the agent failed.
    at oracle.sysman.emcp.agent.AgentPlugIn.startProcessing(AgentPlugIn.java:269)
    at oracle.sysman.emcp.agent.AgentPlugIn.invoke(AgentPlugIn.java:243)
    at oracle.sysman.emCfg.core.PerformMicroStep.runJavaClass(PerformMicroStep.java:540)
    at oracle.sysman.emCfg.core.PerformMicroStep.executeMicroStep(PerformMicroStep.java:120)
    at oracle.sysman.emCfg.core.ActionPerformer.performMicroStep(ActionPerformer.java:917)
    at oracle.sysman.emCfg.core.ActionPerformer$Performer.run(ActionPerformer.java:1038)
    INFO: oracle.sysman.top.agent:The plug-in Agent Configuration Assistant has failed its perform method
    Any help would be greatly appreciated.
    Thanks,
    Orivares

  • Control for 'ports' management, grid or tile control?!

    Hy.
    I want to make a control for 'ports' management where I can select multiple ports with mouse(mouseDown-start port, mouseUp-end port) and for the selection i can set the type changing it's color.
    Now I'm using a TILE with a repeater using as Item a custom Canvas that has HRule,VRule as borders so I can set only the borders that I want to make the Big Selection of multiple ports as in the next image.
    The problem is the performance, now I'm using only 1500 ports and it takes a few seconds to draw but for 65565 (this value I need) i get error "A script has executed for longer than the default timeout period of 15 seconds."
    Any other ideas? also there is a control(slider) where i can set the number of ports for each line...

    We finally got our facts right..
    The Grid Control Enterprise Manager comes only in 32 bits.. However the Grid Control agent that needs to be installed on the DB server comes in 32/64bits and is supported under different OS platforms.
    Metalink (Doc ID 412431.1) shows the Oracle Enterprise Manager Grid Control Certification Checker/matrix that we found extremely useful.
    Enterprise Manager Grid Control comes with the basic features and is free to use. Any extra features are considered addons and do need to be properly licensed.
    Thanks

  • OWB Change Management/Version Control Best Practice

    Hi
    I am about to start developing a data warehouse using OWB 10g R2, and I've been doing quite a lot of research into the various deployment/change management/version control techniques that can be used, but am still unsure which is the best to use.
    We will have 2-3 developers working on the project, and will be deploying from Development, to Test, to Production (each will have a separate repository). We want to be able to easily identify changes made between 1 release and the next to have a greater degree of control and awareness of what goes into each release. We also wish to use a source control system to track changes (we'll probably use SVN, but I don't think that the actual SCS tool makes a big difference to our decision at this point).
    The options available (that I'm aware of), are:
    1. Full MDL export/import.
    2. Snapshot MDL export/import.
    3. Manual coding of everything using OMB Plus.
    I am loath to use the full MDL export/import functionality since it will be difficult, if not impossible, to identify easily the changes made between 1 release and the next.
    The snapshot MDL export/import functionality is a little better at comparing releases, but it's still difficult to see exactly what has changed between 1 version and the next - particularly when a change to a transformation has been made. It also doesn't cope that well with tracking individually made changes to different components of the model.
    The manual coding using OMB Plus seems like the best option at the moment, though I keep thinking "What's the point of using a GUI tool, if I'm just going to code everything in scripts anyway?".
    I know that you can create OMB Plus code generation scripts to create your 'creation' scripts, but the code generation of the Alteration scripts seems that it would be more complicated than just writing the Alteration scripts manually.
    Any thoughts anyone out there has would be much appreciated.
    Thanks
    Liffey

    Well, you can also do per-object MDL exports and then manage those in your version control system. With a proper directory structure it would be fairly simple to code an OMB+ Script that scans a release directory tree and imports the objects one by one. I have done this before, although if you are using OWB as the primary metadata location for database objects then you have to come up with some way to manage object dependency order issues.
    The nice thing about this sort of system is that a patch can be easily shipped with only those objects that need to be updated.
    And if you force developers to put object-level MDL into your version control system then your system should also have pretty reporting on what objects were changed for a release and why.
    At my current job we do full exports of the project MDL and have a deployment script that drops the pre-existing deployed version of the project before importing and deploying the new version, which also works quite well - although as you note the tracking of what has changed in a release then needs to be carefully managed elsewhere. But we don't deploy any of our physical database objects through OWB. Those are deployed from Designer, and our patch script applies all physical changes first before we replace the mappings from the OWB project. We don't even bother synching the project metadata for tables / views / etc. at deployment. If the OWB project's metadata for database objects is not in sync with Designer, then we wind up with deployment errors. But on the whole it works pretty well.

  • How to configure Enterprise Manager Database Control (EMDC) to make it work on 2 servers working (primary and standby) under DG rules

    Hello everybody i use Oracle Database EE 11.2.0.4 with DG.
    In those cases i need to get Enterprise Manager Database Control running against DB with no RAC and no DG i perform the following steps:
    I Logon SQLPLUS as user SYS or SYSTEM, and drop the sysman account and management objects:
    DECLARE
    CURSOR c1 IS
    SELECT owner, synonym_name name
    FROM dba_synonyms
    WHERE table_owner = 'SYSMAN';
    BEGIN
    FOR r1 IN c1 LOOP
    IF r1.owner = 'PUBLIC' THEN
    EXECUTE IMMEDIATE 'DROP PUBLIC SYNONYM '||r1.name;
    ELSE
    EXECUTE IMMEDIATE 'DROP SYNONYM '||r1.owner||'.'||r1.name;
    END IF;
    END LOOP;
    END;
    DROP USER mgmt_view CASCADE;
    DROP ROLE mgmt_user;
    DROP USER sysman CASCADE;
    After that i run
    emca -config dbcontrol db -repos recreate
    But what should i do in cases i have 2 servers working (primary and standby) under DG rules?

    Hi ,
    It is not possible to monitor/administer a Logical or Physical Standby database, i.e Data Guard, using Enterprise Manager Database Control.  This is primarily due to the fact that Database Control is designed to monitor 1 database and a Data Guard environment, by definition, includes more than 1 database.
    If you attempt to run emca against a standby Database, you will get an error like (i.e. ORA-01219: database not open).
    Database Control, can, of course, be used to monitor the current Primary database (with no ability to administer or monitor Data Guard related functionality).  In such a case, when failover occurs Database Control must be reconfigured to run on the new Primary database using the commands detailed in Note 278100.1 How To Drop, Create And Recreate DB Control In A 10g Database, section C. Recreate/ReConfig DB Control, Option 2. Recreate the DB Control Configuration Files and Repository.
    Enterprise Manager Grid Control or Cloud Control provides the functionality for viewing, monitoring, and administering primary and standby databases in a Data Guard configuration.
    Reference: Is it Possible to Configure Database Control for a Logical or Physical Standby Database? (Doc ID 315116.1)
    You can use EM 12c cloud control to monitor and manager Standby DB effectively
    Ref to below link for details
    Set Up and Manage Oracle Data Guard using Oracle Enterprise Manager Cloud Control 12c
    Regards,
    Rahul

  • Backup problems from Enterprise Manager Database control

    I'm having a problem with performing backups from EM DB Control on two of my Oracle 10g 10.2.0.4 systems. When I configure and submit any backup job from EM (either online or offline), the following happens:
    - When the job is due to run a Pre backup task has status of 'Scheduled'
    - Prebackup task completes and status changes to 'Succeeded'
    - Backup task appears with status of 'Scheduled' and value of started time within the next minute
    - Status of backup task never changes from 'Scheduled', and the started time keeps updating to the current time
    - This goes on indefinitely until I abort the job
    At the moment I have scheduled tasks configured to run an RMAN job every night, but I need to get this working through Enterprise Manager Database control. Please help!
    Something else which has happended on one of these systems is that after applying some Microsoft Critical updates the database control service would not start. The only way I could find to resolve this was to recreate the Enterprise Manager repository. Could there be a link here at all?
    Cheers,
    Strak

    I think Rodney may have the cause, because the database has been copied. I have looked in every property file I can think of, and then all the rest anyway, and there is no reference to the old host name. And I have ralready e-installed EM using emca -config -dbcontrol db. And I'm definately on the correct port.
    So it must be held internally in the database. I've seen partial instructions on deleting the EM repository in the database & java files, does anyone have a full set I can use ? Once that is done, does emca reinstall everything ?
    Many thanks, Duncan

  • Oracle VM Template for Enterprise Manager Cloud Control 12c Media Pack v1

    Hello
    I download Oracle VM Template for Enterprise Manager Cloud Control 12c Media Pack v1
    I was checking the structure and I found this
    [oracle@em12c bin]$ cd /u01
    [oracle@em12c u01]$ ls
    app lost+found OracleHomes oracle-template.sh scripts
    [oracle@em12c u01]$ cd OracleHomes/
    [oracle@em12c OracleHomes]$ ls
    checkpoints db11g Middleware
    [oracle@em12c OracleHomes]$ pwd
    /u01/OracleHomes
    [oracle@em12c OracleHomes]$ cd db11g/
    [oracle@em12c db11g]$ ls
    admin cfgtoollogs checkpoints diag fast_recovery_area oradata product
    [oracle@em12c db11g]$ cd ..
    [oracle@em12c OracleHomes]$ cd Middleware/
    [oracle@em12c Middleware]$ ls
    [oracle@em12c Middleware]$
    The Database has all binaries but Middleware is empty
    Same body knows about this issue.
    Regards

    Yes, you can install Oracle VM Manager, create a server pool with the one parent Oracle VM server in it, and then deploy the Oracle VM template in the pool. Once EM VM is up and running, you can register the same Oracle VM Manager with EM, to manage the pool.
    In general, it is not recommended that you use the OVM server backend directly. But for bootstrapping the EM environment, you can also try the following:
    Download the OVM Template on the Oracle VM server. From the OVM server terminal itself you can do "xm create" to spin a new virtual machine using the Oracle VM teamplate. Once the VM comes up, VNC into the VM and configure the EM OMS and agent.

  • Advice on Script Management/Combining Tag for JSF

    I was hoping to get a little bit of advice/help on a custom tag that I am about to write that I can see being useful for almost any JSF developer that is writing custom JavaScript in their web application. Basically, the tag would be a script manager that would allow the developer to add scripts to their page using the tag, which would then handle duplicate scripts, do dependency management for them, and optionally combine the scripts into one file and have the final page point to taht single script.
    I've specked out below how I see the tag being used and a little bit of how it would work. I was hoping to see what you guys think about this, if you have any specific advice, or could point me in any directions that you think would help, including if this has already been done and I'm wasting my time. I definitely see myself open-sourcing this tag for others to use and to contribute to once its done.
    Thanks in advance for any help.
    - Michael
    The script manager tag would allow developers to include all script dependencies they have in their own page without having to worry about scripts already being included. Basically, if a library, such as prototype or ext, has been included earlier in the page, it would not be included again.
    On your page, you would include scripts like so:
    <scriptManager:include name="external.prototype" version="1.6" />
    <scriptManager:include name="external.ext" version="2" />
    <scriptManager:include name="connect.client" />     
    <scriptManager:include name="external.prototype" version="1.6" />
    <scriptManager:include name="connect.goals.client" />
    <scriptManager:include name="connect.goals.widget" />          Somewhere in the system would be a script translation file that maps these script definitions to source javascript files:
         <scriptManagerConfig>
              <scripts>
                   <script name="external.prototype" version="1.6" url="http://ajax.googleapis.com/ajax/libs/prototype/1.6.0.2/prototype.js" />
                   <script name="external.ext" version="2" file="include/js/ext/ext-all.js" />
                        <dependency name="external.prototype" version="1.6" />
                   </scirpt>
                   <script name="connect.client" file="/script/Garmin/services/Client.js" />
                   <script name="connect.goals.client" file="/script/Garmin/services/GoalsClient.js" />
                   <script name="connect.goals.widget" file="/script/Garmin/widget/GoalsWidget.js" />
              </scripts>
         </scriptManagerConfig>     The above scriptManager:includes would be parsed at request scope and would generate a hash table with all of the requested script on the page inside of it without any duplicates.
    During development, this would produce the following at the bottom of the html page:
         <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/prototype/1.6.0.2/prototype.js"></script>
         <script type="text/javascript" src="include/js/ext/ext-all.js"></script>
         <script type="text/javascript" src="/script/Garmin/services/Client.js"></script>
         <script type="text/javascript" src="/script/Garmin/services/GoalsClient.js"></script>
         <script type="text/javascript" src="/script/Garmin/widget/GoalsWidget.js"></script>     Notice that "external.prototype" was included twice but was only outputted once.
    On staging and production, before generating the script tags, the contents of all of the files would be included into one. This temporary javascript file would be outputted and a script tag would be written pointing to this new file.

    Google recently released an API, which has some overlap with what you are trying to achieve here, especially with respect to script and version management. You might want to check it out to get a better idea.
    http://code.google.com/apis/ajaxlibs/

  • How to disable autostart of Enterprise Manager Cloud Control (EMC12cr2)

    Hi Everyone,
    I am new to Oracle Enterprise Manager Cloud Control 12c Release 2 ( EMC12cr2)
    Recently, I have installed EMC12cr2 on Oracle Linux 6.3. I follow one document to install, and It was ok after the installation.
    But after I reboot the testing server, I found out that it is very slow as the EMC12cr2 services are auto start at boot such OMS, and agent.
    So could you please tell me how to disable the EMC12cr2 or OMS service from auto startup, so that it makes the system reboot faster.
    Thanks in advance,

    Take a look at this article on My Oracle Support - 1478617.1
    It's a little older, but the same idea applies.  There is a script in /etc/init.d/ called gcstartup, you can comment out the startup lines in there with a hashtag.

  • How do I create a new emkey for Enterprise Manager Database Control?

    Hi,
    I just installed 11gR2.
    I am evaluating it.
    How do I create a new emkey for Enterprise Manager Database Control?
    I tried various combinations of this command:
    emctl config emkey
    I did find a probable bug:
    $ emctl config emkey -emkey -emkeyfile emkey.ora -force -sysman_pwd he11ow0rld
    Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
    Copyright (c) 1996, 2009 Oracle Corporation. All rights reserved.
    Undefined subroutine &EmKeyCmds::promptUserPasswd called at /u2/app/oracle/product/11.2.0/dbhome_1/bin/EmKeyCmds.pm line 160, <FILE> line 3.
    $
    Again,
    How do I create a new emkey for Enterprise Manager Database Control?
    I do have a copy of my old key but it is no longer good because I reinstalled the repository with these commands:
    emca -repos drop ...
    emca -repos create ...
    Oh, and where is emctl "documented".
    I poked around in some book-index links and with the search engine.
    I could not find anything.
    Thanks,
    -Janis

    user11892726 wrote:
    Oh, and where is emctl "documented".
    http://download.oracle.com/docs/cd/B16240_01/welcome.html

  • Enterprise manager Grid Control for Windows 64 bit

    Hi,
    I am looking for Enterprise Manager Grid Control 10.2.0.3 for Microsoft Windows Server 2003 R2 64 bit. On OTN and metalink I can only find for 32 bit. Can anyone suggest where I can find the same.
    Thanks in Advance.
    SK.

    The OMS is on Win x86 and supports Agent on Win x64 target.

  • Configuration Management/Change Control/Build Management contract help needed in Missouri*** *** **

    Configuration Management/Change Control/Build Management
    Needs to have instituted a config management process before.
    web development history
    Tools/Skills:
    CVS
    ANT
    Unit Testing
    Unix
    BEA Weblogic
    John D Allen
    CEO/President.
    Leveridge Systems INC.
    v1 (480) 899 9341
    mailto:[email protected]
    http://www.leveridgesystems.com

    Could you post an example of your problem ?
    CC
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        

Maybe you are looking for