Hi,<br><br>given example below, your problem is that you are calling one add operation where you should be calling many. for example provided it should be something like this (not tested)<br><br>{<br>    &quot;operation&quot; =&gt; &quot;add&quot;,<br>
    &quot;address&quot; =&gt; [<br>        (&quot;host&quot; =&gt; &quot;master&quot;),<br>        (&quot;server-config&quot; =&gt; &quot;prod_copy&quot;)<br>    ],<br>    &quot;auto-start&quot; =&gt; true,<br>    &quot;cpu-affinity&quot; =&gt; undefined,<br>
    &quot;group&quot; =&gt; &quot;production-1&quot;,<br>    &quot;interface&quot; =&gt; undefined,<br>    &quot;path&quot; =&gt; undefined,<br>    &quot;priority&quot; =&gt; undefined,<br>    &quot;socket-binding-group&quot; =&gt; &quot;full-sockets&quot;,<br>
    &quot;socket-binding-port-offset&quot; =&gt; 150<br>}<br><br>{<br>    &quot;operation&quot; =&gt; &quot;add&quot;,<br>    &quot;address&quot; =&gt; [<br>        (&quot;host&quot; =&gt; &quot;master&quot;),<br>        (&quot;server-config&quot; =&gt; &quot;prod_copy&quot;)<br>
        (&quot;jvm&quot; =&gt; &quot;default&quot;)<br>    ],<br>        &quot;agent-lib&quot; =&gt; undefined,<br>    &quot;agent-path&quot; =&gt; undefined,<br>    &quot;debug-enabled&quot; =&gt; false,<br>    &quot;debug-options&quot; =&gt; undefined,<br>
    &quot;env-classpath-ignored&quot; =&gt; undefined,<br>    &quot;environment-variables&quot; =&gt; undefined,<br>    &quot;heap-size&quot; =&gt; &quot;256m&quot;,<br>    &quot;java-agent&quot; =&gt; undefined,<br>    &quot;java-home&quot; =&gt; undefined,<br>
    &quot;jvm-options&quot; =&gt; undefined,<br>    &quot;max-heap-size&quot; =&gt; &quot;256m&quot;,<br>    &quot;max-permgen-size&quot; =&gt; undefined,<br>    &quot;permgen-size&quot; =&gt; undefined,<br>    &quot;stack-size&quot; =&gt; undefined,<br>
    &quot;type&quot; =&gt; undefined<br>}<br><br>{<br>    &quot;operation&quot; =&gt; &quot;add&quot;,<br>    &quot;address&quot; =&gt; [<br>        (&quot;host&quot; =&gt; &quot;master&quot;),<br>        (&quot;server-config&quot; =&gt; &quot;prod_copy&quot;)<br>
        (&quot;system-property&quot; =&gt; &quot;test&quot;)<br>    ],<br>         &quot;boot-time&quot; =&gt; false,<br>     &quot;value&quot; =&gt; &quot;value&quot;<br>}<br><br>basicly every resource needs its own add operation<br>
<br>--<br>tomaz<br><br><div class="gmail_quote">On Mon, Oct 22, 2012 at 11:17 AM, Heiko Braun <span dir="ltr">&lt;<a href="mailto:hbraun@redhat.com" target="_blank">hbraun@redhat.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
<br>
<br>
I am working on a use cases that enables people to &quot;copy&quot; resources. I.e. creating a clone of a server configuration under a new name. I&#39;ve realised that recursive add operations, covering a larger resource tree don&#39;t seem to work (see example below). Is there any &quot;switch&quot; that I am not aware of, or this simply not work due to the design of the operation handlers?<br>

<br>
<br>
[INFO] {<br>
[INFO]     &quot;operation&quot; =&gt; &quot;add&quot;,<br>
[INFO]     &quot;address&quot; =&gt; [<br>
[INFO]         (&quot;host&quot; =&gt; &quot;master&quot;),<br>
[INFO]         (&quot;server-config&quot; =&gt; &quot;prod_copy&quot;)<br>
[INFO]     ],<br>
[INFO]     &quot;auto-start&quot; =&gt; true,<br>
[INFO]     &quot;cpu-affinity&quot; =&gt; undefined,<br>
[INFO]     &quot;group&quot; =&gt; &quot;production-1&quot;,<br>
[INFO]     &quot;interface&quot; =&gt; undefined,<br>
[INFO]     &quot;path&quot; =&gt; undefined,<br>
[INFO]     &quot;priority&quot; =&gt; undefined,<br>
[INFO]     &quot;socket-binding-group&quot; =&gt; &quot;full-sockets&quot;,<br>
[INFO]     &quot;socket-binding-port-offset&quot; =&gt; 150,<br>
[INFO]     &quot;jvm&quot; =&gt; {&quot;default&quot; =&gt; {<br>
[INFO]         &quot;agent-lib&quot; =&gt; undefined,<br>
[INFO]         &quot;agent-path&quot; =&gt; undefined,<br>
[INFO]         &quot;debug-enabled&quot; =&gt; false,<br>
[INFO]         &quot;debug-options&quot; =&gt; undefined,<br>
[INFO]         &quot;env-classpath-ignored&quot; =&gt; undefined,<br>
[INFO]         &quot;environment-variables&quot; =&gt; undefined,<br>
[INFO]         &quot;heap-size&quot; =&gt; &quot;256m&quot;,<br>
[INFO]         &quot;java-agent&quot; =&gt; undefined,<br>
[INFO]         &quot;java-home&quot; =&gt; undefined,<br>
[INFO]         &quot;jvm-options&quot; =&gt; undefined,<br>
[INFO]         &quot;max-heap-size&quot; =&gt; &quot;256m&quot;,<br>
[INFO]         &quot;max-permgen-size&quot; =&gt; undefined,<br>
[INFO]         &quot;permgen-size&quot; =&gt; undefined,<br>
[INFO]         &quot;stack-size&quot; =&gt; undefined,<br>
[INFO]         &quot;type&quot; =&gt; undefined<br>
[INFO]     }},<br>
[INFO]     &quot;system-property&quot; =&gt; {&quot;test&quot; =&gt; {<br>
[INFO]         &quot;boot-time&quot; =&gt; false,<br>
[INFO]         &quot;value&quot; =&gt; &quot;value&quot;<br>
[INFO]     }}<br>
[INFO] }<br>
<br>
<br>
_______________________________________________<br>
jboss-as7-dev mailing list<br>
<a href="mailto:jboss-as7-dev@lists.jboss.org">jboss-as7-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/jboss-as7-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/jboss-as7-dev</a><br>
</blockquote></div><br>