Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,15 @@ end
- Session registry
- Two-phase parse of FIX messages

When using SSL (`transport_mod: :ssl`), make sure the Erlang `:ssl` application
is started by listing it under `extra_applications` in your `mix.exs`:

```elixir
def application do
[extra_applications: [:logger, :crypto, :ssl]]
end
```

## Usage

```elixir
Expand Down
3 changes: 3 additions & 0 deletions examples/ex_fix_initiator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
Example of FIX initiator that sends 10,000 orders to a QuickFIX/J acceptor
over a SSL connection.

Make sure the `:ssl` application is started by adding it to
`extra_applications` in `mix.exs`.

## Running

First run QuickFIX/J acceptor; see `examples/quickfixj_acceptor/README.md`.
Expand Down
2 changes: 1 addition & 1 deletion examples/ex_fix_initiator/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ defmodule ExFixInitiator.Mixfile do

def application do
# Specify extra applications you'll use from Erlang/Elixir
[extra_applications: [:logger],
[extra_applications: [:logger, :ssl],
mod: {ExFixInitiator.Application, []}]
end

Expand Down