Add the action to the node root of the collection of objects in vcenter Internet client sdk

Hello


I mentioned the plugin sample of chassis-user interface of the web client to vCenter SDK 5.1.


I want to add actions such as 'create a chassis' to the root of the Collection object, and not on the subject "chassis" itself.

My code is the same as that provided in the samples (chassis-ui plugin).


Then, I use mainly vsphere.core.inventoryList.ObjectCollectionTemplate.So using the plugin, I'm able to get stocks on each of the created frame object. But if there is no object created, stocks are not considered in the "Object" of the collection of the Node.So root tab I want actions on the root node, on the object.

Help, please.



Thank you very much.

Global actions as you request are not supported in 5.1, but this problem is fixed in the next 5.5 SDK.

If you need your plugin to work with the Web Client 5.1 you must put your global action according to another, for example to create objects.

Tags: VMware

Similar Questions

  • bulk collect into the collection of objects

    create or replace type typ_obj as an object
    (l_x number (10),)
    l_y varchar2 (10),
    LZ varchar2 (10)
    );

    Create the type typ_obj_tt is table of the typ_obj;

    / / DESC insert_table;
    c_x number (10)
    C_P number (10)

    temp2_table / / DESC
    doJir number (10)
    c_y varchar2 (10)
    c_z varchar2 (10)

    procedure prc_x (p_obj_out ON typ_obj_tt)
    is
    cursor c1
    is
    Select t1.c_x,
    T2.c_y,
    T2.c_z
    Of
    insert_table t1,
    temp2_table t2
    where
    ....
    ;
    Start
    Open c1;
    collect the fetch c1 into loose in p_obj_out;
    Close c1;

    end;

    raises the error

    can you tell
    How to enter data in this object of type of output table

    Thanks in advance... any help will be much appreciated...

    PL do not spam the forums with topics in double - bulk collect into the collection of objects

  • Add the new SCSI controller and new drive - powershell SDK

    Hi all

    I'm trying to add the new disc of paravirtual to my VMs. There are two types of virtual machines in the environment; a Paravirtual controller attached and others are without controller; so my task is to set the new drive of paravitual using powershell SDK.

    So far I am successful with my code if the controller is already present but the script fails when I try to attach the controller. with the error.

    RecommendDatastores: The method call failed because [System.Object []] contains a method named "RecommendDatastores".

    C:\NodeDeployment\Inprogress\Add_newPVScsiDisk.ps1:111 tank: 44

    + $generatedkey = $SRM. RecommendDatastores < < < < ($storageSpec)

    + CategoryInfo: InvalidOperation: (RecommendDatastores:String)], RuntimeException

    + FullyQualifiedErrorId: MethodNotFound


    I know that this script is not good enough to post here because it is an initial draft, but in the script attached please help me with the present part-

    The Script requires a csv with VMname entry; Disksize to be attached and store cluster data

    else {
                Write-Host "Paravirtualized SCSI Controller Not Found in $vmname.. Trying to add new scsi controller and additional Hard-disk..."
                $NewSCSIDevice = New-Object VMware.Vim.VirtualDeviceConfigSpec
                $NewSCSIDevice.operation = "add"
                $NewSCSIDevice.device = New-Object VMware.Vim.ParaVirtualSCSIController
                $NewSCSIDevice.device.key = -222
                $NewSCSIDevice.device.busNumber = ($allScSiController.BusNumber.Count)
                $NewSCSIDevice.device.sharedBus = "noSharing"
                $NewDiskDevice.device.controllerKey = -222
                $NewDiskDevice.device.unitNumber = 0
                $NewDiskDevice.device.capacityInKB = ($diskSize * (1024 * 1024))
                $storageSpec.configSpec.deviceChange += $NewDiskDevice
                $storageSpec.configSpec.deviceChange += $NewSCSIDevice
                $generatedkey = $SRM.RecommendDatastores($storageSpec)
                $key = $generatedkey.Recommendations[0].Key
                $SRM.ApplyStorageDrsRecommendation_Task($key)
    }
    
    

    OK I have it myself; I guess busnumber was the problem. He converted to INT working like charm...

    Now, I have to work with storage Drs IE. with the ReconfigureVM_task method. hoping that will work also...

    else {}

    [int] $busnumber = $allScSiController.Count

    Write-Host "paravirtualized SCSI Controller not found in $vmname... Try to add the new controller scsi and extra hard drives... »

    $NewSCSIDevice = new-Object VMware.Vim.VirtualDeviceConfigSpec

    $NewSCSIDevice.operation = 'Add '.

    $NewSCSIDevice.device = new-Object VMware.Vim.ParaVirtualSCSIController

    $NewSCSIDevice.device.key = - 222

    $NewSCSIDevice.device.busNumber = $busnumber

    $NewSCSIDevice.device.sharedBus = "noSharing".

    $NewDiskDevice.device.controllerKey = - 222

    $NewDiskDevice.device.unitNumber = 0

    $NewDiskDevice.device.capacityInKB = ($diskSize * (1024 * 1024))

    $storageSpec.configSpec.deviceChange += $NewDiskDevice

    $storageSpec.configSpec.deviceChange += $NewSCSIDevice

    $generatedkey = $SRM. RecommendDatastores ($storageSpec)

    $key = $generatedkey. Recommendations [0]. Key

    $SRM. ApplyStorageDrsRecommendation_Task ($key)

    }

    ---

    Concerning
    Sanshis

  • How to add the collection

    Hello

    I use oracle 10g

    I need help to add the output (collection) of a procedure in the main proc. How acchive with it, using temporary tables.
    CREATE OR REPLACE TYPE t_domain_obj
    AS
       OBJECT (
          account_id varchar2 (60),
          org_id varchar2 (60),
          org_name varchar2 (100),
          org_role number,
          associated_id varchar2 (60)
       );
    
    CREATE OR REPLACE TYPE t_domain_tab IS TABLE OF t_domain_obj;
    
    CREATE OR REPLACE TYPE array_element AS TABLE OF number;
    /
    
    CREATE TABLE t_acc (
       acc_no number
    );
    
    
    INSERT INTO t_acc (acc_no)
    VALUES(1);
    
    INSERT INTO t_acc (acc_no)
    VALUES(2);
    
    CREATE TABLE t_domain (
       account_id varchar2 (60),
       org_id varchar2 (60),
       org_name varchar2 (100),
       org_role number,
       associated_id varchar2 (60)
    );
    
    INSERT INTO t_domain
    (
        account_id, org_id, org_name, org_role, associated_id
    )
    VALUES('1', '2', 'ORGID_1', 1, SUP_1');
    
    INSERT INTO t_domain
    (
        account_id, org_id, org_name, org_role, associated_id
    )
    VALUES('1', '2', 'ORGID_1', 3, NULL);
    
    INSERT INTO t_domain
    (
        account_id, org_id, org_name, org_role, associated_id
    )
    VALUES('1', '3', 'ORGID_1', 1, 'SUP_1');
    
    INSERT INTO t_domain
    (
        account_id, org_id, org_name, org_role, associated_id
    )
    VALUES('2', '1', 'ORG_2', 1, NULL);
    
    CREATE OR REPLACE PROCEDURE domain (accid IN number,
                                        domain_out OUT t_domain_tab
    )
    AS
    BEGIN
       SELECT t_domain_obj (account_id, org_id, org_name, org_role, associated_id
             )
       BULK COLLECT INTO domain_out
       FROM t_domain
       WHERE account_id = accid;
    END;
    /
    
    /*
    This below procedure is giving me error
    PLS-00801: internal error [*** ASSERT at file pdw4.c, line 2076; Type 0x0x2a97373090 has no MAP method.; DOMAIN_ALL__ADHAS__P__318160[16, 1]]
    */
    
    CREATE OR REPLACE PROCEDURE domain_all (domain_out OUT t_domain_tab)
    AS
       acc_lst      array_element;
       domain_lst   t_domain_tab;
    BEGIN
       domain_out   := t_domain_tab (t_domain_obj (NULL, NULL, NULL, NULL, NULL));
    
       SELECT acc_no
       BULK COLLECT INTO acc_lst
       FROM t_acc;
    
       FOR i IN 1 .. acc_lst.LAST
       LOOP
          domain (acc_lst (i), domain_lst);
          -- I need to append the data to the excisting collection
    
          domain_out   := domain_out MULTISET UNION domain_lst;
       END LOOP;
    END;
    /
    
    /*
    --To display all from the table
    
    DECLARE
       domain_lst   t_domain_tab;
    BEGIN
      domain_all(domain_lst);
    
       IF domain_lst IS NOT NULL
       THEN
          FOR i IN 1 .. domain_lst.LAST
          LOOP
             DBMS_OUTPUT.put_line ('account_id : ' || domain_lst (i).account_id);
             DBMS_OUTPUT.put_line ('org_id : ' || domain_lst (i).org_id);
             DBMS_OUTPUT.put_line ('org_name : ' || domain_lst (i).org_name);
             DBMS_OUTPUT.put_line ('org_role : ' || domain_lst (i).org_role);
             DBMS_OUTPUT.put_line('associated_id : '|| domain_lst (i).associated_id);
          END LOOP;
       END IF;
    END;
    
    */
    Thank you
    Alen

    Alendhas wrote:
    Thanks michael, but I am using oracle 10 g, if I use
    domain_out: = domain_out multiset union domain_lst
    its me gives error.

    So what stops you to create map method as suggested by William Robertson (I'll assume character CHR (0) may not be present in the t_domain_obj ob object attributes):

    SQL> select * from v$version
      2  /
    
    BANNER
    ----------------------------------------------------------------
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for 32-bit Windows: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    
    SQL> CREATE OR REPLACE TYPE t_domain_obj
      2  AS
      3     OBJECT (
      4        account_id varchar2 (60),
      5        org_id varchar2 (60),
      6        org_name varchar2 (100),
      7        org_role number,
      8        associated_id varchar2 (60),
      9     MAP MEMBER FUNCTION weight
     10       RETURN VARCHAR2
     11     )
     12  /
    
    Type created.
    
    SQL> CREATE OR REPLACE TYPE BODY t_domain_obj
      2  AS
      3     MAP MEMBER FUNCTION weight
      4       RETURN VARCHAR2
      5       IS
      6       BEGIN
      7           RETURN CHR(0) || account_id || CHR(0) || org_id || CHR(0) || org_name || CHR(0) || org_role || CHR(0) || associated_id || CHR(0);
      8      END;
      9  END;
     10  /
    
    Type body created.
    
    SQL> CREATE OR REPLACE TYPE t_domain_tab IS TABLE OF t_domain_obj
      2  /
    
    Type created.
    
    SQL> CREATE OR REPLACE TYPE array_element AS TABLE OF number;
      2  / 
    
    Type created.
    
    SQL> CREATE TABLE t_acc(
      2                     acc_no number
      3                    )
      4  /
    
    Table created.
    
    SQL> INSERT INTO t_acc (acc_no)
      2  VALUES(1)
      3  /
    
    1 row created.
    
    SQL> INSERT INTO t_acc (acc_no)
      2  VALUES(2)
      3  /
    
    1 row created.
    
    SQL> CREATE TABLE t_domain (
      2     account_id varchar2 (60),
      3     org_id varchar2 (60),
      4     org_name varchar2 (100),
      5     org_role number,
      6     associated_id varchar2 (60)
      7  )
      8  /
    
    Table created.
    
    SQL> INSERT INTO t_domain
      2  (
      3      account_id, org_id, org_name, org_role, associated_id
      4  )
      5  VALUES('1', '2', 'ORGID_1', 1, 'SUP_1')
      6  /
    
    1 row created.
    
    SQL> INSERT INTO t_domain
      2  (
      3      account_id, org_id, org_name, org_role, associated_id
      4  )
      5  VALUES('1', '2', 'ORGID_1', 3, NULL)
      6  /
    
    1 row created.
    
    SQL> INSERT INTO t_domain
      2  (
      3      account_id, org_id, org_name, org_role, associated_id
      4  )
      5  VALUES('1', '3', 'ORGID_1', 1, 'SUP_1')
      6  /
    
    1 row created.
    
    SQL> INSERT INTO t_domain
      2  (
      3      account_id, org_id, org_name, org_role, associated_id
      4  )
      5  VALUES('2', '1', 'ORG_2', 1, NULL)
      6  /
    
    1 row created.
    
    SQL> CREATE OR REPLACE PROCEDURE domain (accid IN number,
      2                                      domain_out OUT t_domain_tab
      3  )
      4  AS
      5  BEGIN
      6     SELECT t_domain_obj (account_id, org_id, org_name, org_role, associated_id
      7           )
      8     BULK COLLECT INTO domain_out
      9     FROM t_domain
     10     WHERE account_id = accid;
     11  END;
     12  /
    
    Procedure created.
    
    SQL> CREATE OR REPLACE PROCEDURE domain_all (domain_out OUT t_domain_tab)
      2  AS
      3     acc_lst      array_element;
      4     domain_lst   t_domain_tab;
      5  BEGIN
      6     domain_out   := t_domain_tab (t_domain_obj (NULL, NULL, NULL, NULL, NULL));
      7
      8     SELECT acc_no
      9     BULK COLLECT INTO acc_lst
     10     FROM t_acc;
     11
     12     FOR i IN 1 .. acc_lst.LAST
     13     LOOP
     14        domain (acc_lst (i), domain_lst);
     15        -- I need to append the data to the excisting collection
     16
     17        domain_out   := domain_out MULTISET UNION domain_lst;
     18     END LOOP;
     19  END;
     20  /
    
    Procedure created.
    
    SQL> DECLARE
      2     domain_lst   t_domain_tab;
      3  BEGIN
      4    domain_all(domain_lst);
      5
      6     IF domain_lst IS NOT NULL
      7     THEN
      8        FOR i IN 1 .. domain_lst.LAST
      9        LOOP
     10           DBMS_OUTPUT.put_line ('account_id : ' || domain_lst (i).account_id);
     11           DBMS_OUTPUT.put_line ('org_id : ' || domain_lst (i).org_id);
     12           DBMS_OUTPUT.put_line ('org_name : ' || domain_lst (i).org_name);
     13           DBMS_OUTPUT.put_line ('org_role : ' || domain_lst (i).org_role);
     14           DBMS_OUTPUT.put_line('associated_id : '|| domain_lst (i).associated_id);
     15        END LOOP;
     16     END IF;
     17  END;
     18  /
    account_id :
    org_id :
    org_name :
    org_role :
    associated_id :
    account_id : 1
    org_id : 2
    org_name : ORGID_1
    org_role : 1
    associated_id : SUP_1
    account_id : 1
    org_id : 2
    org_name : ORGID_1
    org_role : 3
    associated_id :
    account_id : 1
    org_id : 3
    org_name : ORGID_1
    org_role : 1
    associated_id : SUP_1
    account_id : 2
    org_id : 1
    org_name : ORG_2
    org_role : 1
    associated_id :
    
    PL/SQL procedure successfully completed.
    
    SQL> 
    

    SY.

  • Deletion of images of the collections or objects

    HI - there doesn't seem to be a way to remove a background image or article/collection.

    Any chance you could add a check box to "Delete Image"

    Thank you!

    David

    I'll leave the PMs the request address.

    In the meantime, I keep an invisible png file for just this situation. Charge it to erase the previous image.

    I use an invisible png 100 x 100, I think it's easier to find than a 1 x 1 invisible png.

    HTH

  • doubt about the collection of object type

    Hi all

    I'm a newbie!

    I tried an array of type object index, as follows.

    declare

    type ty_tab is table of the directory index ty_test;

    v_tab ty_tab;

    Start
    v_tab (1): = ty_test ('ashok', 1000);
    v_tab (2): = ty_test ('rashmi', 2000);
    v_tab (3): = ty_test ('baby', 3000);

    for me in v_tab.first... loop of v_tab. Last

    dbms_output.put_line (v_tab (i));

    end loop;

    end;

    /

    While running the script above, I got the following error message.
    ORA-06550: line 14, column 8:
    PLS-00306: wrong number or types of arguments in the call to "PUT_LINE '.
    ORA-06550: line 14, column 8:
    PL/SQL: Statement ignored

    Can anyone suggest me where I'm wrong.


    Thanx

    DBMS_OUTPUT. Put_line argument is a scalar value. It does not composite types. You should pass the individual attributes. Assuming that ty_test is:

    SQL> create or replace
      2    type ty_test
      3      as object(
      4                name varchar2(10),
      5                val  number
      6               )
      7  /
    
    Type created.
    
    SQL> 
    

    Use:

    declare
        type ty_tab is table of ty_test index by binary_integer;
        v_tab ty_tab;
    begin
        v_tab(1):=ty_test('ashok',1000);
        v_tab(2):=ty_test('rashmi',2000);
        v_tab(3):=ty_test('baby',3000);
        for i in v_tab.first .. v_tab.last loop
          dbms_output.put_line(rpad(v_tab(i).name,11) || v_tab(i).val);
        end loop;
    end;
    /
    ashok      1000
    rashmi     2000
    baby       3000
    
    PL/SQL procedure successfully completed.
    
    SQL> 
    

    SY.

  • Add the Null value at the end of the collection layer

    I need to create layers at the end of the index of the layer and not at the beginning. Is this possible?

    app.project.compItem.layers.addNull () puts a layer at the beginning of the collection of objects, but it should be at the end. Maybe I could add the null value, then rearange the index?

    Like this:

    var myNull = myComp.layers.addNull ();

    myNull.moveToEnd ();

    Dan

  • Problem with the Collection

    I have problems of filling of a collection.
    I created my collection on page load of the Page 7 for help
    BEGIN
    
    apex_collection.create_or_truncate_collection
      (p_collection_name => 'PEOPLE');
    
    END;
    The user then clicks on the "Copy" button that brings them to the Page 13.
    That's where I'm trying to complete my collection, by clicking on the link add to the report of the population.
    for x in (select * from gus_people_2 where id = :P13_ID)
    loop
      apex_collection.add_member(p_collection_name => 'PEOPLE', 
        p_c001 => x.id,
        p_c002 => x.rank,
        p_c003 => x.first_name,
        p_c004 => x.surname,
        p_c005 => x.dob,
        p_c006 => x.job,
        p_c007 => x.disp_seq);
    end loop;
    Once added, the Member of the collection should appear in the report of the full Collection.
    select c001, c002, c003, c004, c005, c006, c007, 'Remove' remove
    from apex_collections
    where collection_name = 'PEOPLE'
    I use Apex 4.1 on the Oracle website

    http://Apex.Oracle.com/pls/Apex/f?p=4550:1:0:

    Workspace: GUSCRIGHTON
    Username: ANGUS. [email protected]
    Password: terminator

    Application name: EXCEL_UPDATE_TEST

    Same username and password as described above.

    It's probably something really obvious, but I can't place it today.

    Any help appreciated.

    Gus

    Hi gUS,.
    Now, run your page, it will work.
    Thank you
    Loga

    Add the collection process
    Ask = exp1
    'ADD' - removed single quotes

    Remove the collection process

    Ask = exp1

    DEL - I gave this string.
    You will add later with link or a button.

    Published by: Logaa on May 18, 2012 06:04

  • How to add a tab to the node root tree of inventory?

    Is it possible to add a tab for the node root tree in the display of the inventory? Something like InventoryView.VCenter?

    Thanks in advance,

    Derek

    InventoryView.RootFolder is probably what you want.

  • Add the node to the xml file

    Hello

    I'm trying to scan a file xml in the following way:

    // read the content
        var xml_file = File(xml_file_path);
        xml_file.open('r');
        var content = xml_file.read();
        xml_file.close();
    
        // add the node
        var root = new XML(content);
        var unit_test_resolution = <unit-test>{resolution}</unit-test>;
        root.appendChild(unit_test_resolution);
    
        // replace the file
        var my_file = new File(xml_file_path);
        var edit_content = root.toXMLString();
        my_file.open('w');
        my_file.writeln('<?xml version="1.0" encoding="UTF-8"?>');
        my_file.writeln(edit_content);
    

    I'm not sure it's a good solution can someone help me? For example, my file already has the ' <? XML version = "1.0" encoding = "UTF-8"? > ' header. But if I read it this way I must put it each time egain...

    Thank you in advance for your help.

    Best regards.
    Bastien

    It's xtools/xlib/stdlib.js. I used it to manage my file xml reading and writing for several years.

    Stdlib.readXMLFile = function(fptr) {
      var rc;
      var file = Stdlib.convertFptr(fptr);
      if (!file.exists) {
        Error.runtimeError(48); // File/Folder does not exist
      }
      file.encoding = "UTF8";
      file.lineFeed = "unix";
      rc = file.open("r", "TEXT", "????");
      if (!rc && Stdlib.IOEXCEPTIONS_ENABLED) {
        Error.runtimeError(Stdlib.IO_ERROR_CODE, Stdlib.fileError(file));
      }
      var str = file.read();
      rc = file.close();
      if (!rc && Stdlib.IOEXCEPTIONS_ENABLED) {
        Error.runtimeError(Stdlib.IO_ERROR_CODE, Stdlib.fileError(file));
      }
      return new XML(str);
    };
    Stdlib.writeXMLFile = function(fptr, xml) {
      var rc;
      if (!(xml instanceof XML)) {
        Error.runtimeError(19, "xml"); // "Bad XML parameter";
      }
      var file = Stdlib.convertFptr(fptr);
      file.encoding = "UTF8";
      rc = file.open("w", "TEXT", "????");
      if (!rc && Stdlib.IOEXCEPTIONS_ENABLED) {
        Error.runtimeError(Stdlib.IO_ERROR_CODE, Stdlib.fileError(file));
      }
      // unicode signature, this is UTF16 but will convert to UTF8 "EF BB BF"
      // optional
      //file.write("\uFEFF");
      file.lineFeed = "unix";
      file.writeln('');
      rc = file.write(xml.toXMLString());
      if (!rc && Stdlib.IOEXCEPTIONS_ENABLED) {
        Error.runtimeError(Stdlib.IO_ERROR_CODE, Stdlib.fileError(file));
      }
      rc = file.close();
      if (!rc && Stdlib.IOEXCEPTIONS_ENABLED) {
        Error.runtimeError(Stdlib.IO_ERROR_CODE, Stdlib.fileError(file));
      }
      return file;
    };
    

    A lot of paranoia coding in there, but after having done PSJS coding for a decade or so paranoia is a more secure state of mind.

    X

  • Error installing 10 ADEP: the store "avm://sitestore" has an entry in the node root double

    Hello

    I try to install 10 ADEP (including all modules content Services) on JBoss 5.1 through the installation manual/custom (means no key in hand).

    I did the steps in accordance with the instructions in "adep_prepare_install_single.pdf". I copied the contentservices.ear - adobe, adobe-livecycle - jboss.ear, adobe-livecycle-native-jboss - x86_win32.ear and adobe-workspace - client.ear to deploy JBoss file. Except Content Services all other applications are deployed and running.

    We want contentservices is running, but are errors related to it.

    I see the following in the JBoss console error message, please help me to solve it.

    =========================================================

    12:17:21, ERROR 538 [[/contentspace]] event context initialized sending Exception listener class org.springframework.web.context.ContextLoaderListener pending

    org.alfresco.error.AlfrescoRuntimeException: the "avm://sitestore" store has an entry in the node root duplicate.

    at org.alfresco.repo.admin.ConfigurationChecker.check(ConfigurationChecker.java:294)

    to org.alfresco.repo.admin.ConfigurationChecker.access$ 000 (ConfigurationChecker.java:74)

    to org.alfresco.repo.admin.ConfigurationChecker$ 1.execute(ConfigurationChecker.java:186)

    at org.alfresco.repo.transaction.RetryingTransactionHelper.doInTransaction (RetryingTransacti onHelper.java:326)

    at org.alfresco.repo.transaction.RetryingTransactionHelper.doInTransaction (RetryingTransacti onHelper.java:252)

    at org.alfresco.repo.admin.ConfigurationChecker.onBootstrap(ConfigurationChecker.java:190)

    at org.alfresco.util.AbstractLifecycleBean.onApplicationEvent(AbstractLifecycleBean.java:62)

    to org.springframework.context.event.SimpleApplicationEventMulticaster$ 1.run (SimpleApplicati onEventMulticaster.java:77)

    at org.springframework.core.task.SyncTaskExecutor.execute(SyncTaskExecutor.java:49)

    at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent (ApplicationEventMulticaster.java:75 single)

    at org.springframework.context.support.AbstractApplicationContext.publishEvent (AbstractAppli cationContext.java:246)

    at org.springframework.context.support.AbstractApplicationContext.finishRefresh (AbstractAppl icationContext.java:617)

    at org.springframework.context.support.AbstractApplicationContext.refresh (AbstractApplicatio nContext.java:355)

    at org.springframework.web.context.ContextLoader.createWebApplicationContext (ContextLoader.j ava: 246)

    at org.springframework.web.context.ContextLoader.initWebApplicationContext (ContextLoader.jav has: 189)

    at org.springframework.web.context.ContextLoaderListener.contextInitialized (ContextLoaderLis tener.java:49)

    at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3910)

    at org.apache.catalina.core.StandardContext.start(StandardContext.java:4393)

    at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal (TomcatDeplo yment.java:310)

    at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy (TomcatDeployment.ja goes: 142)

    at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:461)

    at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)

    at org.jboss.web.deployers.WebModule.start(WebModule.java:97)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)

    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)

    at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)

    at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)

    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)

    at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)

    to $Proxy38.start (Unknown Source)

    at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction (StartStopLifecycle Action.java:42)

    at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction (StartStopLifecycle Action.java:37)

    to org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction (Sim pleControllerContextAction.java:62)

    at org.jboss.dependency.plugins.action.AccessControllerContextAction.install (AccessControlle rContextAction.java:71)

    at org.jboss.dependency.plugins.AbstractControllerContextActions.install (AbstractControllerC ontextActions.java:51)

    at org.jboss.dependency.plugins.AbstractControllerContext.install (AbstractControllerContext. java: 348)

    at org.jboss.system.microcontainer.ServiceControllerContext.install (ServiceControllerContext .java:286)

    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)

    at org.jboss.dependency.plugins.AbstractController.incrementState (AbstractController.java:93 4)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:1 082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:9 84)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)

    at org.jboss.system.ServiceController.doChange(ServiceController.java:688)

    at org.jboss.system.ServiceController.start(ServiceController.java:460)

    at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:163)

    at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:99)

    at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:46)

    to org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy (Abstra ctSimpleRealDeployer.java:62)

    at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy (AbstractRealDeployer .java:50)

    at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst (DeployersImpl.ja goes: 1157)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst (DeployersImpl.ja goes: 1178)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst (DeployersImpl.ja's: 1210)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)

    at org.jboss.dependency.plugins.AbstractControllerContext.install (AbstractControllerContext. java: 348)

    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)

    at org.jboss.dependency.plugins.AbstractController.incrementState (AbstractController.java:93 4)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:1 082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:9 84)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)

    at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:702)

    at org.jboss.system.server.profileservice.repository.MainDeployerAdapter.process (MainDeploye rAdapter.java:117)

    at org.jboss.system.server.profileservice.repository.ProfileDeployAction.install (ProfileDepl oyAction.java:70)

    at org.jboss.system.server.profileservice.repository.AbstractProfileAction.install (AbstractP rofileAction.java:53)

    at org.jboss.system.server.profileservice.repository.AbstractProfileService.install (ProfileService.java:361 abstract)

    at org.jboss.dependency.plugins.AbstractControllerContext.install (AbstractControllerContext. java: 348)

    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)

    at org.jboss.dependency.plugins.AbstractController.incrementState (AbstractController.java:93 4)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:1 082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:9 84)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)

    at org.jboss.system.server.profileservice.repository.AbstractProfileService.activateProfile (AbstractProfileService.java:306)

    at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start (ProfileServiceBootst rap.java:271)

    at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:461)

    at org.jboss.Main.boot(Main.java:221)

    to org.jboss.Main$ 1.run(Main.java:556)

    at java.lang.Thread.run(Thread.java:662)

    12:17:21, ERROR 557 [[/contentspace]] event context initialized sending Exception listener class org.alfresco.web.app.ContextListener pending

    org.alfresco.error.AlfrescoRuntimeException: the "avm://sitestore" store has an entry in the node root duplicate.

    at org.alfresco.repo.admin.ConfigurationChecker.check(ConfigurationChecker.java:294)

    to org.alfresco.repo.admin.ConfigurationChecker.access$ 000 (ConfigurationChecker.java:74)

    to org.alfresco.repo.admin.ConfigurationChecker$ 1.execute(ConfigurationChecker.java:186)

    at org.alfresco.repo.transaction.RetryingTransactionHelper.doInTransaction (RetryingTransacti onHelper.java:326)

    at org.alfresco.repo.transaction.RetryingTransactionHelper.doInTransaction (RetryingTransacti onHelper.java:252)

    at org.alfresco.repo.admin.ConfigurationChecker.onBootstrap(ConfigurationChecker.java:190)

    at org.alfresco.util.AbstractLifecycleBean.onApplicationEvent(AbstractLifecycleBean.java:62)

    to org.springframework.context.event.SimpleApplicationEventMulticaster$ 1.run (SimpleApplicati onEventMulticaster.java:77)

    at org.springframework.core.task.SyncTaskExecutor.execute(SyncTaskExecutor.java:49)

    at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent (ApplicationEventMulticaster.java:75 single)

    at org.springframework.context.support.AbstractApplicationContext.publishEvent (AbstractAppli cationContext.java:246)

    at org.springframework.context.support.AbstractApplicationContext.finishRefresh (AbstractAppl icationContext.java:617)

    at org.springframework.context.support.AbstractApplicationContext.refresh (AbstractApplicatio nContext.java:355)

    at org.springframework.web.context.ContextLoader.createWebApplicationContext (ContextLoader.j ava: 246)

    at org.springframework.web.context.ContextLoader.initWebApplicationContext (ContextLoader.jav has: 189)

    at org.springframework.web.context.ContextLoaderListener.contextInitialized (ContextLoaderLis tener.java:49)

    at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3910)

    at org.apache.catalina.core.StandardContext.start(StandardContext.java:4393)

    at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal (TomcatDeplo yment.java:310)

    at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy (TomcatDeployment.ja goes: 142)

    at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:461)

    at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)

    at org.jboss.web.deployers.WebModule.start(WebModule.java:97)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)

    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)

    at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)

    at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)

    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)

    at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)

    to $Proxy38.start (Unknown Source)

    at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction (StartStopLifecycle Action.java:42)

    at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction (StartStopLifecycle Action.java:37)

    to org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction (Sim pleControllerContextAction.java:62)

    at org.jboss.dependency.plugins.action.AccessControllerContextAction.install (AccessControlle rContextAction.java:71)

    at org.jboss.dependency.plugins.AbstractControllerContextActions.install (AbstractControllerC ontextActions.java:51)

    at org.jboss.dependency.plugins.AbstractControllerContext.install (AbstractControllerContext. java: 348)

    at org.jboss.system.microcontainer.ServiceControllerContext.install (ServiceControllerContext .java:286)

    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)

    at org.jboss.dependency.plugins.AbstractController.incrementState (AbstractController.java:93 4)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:1 082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:9 84)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)

    at org.jboss.system.ServiceController.doChange(ServiceController.java:688)

    at org.jboss.system.ServiceController.start(ServiceController.java:460)

    at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:163)

    at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:99)

    at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:46)

    to org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy (Abstra ctSimpleRealDeployer.java:62)

    at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy (AbstractRealDeployer .java:50)

    at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst (DeployersImpl.ja goes: 1157)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst (DeployersImpl.ja goes: 1178)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst (DeployersImpl.ja's: 1210)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)

    at org.jboss.dependency.plugins.AbstractControllerContext.install (AbstractControllerContext. java: 348)

    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)

    at org.jboss.dependency.plugins.AbstractController.incrementState (AbstractController.java:93 4)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:1 082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:9 84)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)

    at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:702)

    at org.jboss.system.server.profileservice.repository.MainDeployerAdapter.process (MainDeploye rAdapter.java:117)

    at org.jboss.system.server.profileservice.repository.ProfileDeployAction.install (ProfileDepl oyAction.java:70)

    at org.jboss.system.server.profileservice.repository.AbstractProfileAction.install (AbstractP rofileAction.java:53)

    at org.jboss.system.server.profileservice.repository.AbstractProfileService.install (ProfileService.java:361 abstract)

    at org.jboss.dependency.plugins.AbstractControllerContext.install (AbstractControllerContext. java: 348)

    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)

    at org.jboss.dependency.plugins.AbstractController.incrementState (AbstractController.java:93 4)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:1 082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:9 84)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)

    at org.jboss.system.server.profileservice.repository.AbstractProfileService.activateProfile (AbstractProfileService.java:306)

    at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start (ProfileServiceBootst rap.java:271)

    at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:461)

    at org.jboss.Main.boot(Main.java:221)

    to org.jboss.Main$ 1.run(Main.java:556)

    at java.lang.Thread.run(Thread.java:662)

    12:17:21, 593 [StandardContext] error listenerStart

    12:17:21, 596 starting of context of the ERROR [StandardContext] [/contentspace] failed due to previous errors

    12:17:21, closing INFO [[/contentspace]] 601 root WebApplicationContext spring

    12:17:21, 602 INFO [[/contentspace]] judgment of Log4J

    12:17:21, 606 ERROR [AbstractKernelController] to start installation: name=jboss.web.deployment:war=/contentspace State = Create mode = manual requiredState = installed

    org.jboss.deployers.spi.DeploymentException: failed to deploy ervices.war / file:/D:/jboss-5.1.0.GA/server/default/tmp/a154a5q-ffzvqd-h1x60n0m-1-h1x62tjn-9v/contents URL

    at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal (TomcatDeplo yment.java:331)

    at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy (TomcatDeployment.ja goes: 142)

    at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:461)

    at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)

    at org.jboss.web.deployers.WebModule.start(WebModule.java:97)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)

    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)

    at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)

    at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)

    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)

    at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)

    to $Proxy38.start (Unknown Source)

    at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction (StartStopLifecycle Action.java:42)

    at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction (StartStopLifecycle Action.java:37)

    to org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction (Sim pleControllerContextAction.java:62)

    at org.jboss.dependency.plugins.action.AccessControllerContextAction.install (AccessControlle rContextAction.java:71)

    at org.jboss.dependency.plugins.AbstractControllerContextActions.install (AbstractControllerC ontextActions.java:51)

    at org.jboss.dependency.plugins.AbstractControllerContext.install (AbstractControllerContext. java: 348)

    at org.jboss.system.microcontainer.ServiceControllerContext.install (ServiceControllerContext .java:286)

    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)

    at org.jboss.dependency.plugins.AbstractController.incrementState (AbstractController.java:93 4)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:1 082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:9 84)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)

    at org.jboss.system.ServiceController.doChange(ServiceController.java:688)

    at org.jboss.system.ServiceController.start(ServiceController.java:460)

    at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:163)

    at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:99)

    at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:46)

    to org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy (Abstra ctSimpleRealDeployer.java:62)

    at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy (AbstractRealDeployer .java:50)

    at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst (DeployersImpl.ja goes: 1157)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst (DeployersImpl.ja goes: 1178)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst (DeployersImpl.ja's: 1210)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)

    at org.jboss.dependency.plugins.AbstractControllerContext.install (AbstractControllerContext. java: 348)

    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)

    at org.jboss.dependency.plugins.AbstractController.incrementState (AbstractController.java:93 4)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:1 082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:9 84)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)

    at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:702)

    at org.jboss.system.server.profileservice.repository.MainDeployerAdapter.process (MainDeploye rAdapter.java:117)

    at org.jboss.system.server.profileservice.repository.ProfileDeployAction.install (ProfileDepl oyAction.java:70)

    at org.jboss.system.server.profileservice.repository.AbstractProfileAction.install (AbstractP rofileAction.java:53)

    at org.jboss.system.server.profileservice.repository.AbstractProfileService.install (ProfileService.java:361 abstract)

    at org.jboss.dependency.plugins.AbstractControllerContext.install (AbstractControllerContext. java: 348)

    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)

    at org.jboss.dependency.plugins.AbstractController.incrementState (AbstractController.java:93 4)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:1 082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:9 84)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)

    at org.jboss.system.server.profileservice.repository.AbstractProfileService.activateProfile (AbstractProfileService.java:306)

    at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start (ProfileServiceBootst rap.java:271)

    at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:461)

    at org.jboss.Main.boot(Main.java:221)

    to org.jboss.Main$ 1.run(Main.java:556)

    at java.lang.Thread.run(Thread.java:662)

    12:17:26, 589 ERROR [AbstractKernelController] installation at Real: name=vfszip:/D:/jboss-5.1.0.GA/server/default/deploy/adobe-contentservices.ear/ State = PreReal mode = re manual

    quiredState = Real

    org.jboss.deployers.spi.DeploymentException: failed to deploy ervices.war / file:/D:/jboss-5.1.0.GA/server/default/tmp/a154a5q-ffzvqd-h1x60n0m-1-h1x62tjn-9v/contents URL

    at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeployInternal (TomcatDeplo yment.java:331)

    at org.jboss.web.tomcat.service.deployers.TomcatDeployment.performDeploy (TomcatDeployment.ja goes: 142)

    at org.jboss.web.deployers.AbstractWarDeployment.start(AbstractWarDeployment.java:461)

    at org.jboss.web.deployers.WebModule.startModule(WebModule.java:118)

    at org.jboss.web.deployers.WebModule.start(WebModule.java:97)

    at sun.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)

    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)

    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)

    at java.lang.reflect.Method.invoke(Method.java:597)

    at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:157)

    at org.jboss.mx.server.Invocation.dispatch(Invocation.java:96)

    at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)

    at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)

    at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:668)

    at org.jboss.system.microcontainer.ServiceProxy.invoke(ServiceProxy.java:206)

    to $Proxy38.start (Unknown Source)

    at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction (StartStopLifecycle Action.java:42)

    at org.jboss.system.microcontainer.StartStopLifecycleAction.installAction (StartStopLifecycle Action.java:37)

    to org.jboss.dependency.plugins.action.SimpleControllerContextAction.simpleInstallAction (Sim pleControllerContextAction.java:62)

    at org.jboss.dependency.plugins.action.AccessControllerContextAction.install (AccessControlle rContextAction.java:71)

    at org.jboss.dependency.plugins.AbstractControllerContextActions.install (AbstractControllerC ontextActions.java:51)

    at org.jboss.dependency.plugins.AbstractControllerContext.install (AbstractControllerContext. java: 348)

    at org.jboss.system.microcontainer.ServiceControllerContext.install (ServiceControllerContext .java:286)

    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)

    at org.jboss.dependency.plugins.AbstractController.incrementState (AbstractController.java:93 4)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:1 082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:9 84)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)

    at org.jboss.system.ServiceController.doChange(ServiceController.java:688)

    at org.jboss.system.ServiceController.start(ServiceController.java:460)

    at org.jboss.system.deployers.ServiceDeployer.start(ServiceDeployer.java:163)

    at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:99)

    at org.jboss.system.deployers.ServiceDeployer.deploy(ServiceDeployer.java:46)

    to org.jboss.deployers.spi.deployer.helpers.AbstractSimpleRealDeployer.internalDeploy (Abstra ctSimpleRealDeployer.java:62)

    at org.jboss.deployers.spi.deployer.helpers.AbstractRealDeployer.deploy (AbstractRealDeployer .java:50)

    at org.jboss.deployers.plugins.deployers.DeployerWrapper.deploy(DeployerWrapper.java:171)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.doDeploy(DeployersImpl.java:1439)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst (DeployersImpl.ja goes: 1157)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst (DeployersImpl.ja goes: 1178)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.doInstallParentFirst (DeployersImpl.ja's: 1210)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.install(DeployersImpl.java:1098)

    at org.jboss.dependency.plugins.AbstractControllerContext.install (AbstractControllerContext. java: 348)

    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)

    at org.jboss.dependency.plugins.AbstractController.incrementState (AbstractController.java:93 4)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:1 082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:9 84)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)

    at org.jboss.deployers.plugins.deployers.DeployersImpl.process(DeployersImpl.java:781)

    at org.jboss.deployers.plugins.main.MainDeployerImpl.process(MainDeployerImpl.java:702)

    at org.jboss.system.server.profileservice.repository.MainDeployerAdapter.process (MainDeploye rAdapter.java:117)

    at org.jboss.system.server.profileservice.repository.ProfileDeployAction.install (ProfileDepl oyAction.java:70)

    at org.jboss.system.server.profileservice.repository.AbstractProfileAction.install (AbstractP rofileAction.java:53)

    at org.jboss.system.server.profileservice.repository.AbstractProfileService.install (ProfileService.java:361 abstract)

    at org.jboss.dependency.plugins.AbstractControllerContext.install (AbstractControllerContext. java: 348)

    at org.jboss.dependency.plugins.AbstractController.install(AbstractController.java:1631)

    at org.jboss.dependency.plugins.AbstractController.incrementState (AbstractController.java:93 4)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:1 082)

    at org.jboss.dependency.plugins.AbstractController.resolveContexts (AbstractController.java:9 84)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:822)

    at org.jboss.dependency.plugins.AbstractController.change(AbstractController.java:553)

    at org.jboss.system.server.profileservice.repository.AbstractProfileService.activateProfile (AbstractProfileService.java:306)

    at org.jboss.system.server.profileservice.ProfileServiceBootstrap.start (ProfileServiceBootst rap.java:271)

    at org.jboss.bootstrap.AbstractServerImpl.start(AbstractServerImpl.java:461)

    at org.jboss.Main.boot(Main.java:221)

    to org.jboss.Main$ 1.run(Main.java:556)

    at java.lang.Thread.run(Thread.java:662)

    Hello

    I install ADEP 10 newly.

    This problem has been resolved.

    I deleted folder 'lucene index' at the bottom of the location, the problem solved.

    C:\Adobe\ADEP\Document Services 10.0\lccs_data\

    I think that http://lucasmanual.com/pdf/Alfresco.pdf is helpful.

    Thank you

    V B Sansoucy.

  • Add the error node

    Hello

    I try to add the node two-node Oracle 11g RAC, but I had
    a mistake. I follow the steps:
    # export ORACLE_HOME=/u01/app/11.2.0/grid
    # cd $ORACLE_HOME/oui/bin
    # ./addNode.sh -silent "CLUSTER_NEW_NODES={rac3}" "CLUSTER_NEW_VIRTUAL_HOSTNAMES={rac3-vip}"
    For example, the following in the log file:
    INFO: Environment Variables:
    
    INFO:   ORACLE_HOME = /u01/app/11.2.0/grid
    
    INFO:   PATH = /u01/app/oracle/product/11.2.0/db_1/bin:/usr/sbin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/b
    in
    
    INFO:   CLASSPATH =
    
    INFO: Username:oracle
    
    INFO: Install area Control created with access level  1
    
    INFO: Oracle Universal Installer version is 11.2.0.1.0
    
    INFO: Setting variable 'ORACLE_HOME' to '/u01/app/11.2.0/grid'. Received the value from the command line.
    INFO: Setting variable 'CLUSTER_NEW_NODES' to 'rac3'. Received the value from the command line.
    INFO: Setting variable 'CLUSTER_NEW_VIRTUAL_HOSTNAMES' to 'rac3-vip'. Received the value from the command line.
    INFO: Setting variable 'PREREQ_CONFIG_LOCATION' to ''. Received the value from variable association.
    INFO: Setting variable 'FROM_LOCATION' to '/u01/app/11.2.0/grid/inventory/ContentsXML/comps.xml'. Received the value from a co
    de block.
    INFO: Setting variable 'ROOTSH_LOCATION' to '/u01/app/11.2.0/grid/root.sh'. Received the value from a code block.
    INFO: Setting variable 'ROOTSH_STATUS' to '3'. Received the value from a code block.
    INFO: Setting variable 'ORACLE_HOME' to '/u01/app/11.2.0/grid'. Received the value from the command line.
    INFO: Setting variable 'CLUSTER_NEW_NODES' to 'rac3'. Received the value from the command line.
    INFO: Setting variable 'CLUSTER_NEW_VIRTUAL_HOSTNAMES' to 'rac3-vip'. Received the value from the command line.
    INFO: Setting variable 'PREREQ_CONFIG_LOCATION' to ''. Received the value from variable association.
    INFO: Setting variable 'FROM_LOCATION' to '/u01/app/11.2.0/grid/inventory/ContentsXML/comps.xml'. Received the value from a code block.
    INFO: Setting variable 'ROOTSH_LOCATION' to '/u01/app/11.2.0/grid/root.sh'. Received the value from a code block.
    INFO: Setting variable 'ROOTSH_STATUS' to '3'. Received the value from a code block.
    INFO:
    *** Welcome Page***
    INFO: Setting variable 'ORACLE_HOME_NAME' to 'Ora11g_gridinfrahome1'. Received the value from a code block.
    INFO: SRVM ClusterInfo.IsLocalOnly() called. Return value obtained is 'true'.
    INFO: The CRS clusterware location for 'oracle.crs 10.1.0.2.0' is '/u01/app/11.2.0/grid'.
    INFO: CRS clusterware detected.
    INFO: Vendor clusterware is not detected.
    INFO: Local node 'rac1' is derived from the Oracle home properties.
    INFO: Setting variable 'LOCAL_NODE' to 'rac1'. Received the value from a code block.
    INFO: Setting variable 'EXISTING_REMOTE_NODES' to 'rac2'. Received the value from a code block.
    INFO: Setting variable 'REMOTE_NODES' to 'rac3'. Received the value from a code block.
    INFO: Setting the 'ExistingClusterNodes' property to 'rac1,rac2'.
    INFO: Setting the 'EnableVirtualHostNameEntry' property to 'true'.
    INFO: Setting the 'NewNodes ( CLUSTER_NEW_NODES )' property to 'rac3'. Received the value from the command line.
    INFO: Setting variable 'REMOTE_NODES' to 'rac3'. Received the value from a code block.
    INFO: Setting variable 'CLUSTER_NODES' to 'rac1,rac2,rac3'. Received the value from a code block.
    INFO: Performing tests to see whether nodes rac2,rac3 are available
    INFO: Validating nodes rac2...
    INFO: Checking if nodes are alive...
    INFO: Validating user equivalence...
    INFO: Validating nodes rac3...
    INFO: Checking if nodes are alive...
    INFO: Validating user equivalence...
    INFO: Status of nodes in the cluster:
    Status of node 'rac2':
    Node is okay
    
    Status of node 'rac3':
    null
    
    --------------------------------------------------------------------------
    
    SEVERE: The selected remote nodes 'rac3' are not accessible.
    INFO: User Selected: Yes/OK
    When I try to ping for the new node, it is correct.

    So, can you help me, please?

    Thank you very much.

    Hello

    You can cancel the configuration performed by root.sh using the following:

    /U01/app/11.2.0/grid/CRS/install/rootcrs.pl - deconfig-force

    Thus, after the above command, you can perform the root.sh again.

    Kind regards.

  • Oracle BPEL 2.0 - add the child node

    Hi guys,.

    SOA 11.1.1.7, BPEL 2.0

    I have a child screaming master BPEL BPEL flow flow in a ForEach loop.

    I have part of the answer like this:

    < caseResponses >

    < caseResponse >... < / caseResponse >

    < caseResponse >... < / caseResponse >

    < / caseResponses >

    CaseResponse items come from child BPEL flows.

    I'm trying to add each of these elements in the element parent < caseResponses > but when running I get "The Exception is thrown because the in-specs on the 112 line are assessed to be empty," where the line 112 is the line append.

    My code is:

    < assign the name = "AppendToResponse" >

    < extensionAssignOperation >

    < bpelx: Add >

    < bpelx: go > $InvokeHandleSingleCarglassCase_process_OutputVariable.payload / ns1:caseResponse < / bpelx: go >

    < bpelx: to > $outputVariable.payload / client: caseResponses < / bpelx: to >

    < / bpelx: Add >

    < / extensionAssignOperation >

    < / assign >

    If I add a copy - just like a test rule-

    < assign the name = "AppendToResponse" >

    < copy >

    < a > $InvokeHandleSingleCarglassCase_process_OutputVariable.payload / ns1:caseResponse < / from >

    < to > $outputVariable.payload/client:caseResponses/client:caseResponse < /pour >

    < / copy >

    < extensionAssignOperation >

    < bpelx: Add >

    < bpelx: go > $InvokeHandleSingleCarglassCase_process_OutputVariable.payload / ns1:caseResponse < / bpelx: go >

    < bpelx: to > $outputVariable.payload / client: caseResponses < / bpelx: to >

    < / bpelx: Add >

    < / extensionAssignOperation >

    < / assign >

    I works as expected: all caseResponse items are added and there is also one more copy activity.

    What can I do so that I don't get the "The Exception is thrown because the in-specs on the 112 line are assessed to be empty" exception without copy assign?

    Thank you!

    By the way

    Rather than add it, you can use the copy, but instead of the normal copy you must change the code a bit to something like:

    $InvokeHandleSingleCarglassCase_process_OutputVariable.payload / ns1:caseResponse

    $outputVariable.payload / client: caseResponses[$ForEachCounter]/ client: caseResponse

    If you add the counter and checks that I wrote in the previous answer basically it will create a node at position x (x being the value of the counter) and the copy of your result

  • How to add the action button for each column in the interactive report

    Hi all

    I'm new in APEX, so pls forgive my question, if it's simple, but I am struggling with this problem for days now. I have interactive report and you want to add button in each row. What I want to do with this button is the following:

    1. to execute some stored procedure in need of that particular line item values

    2. returns a (id)

    3. go in another page in the application by passing the value out of the procedure (id).

    and I'm not find the way to do it. I tried now means:

    1. If I add the link of the column, so I can refer to the value of the current row, I don't know how to call the stored procedure and perform actions of rest I need

    2. If I add the button to the region, I do not know how to reference the values in column of a particular line of the interactive report...

    and I'm stuck...

    I just forms and global report and probably still think the "wrong" way .

    Any help would be appreciated!

    Thank you!!!


    user3253917 wrote:

    Please update your forum profile with a real handle instead of 'user3253917 '.

    I request of the company: there is a customer who always orders the same standard product orders (always order the same products, fair amount is different). I want to make it simple for the user: instead of retyping the command (master and few records details every time yet) I want to copy selected command (copy of the master record and record details) so that the user will only change date order (in master record) and amount fields in record details).

    So, in order to give him:

    1. the user must be able to choose the order in which I would copy (at page 4), select it,

    2. I need to make PL/SQL procedure to insert the new master record (order) and a few record details (order_items) (copy of the order/order_items chosen in step 1)

    3. navigate the user to page 29, where the master account at stage 2 insterted appears, so that the user can change the date and quantities.

    Any solution will be highly appreciated! Thank you very much!!!

    In simple terms:

    1. Add a link to column "Command copies" in the report on page 4, which sets the COPY request and passes the order ID on page 29.
    2. On page 29, create a process before header, sequenced to be the first process executed and conditional on REQUEST be EXEMPLARY, which creates a new order as a copy of the order with the ID from page 4 and returns the ID of the new order in the PK command ID of 29 page element.
  • Failed to add the menu item «Edit adjustment...» "action

    Hello

    I have an action in which I want to change an existing adjustment layer. I can't save the menu item «Edit adjustment...» "in the drop down palette layers.

    To add the step, I tried the following steps:

    1. Select the adjustment layer thumbnail icon
    2. Select «Insert Menu Item»... "in the menu palette flyout
    3. Choose "Edit settings...". "in the menu of the layers palette (how the window insert a Menu item" Menu item: layers: change the setting ")
    4. Press the OK"" button.

    This adds nothing to the action; usually, hit OK adds the menu item.

    I'm doing this right? Is this a known bug? As a solution, can someone point me to action with the step of "Edit settings...". "already in there? Thank you.

    Photoshop CC 2015.1.2 (20160113.r.355 x 64)

    Mac OS X 10.11.3

    I think that you make it harder than it is.  Just record the action and adjust the adjustment layer, you add during the recording of the action.  When did you record the action you should see that there two steps were recorded for the adjustment layer, you added during the recording of the action. "Do adjustment layer" and "current adjustment layer Set.  Insert a stop message with continue after the "make the adjustment layer ' step and check activate the dialog box in step"Set current adjustment layer".»  Layer when allowed by using the action, you can uncheck the walk of the stop.

Maybe you are looking for