SkillAgentSearch skills...

SimpleFIXClient

a simple FIX Protocol client that can be controlled using Groovy script scenarios

Install / Use

/learn @alexkachanov/SimpleFIXClient
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Simple FIX Client

Description

Simple FIX Client (<code>simplefixclient.jar</code>) is a Spring Boot Java application that can be used to send predefined FIX messages to any FIX server.

Messages are controlled by scenarios using Domain Specific Language (based on Groovy).

FIX protocol functionality is based on <a href="https://www.quickfixj.org/">QuickFIX/J open source library</a>.

Warnings and Notices

This project is not supposed to be used for any real trading or any money sensitive production activity.

It is recommended solely as a testing tool to test and validate your FIX applications on QA/UAT environment and learn how FIX Protocol is working.

Requirements and Dependencies

Simple FIX Client requires Java 11 LTS or latest Java 14.

It is a Maven project (see pom.xml, file Apache Maven 3.6.3 is recommended) and depends on:

  • Spring 5.3.25.RELEASE https://spring.io/projects/spring-framework
  • Spring Boot 2.7.9.RELEASE https://spring.io/projects/spring-boot
  • QuickFIX/J 2.3.1 https://github.com/quickfix-j/quickfixj
  • Groovy 2.4.9

All dependencies are downloaded from Internet when you run <code>mvn clean install</code>.

Building

Since project is a Spring Boot project, <a href="https://docs.spring.io/spring-boot/docs/current/reference/html/build-tool-plugins-maven-plugin.html">Spring Boot Maven</a> build plugin is used to build the artifact.

To build Simple FIX Client run <code>mvn clean install</code> or <code>mvn package</code> or use <code>package.bat</code> in the project folder.

Resulting simplefixclient-<version>.jar JAR file will be created in <code>target</code> sub-folder.

This JAR file is a Spring Boot jumbo-JAR that contains all dependencies required to run the application.

Running

Sample Groovy DSL scenario "Scenario1.groovy" is located in <code>scenarios</code> sub-folder.

You can pass any scenario as a startup parameter (without .groovy extension).

Start the application with Scenario1 as command line parameter using:

<code>java -jar target/simplefixclient-<version>.jar Scenario1</code>

or use <code>mvn spring-boot:run</code> command with Scenario1 as a parameter

or use <code>startClient.bat</code> or <code>startClient.sh</code> script (Scenario1 is set there).

Eclipse

Before opening project in Eclipse, run <code>mvn eclipse:eclipse</code> task in the project's folder. Maven will create Eclipse specific project files. Then import the project into your workspace as a Maven project.

To run project in Eclipse, use Maven task <code>spring-boot:run</code>.

Testing

For testing you can use <a href="https://www.quickfixj.org/usermanual/2.1.0/usage/examples.html">quickfixj-examples-executor application</a> that is distributed as a part of QuickFIX/J distribution package.

Or <a href="https://github.com/alexkachanov/simpleFIXExecutor">Simple FIX Executor</a> can be used which is basically a Spring Boot wrapper around quickfixj-examples-executor application.

Simple FIX Client will use FIX 4.2 protocol and will try to access port 9878 at localhost (see. simplefixclient.cfg).

Related Skills

View on GitHub
GitHub Stars18
CategoryDevelopment
Updated2mo ago
Forks6

Languages

Java

Security Score

80/100

Audited on Jan 23, 2026

No findings