<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head><body dir="auto"><div>Since this change looks minor, and it comes from a community member I am inclined to allow into 8.0.1.</div><div><br></div><div>How bad is the conflict for the other change you are referring to Darran?</div><div><br>On Mar 19, 2014, at 5:43 PM, Marek Żupnik &lt;<a href="mailto:marek.zupnik@gmail.com">marek.zupnik@gmail.com</a>&gt; wrote:<br><br></div><blockquote type="cite"><div><div dir="ltr"><div>Hi,</div><div><br></div><div>Darran, I understand your point of view, but stable version of 9 will be not released tomorrow. Lack of pkcs12 support in 8 is a major issue, not to mention that in AS 7 I was able to use this format for https private key. I think it will be useful to fix it yet in 8, even thought the code with a fix will be thrown away in 9.</div>
<div><br></div><div>I made a pull request with a fix (<a href="https://github.com/wildfly/wildfly/pull/6062">https://github.com/wildfly/wildfly/pull/6062</a>). It is up to you what you do with it.</div><div><br></div><div>
Thank you for your answers and clarifications.</div><div><br></div><div>Kind Regards,</div><div>Marek Zupnik</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">2014-03-18 18:10 GMT+01:00 Darran Lofthouse <span dir="ltr">&lt;<a href="mailto:darran.lofthouse@jboss.com" target="_blank">darran.lofthouse@jboss.com</a>&gt;</span>:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I will have another look if I get a chance to get something into 8 but<br>
in reality a related change in this area (that completely conflicts with<br>
your changes) was pushed to 9 as the consensus was we did not want the<br>
configuration model in this area changing before WildFLy 9.<br>
<div class=""><br>
On 18/03/14 16:30, Marek Żupnik wrote:<br>
&gt; Hi,<br>
&gt;<br>
&gt; Thank You Brian for your comments. I'll try to apply them to my code. I<br>
&gt; ask if I will have further questions about it.<br>
&gt;<br>
&gt; @Darran, I have a question for you. I wasn't looking into development<br>
&gt; branch so I haven't known about the changes. Is it possible that pkcs12<br>
&gt; support will be merged in Wildfly 8? If not, could my change be merged<br>
&gt; earlier? Otherwise, I'm forced to maintain my version of Wildfly untill<br>
&gt; no 9 will be released.<br>
&gt;<br>
&gt; Kind Regards,<br>
&gt; Marek Zupnik<br>
&gt;<br>
&gt;<br>
&gt; 2014-03-18 16:20 GMT+01:00 Brian Stansberry &lt;<a href="mailto:brian.stansberry@redhat.com">brian.stansberry@redhat.com</a><br>
</div>&gt; &lt;mailto:<a href="mailto:brian.stansberry@redhat.com">brian.stansberry@redhat.com</a>&gt;&gt;:<br>
<div><div class="h5">&gt;<br>
&gt; &nbsp; &nbsp; Hi Marek,<br>
&gt;<br>
&gt; &nbsp; &nbsp; Welcome!<br>
&gt;<br>
&gt; &nbsp; &nbsp; I'm going to make a few comments on github re: some minor details of<br>
&gt; &nbsp; &nbsp; your commit. But please keep an eye on this list for your more general<br>
&gt; &nbsp; &nbsp; question about whether this is how we want to go about this. I believe<br>
&gt; &nbsp; &nbsp; Darran Lofthouse was planning some work in this area so he may have some<br>
&gt; &nbsp; &nbsp; input.<br>
&gt;<br>
&gt; &nbsp; &nbsp; Cheers,<br>
&gt;<br>
&gt; &nbsp; &nbsp; --<br>
&gt; &nbsp; &nbsp; Brian Stansberry<br>
&gt; &nbsp; &nbsp; Senior Principal Software Engineer<br>
&gt; &nbsp; &nbsp; JBoss by Red Hat<br>
&gt;<br>
&gt; &nbsp; &nbsp; On 3/18/14, 8:59 AM, Marek Żupnik wrote:<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; Hi,<br>
&gt; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; I'm Marek Zupnik. It's my first message for this list but for<br>
&gt; &nbsp; &nbsp; some time<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; I've been keeping my eyes on what's happening in wildfly development.<br>
&gt; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; I'm writing regarding to the issue about lack of support for PKCS12<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; keystores in security realms<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; (<a href="https://issues.jboss.org/browse/WFLY-2229" target="_blank">https://issues.jboss.org/browse/WFLY-2229</a>). I wanted to migrate my<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; system to Wildfly but in my case it is a blocking issue. I have<br>
&gt; &nbsp; &nbsp; to use<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; keystore in PKCS12 format in which I'm storing, among others, https<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; private key.<br>
&gt; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; I forked Wildfly on github and made a simple fix for this issue which<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; consists in additional parameter "keystore-type" for keystore<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; configuration. Based on this parameter I'm able to create appropriate<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; keystore type.<br>
&gt; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; Config sample:<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; &lt;keystore path="keystore.p12" relative-to="jboss.server.config.dir"<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; keystore-password="xxx" keystore-type="PKCS12" alias="https"/&gt;<br>
&gt; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; The changes are in my fork on github (keystore_type branch):<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; <a href="https://github.com/mzupnik/wildfly/tree/keystore_type" target="_blank">https://github.com/mzupnik/wildfly/tree/keystore_type</a><br>
&gt; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; Before I will try to do push request, could you answer me if it is<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; acceptable solution according to your architecture concept? If not,<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; could you give me some tips how to resolve it in other way? I<br>
&gt; &nbsp; &nbsp; care about<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; this fix before 9. release.<br>
&gt; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; Kind Regards,<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; Marek Zupnik<br>
&gt; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; _______________________________________________<br>
&gt; &nbsp; &nbsp; &nbsp;&gt; wildfly-dev mailing list<br>
</div></div>&gt; &nbsp; &nbsp; &nbsp;&gt; <a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a>&gt;<br>
<div class="">&gt; &nbsp; &nbsp; &nbsp;&gt; <a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a><br>
&gt; &nbsp; &nbsp; &nbsp;&gt;<br>
&gt;<br>
&gt;<br>
&gt; &nbsp; &nbsp; _______________________________________________<br>
&gt; &nbsp; &nbsp; wildfly-dev mailing list<br>
</div>&gt; &nbsp; &nbsp; <a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a> &lt;mailto:<a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a>&gt;<br>
<div class="HOEnZb"><div class="h5">&gt; &nbsp; &nbsp; <a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a><br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; wildfly-dev mailing list<br>
&gt; <a href="mailto:wildfly-dev@lists.jboss.org">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>
_______________________________________________<br>
wildfly-dev mailing list<br>
<a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev" target="_blank">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a></div></div></blockquote></div><br></div>
</div></blockquote><blockquote type="cite"><div><span>_______________________________________________</span><br><span>wildfly-dev mailing list</span><br><span><a href="mailto:wildfly-dev@lists.jboss.org">wildfly-dev@lists.jboss.org</a></span><br><span><a href="https://lists.jboss.org/mailman/listinfo/wildfly-dev">https://lists.jboss.org/mailman/listinfo/wildfly-dev</a></span></div></blockquote></body></html>