Development

Add charles ssl proxy certificates to JDK on a mac

First you need to run charles and enable SSL proxying. The see which JDK is used by your application and add the certificate to the cacerts file: curl -s http://ssl.charles/ –proxy 127.0.0.1:8888 > cert_file sudo keytool -import -noprompt -alias charles-$(date +%Y%m%d%H%M%S) \ -file cert_file \ -keystore /Library/Java/JavaVirtualMachines/jdk-10.0.2.jdk/Contents/Home/lib/security/cacerts \ -storepass changeit rm cert_file  

Add charles ssl proxy certificates to JDK on a mac Read More »

External ActiveMQ with Wildfly 9.0.1

Target of this post is to configure a vanilla Wildfly 9.0.1 to use an external vanilla ActiveMQ 5.12.0. These are the latest releases on 2015-09-18. I got it running with following steps: Download Wildfly 9.0.1 if you don’t have it already: http://download.jboss.org/wildfly/9.0.1.Final/wildfly-9.0.1.Final.zip Download ActiveMQ 5.12.0 if you don’t have it already: http://www.apache.org/dyn/closer.cgi?path=/activemq/5.12.0/apache-activemq-5.12.0-bin.zip Download ActiveMQ Resource Adapter if you

External ActiveMQ with Wildfly 9.0.1 Read More »

JBAS010153: Node identifier property is set to the default value

I got the following warning on startup of EAP 6.4.2: WARN  [org.jboss.as.txn] (ServerService Thread Pool — 46) JBAS010153: Node identifier property is set to the default value. Please make sure it is unique. To get rid of this you have to add a node-identifier attribute in the transactions subsystem. Here is my actual config after

JBAS010153: Node identifier property is set to the default value Read More »