I need to send MT950 messages to a SWIFT message, I've done this before but I always forget how I did it. This version, however needs to be a little more comprehensive. Specifically, I want to develop this to send messages from a query, but be able to map the query results to the message fields so first things first I'm going to need to tool up. I downloaded Apache Active MQ and installed it (basically just uncompresses)
The above starts Active MQ. In a web browser, navigating to http://localhost:8161/admin/index.jsp you should see the following
So now we've got something to send a message to we can code up a simple test. here's my pom: 4.0.0 cwc SwiftMessagePublisher 1.0.0.BUILD-SNAPSHOT jar SwiftMessagePublisher http://www.springsource.org/spring-integration
2.2.1
UTF-8 2.2.4.RELEASE 1.2.17 4.11
repo.springsource.org.milestone Spring Framework Maven Milestone Repository https://repo.springsource.org/milestone
Create a project and add this in eclipse. Here's mine...
I've used STS here and created a Spring project. I added maven and modified the POM. You need a couple of alternative repos because some of the dependencies aren't covered by the defaults. notice the spring integration context. STS adds this for a Sprint Integration project by default.
You'll notice the testSend() :void test. I added this just to get the go-no-go test proved with Active MQ. Here's the code, no spring in there yet. I just want to prove that I can successfully send a message to the Queue.
@Test
publicvoid testSend(){
try {
//created ConnectionFactory object for creating connection
ConnectionFactory factory = new ActiveMQConnectionFactory("admin", "admin", "tcp://localhost:61616");
We're good, all compiles and runs.. but did we send a message?
Switch to the ActiveMQ Console and review Queues. Click the queue name and you'll see there's a message. Click the message to review the payload and we can see we've got a "Hello World" message.
OK so to review, we've installed Apache Active MQ, retaining the defaults. Created a Spring Integration Project in STS (Spring Source Tool Suite) and added a test that sends a hello world message to Active MQ. We've tested the development harness and we're ready to start generating and testing SWIFT messages. ...not bad for a hour or so's work.
Freelance Software Developer, development laguage agnostic. Experienced in both Open Source and Microsoft software development. Available for Architecture and Infrastructure design and build or consultancy. My background is in Telecoms, Billing Portals, Banking, eCommerce and Security. I like to see things working better as I leave than when I arrived. Progress has been made, Simple.