cancel
Showing results for 
Search instead for 
Did you mean: 

NWDI: Name Conflict in Consolidation Track

Former Member
0 Kudos

Hi Experts,

We transported our development components from Dev(development) to Cons(consolidation) track.

It is throwing an error name conflict in CONS track.

I have tried to accept active version in cons track.But it was not allowing me to create an activity.

Error: FAILED: Checkout inactive DeltaV resource failed (Forbidden [(pre||post)-condition failed: DAV:access-denied]) 

Could anyone help on this issue?

Thanks in Advance.

Best Regards,

Arumugakarthika S

Accepted Solutions (1)

Accepted Solutions (1)

ErvinSzolke
Product and Topic Expert
Product and Topic Expert
0 Kudos

Dear Arumugakarthika,

the problem is most likely that the acl.xml in the following location is too restrictive:

http://<dtrhost>:<port>dtr/ws/system/config/active/ACLs/byPath/acl.xml

I assume it contains only access and read privileges for NWDI.Administrators.

To correct this please proceed as follows:

1. open up NWDS and log in to DTR with NWDI administrator user

2. check out the acl.xml file

3. since you will not be able to edit the acl.xml file from NWDS, locate it on your harddrive and edit it with other editor. Please also remove the read-only flag if needed.

4. check in the new version of the file through NWDS.

I add here a sample acl.xml which you can use as starting point for ACL permission settings.


<?xml version="1.0" encoding="UTF-8"?>

<acls>

<acl>

  <resource>/</resource>

  <ace>

    <all />

    <grant>

      <privilege>access</privilege>

      <privilege>read</privilege>

      <privilege>write</privilege>

      <privilege>checkin</privilege>

      <privilege>import</privilege>

      <privilege>export</privilege>

      <privilege>integrate</privilege>

      <privilege>adminA</privilege>

      <privilege>adminX</privilege>

    </grant>

    <description></description>

  </ace>

  <ace>

    <isgroup />

    <principal>NWDI.Developers</principal>

    <grant>

      <privilege>access</privilege>

      <privilege>read</privilege>

      <privilege>write</privilege>

      <privilege>checkin</privilege>

    </grant>

    <description></description>

  </ace>

  <ace>

    <isgroup />

    <principal>NWDI.Administrators</principal>

    <grant>

      <privilege>access</privilege>

      <privilege>read</privilege>

      <privilege>write</privilege>

      <privilege>checkin</privilege>

      <privilege>import</privilege>

      <privilege>export</privilege>

      <privilege>integrate</privilege>

      <privilege>adminA</privilege>

      <privilege>adminX</privilege>

    </grant>

    <description></description>

  </ace>

</acl>

</acls>

I hope this helps.

Regards,
Ervin

Former Member
0 Kudos

Hi Ervin,

Thanks for your reply.

We made required changes in ACL and it is working now.

Best Regards,

Arumugakarthika S

ErvinSzolke
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi Arumugakarthika ,

good news! I am glad to hear it. 😉

Best Regards,
Ervin

Answers (0)