igarashitm.log

igarashitm, a Japanese software engineer writes something in English here.

Connecting to HornetQ via remote JNDI provider

Today I have been trying to make my SwitchYard example application connected to remote HornetQ, succeeded with following. Add JNDI properties to the InitialContext This piece is mentioned by Justin on this thread: https://community.jboss.o…

Message Ordering on HornetQ

An important tips - enable Message Group or limit "max-pool-size" to 1 to guarantee the order. Notice that the max-pool-size is only available on JBossAS7.2 or later.How to order messages that are sent from the message queue? | SwitchYard …

Moving to Japan - Thanks to everybody I met in US

Finally, I need to accept the end of living in US. It has been the most amazing time in my life. I miss lots of beautiful historic structure in Boston city, and full of greenery once I just go 30 minutes away from the city.In winter, not o…

JBoss AS7 remote debug

Standard installation enable following option in $AS7/bin/standalone.conf JAVA_OPTS="$JAVA_OPTS -Xrunjdwp:transport=dt_socket,address=8787,server=y,suspend=y" JUnit testcase kicked by Maven mvn -Dmaven.surefire.debug test or mvn -Dmaven.su…

Playing around with SwitchYard on OpenShift Express

Prerequisite Fedora16 environment http://fedoraproject.org/en/get-fedora SwitchYard http://www.jboss.org/switchyard/downloads OpenShift account https://openshift.redhat.com/ Install OpenShift Express Client Tools yum install rubygem-rhc Cr…

Debugging around JBossWS & apache-cxf without JBoss instance on Eclipse

Just a note for debugging SWITCHYARD-600. Don't forget to mkdir ${project}/resources and add it to the build path. Download&import following projects into Eclipse workspace https://github.com/jbossas/httpserver.git https://svn.jboss.org/re…

XSLT transformation using DOMSource & DOMResult

Just reminder. really hit a wall.The points are following two. It's no problem if the source is always String, but sometimes not somehow. need to do DocumentBuilderFactory#setNamespaceAware(true) when creating DOMSource from String, or XSL…