<div dir="ltr"><div><div><div><div>Darran,<br><br></div>Thank you, wish I had found your blog post before. Fortunately, I was able to build almost the same thing with a lot of effort: <a href="https://github.com/biemond/biemond-wildfly/blob/master/lib/puppet_x/util/wildfly_cli.rb">https://github.com/biemond/biemond-wildfly/blob/master/lib/puppet_x/util/wildfly_cli.rb</a><br><br></div>My point is: Sysadmins often build CLI scripts to automate tasks and I want to &quot;reuse&quot; this knowledge in HTTP API. Sysadmins don&#39;t talk JSON, they talk CLI...<br><br></div>I heard somewhere that jboss-cli.sh and Management Console are using the same HTTP API in Wildfly, but I&#39;m not sure how jboss-cli.sh use this commands...<br><br></div>In fact, I tried to use jboss-cli.sh but bash is incredible slow compared to HTTP API: <a href="https://github.com/cpitman/puppet-jboss_admin/issues/68">https://github.com/cpitman/puppet-jboss_admin/issues/68</a> <br></div><br><div class="gmail_quote"><div dir="ltr">On Fri, May 29, 2015 at 9:22 AM Darran Lofthouse &lt;<a href="mailto:darran.lofthouse@jboss.com">darran.lofthouse@jboss.com</a>&gt; wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">It was written a couple of years back but this is a good blog post to<br>
look at for different clients sending in management requests: -<br>
<br>
<a href="http://pilhuhn.blogspot.co.uk/2012/01/polyglot-management-of-secured-as7.html" target="_blank">http://pilhuhn.blogspot.co.uk/2012/01/polyglot-management-of-secured-as7.html</a><br>
<br>
You don&#39;t need to go as far as the Base64 encoding and decoding if you<br>
do not want to and just create the json formatted requests and parse the<br>
json responses.<br>
<br>
Regards,<br>
Darran Lofthouse.<br>
<br>
On 29/05/15 13:11, Jairo Junior wrote:<br>
&gt; No, it&#39;s not. Only ruby. Although, I could use JRuby to import and use<br>
&gt; Java classes, it would give me more trouble than solutions.<br>
&gt;<br>
&gt; What I want is: An interoperable way to talk with JBoss. application/dmr<br>
&gt; is a binary/proprietary format.<br>
&gt;<br>
&gt; On Fri, May 29, 2015 at 8:17 AM Heiko Braun &lt;<a href="mailto:hbraun@redhat.com" target="_blank">hbraun@redhat.com</a><br>
&gt; &lt;mailto:<a href="mailto:hbraun@redhat.com" target="_blank">hbraun@redhat.com</a>&gt;&gt; wrote:<br>
&gt;<br>
&gt;     What the constraints when developing a puppet module? Is plain java<br>
&gt;     supported?<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;     Am 29.05.2015 um 01:39 schrieb Jairo Junior &lt;<a href="mailto:junior.jairo1@gmail.com" target="_blank">junior.jairo1@gmail.com</a><br>
&gt;     &lt;mailto:<a href="mailto:junior.jairo1@gmail.com" target="_blank">junior.jairo1@gmail.com</a>&gt;&gt;:<br>
&gt;<br>
&gt;&gt;     Heiko,<br>
&gt;&gt;<br>
&gt;&gt;     Thank you, but how do I build a ModelNode from a CLI command?<br>
&gt;&gt;<br>
&gt;&gt;     Before using JSON I was investigating how Administration Console<br>
&gt;&gt;     perform operations and I realized (using firebug) that it uses<br>
&gt;&gt;     application/dmr, but I presumed it uses ModelNode to build<br>
&gt;&gt;     commands, not plain CLI syntax.<br>
&gt;&gt;<br>
&gt;&gt;     On Thu, May 28, 2015 at 5:58 AM Heiko Braun &lt;<a href="mailto:hbraun@redhat.com" target="_blank">hbraun@redhat.com</a><br>
&gt;&gt;     &lt;mailto:<a href="mailto:hbraun@redhat.com" target="_blank">hbraun@redhat.com</a>&gt;&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt;         The DMR library can be found here:<br>
&gt;&gt;<br>
&gt;&gt;         <a href="https://github.com/jbossas/jboss-dmr" target="_blank">https://github.com/jbossas/jboss-dmr</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;&gt;         On 28 May 2015, at 10:56, Heiko Braun &lt;<a href="mailto:hbraun@redhat.com" target="_blank">hbraun@redhat.com</a><br>
&gt;&gt;&gt;         &lt;mailto:<a href="mailto:hbraun@redhat.com" target="_blank">hbraun@redhat.com</a>&gt;&gt; wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;         You can already use DMR over HTTP. It requires a different<br>
&gt;&gt;&gt;         content-type (&#39;application/dmr-encoded&#39;) and uses a base64<br>
&gt;&gt;&gt;         encoded representation of the payload<br>
&gt;&gt;&gt;         (&#39;ModelNode.toBase64String()&#39;).<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;         You can describe an operation through the DMR API and then<br>
&gt;&gt;&gt;         simply do HTTP POST to ‘/management’ endpoint. make sure to<br>
&gt;&gt;&gt;         use &#39;application/dmr-encoded’ for both &#39;Content-Type&#39; and<br>
&gt;&gt;&gt;         ‘Accept’ headers.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;         The response can be parse using &#39;ModelNode.fromBase64()&#39;.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;         Hope this helps,<br>
&gt;&gt;&gt;         Heiko<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;         On 27 May 2015, at 19:54, Jairo Junior<br>
&gt;&gt;&gt;&gt;         &lt;<a href="mailto:junior.jairo1@gmail.com" target="_blank">junior.jairo1@gmail.com</a> &lt;mailto:<a href="mailto:junior.jairo1@gmail.com" target="_blank">junior.jairo1@gmail.com</a>&gt;&gt;<br>
&gt;&gt;&gt;&gt;         wrote:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;         I&#39;ve been working on a Puppet Module for Wildfly [1] that<br>
&gt;&gt;&gt;&gt;         uses his HTTP Management API to perform operations (manage<br>
&gt;&gt;&gt;&gt;         resources/deploys and execute commands), but my command<br>
&gt;&gt;&gt;&gt;         execution code is a little bit limited cause I have to<br>
&gt;&gt;&gt;&gt;         transform from CLI syntax to JSON. e.g.:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;         :shutdown(restart=true)<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;         becomes<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;         {&quot;operation&quot; : &quot;shutdown&quot;, &quot;restart&quot; : &quot;true&quot; }<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;         Is there any specific reason to not support plain CLI<br>
&gt;&gt;&gt;&gt;         commands through HTTP API? I looked at the code and it<br>
&gt;&gt;&gt;&gt;         didn&#39;t see hard to implement this...<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;         [1] <a href="https://github.com/biemond/biemond-wildfly" target="_blank">https://github.com/biemond/biemond-wildfly</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;         _______________________________________________<br>
&gt;&gt;&gt;&gt;         wildfly-dev mailing list<br>
&gt;&gt;&gt;&gt;         <a href="mailto:wildfly-dev@lists.jboss.org" target="_blank">wildfly-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:wildfly-dev@lists.jboss.org" target="_blank">wildfly-dev@lists.jboss.org</a>&gt;<br>
&gt;&gt;&gt;&gt;         <a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; wildfly-dev mailing list<br>
&gt; <a href="mailto:wildfly-dev@lists.jboss.org" target="_blank">wildfly-dev@lists.jboss.org</a><br>
&gt; <a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a><br>
&gt;<br>
</blockquote></div>