Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Overview

FIXEdge Admin REST API is API is intended to be a pragmatic tool for on-the-fly tuning of the most common FIXEdge properties.

...

  1. Create CA root key
    openssl genrsa -out rootCA.key 2048
  2. Create root certificate
    openssl req -x509 -new -key rootCA.key -days 10000 -out rootCA.crt
    Answer the questions that openssl asks.  The duration of certificate will be 10000 days.
  3. Generate certificate signed with the created CA
    openssl genrsa -out AdminRESTAPI.key 2048
  4. Create certificate signing request
    openssl req -new -key AdminRESTAPI.key -out AdminRESTAPI.csr
  5. Sign the certificate with the root certificate
    openssl x509 -req -in AdminRESTAPI.csr -CA rootCA.crt -CAkey rootCA.key -CAcreateserial -out AdminRESTAPI.crt -days 5000

Documentation

http://corp-web.b2bits.com/fixedge/AdminRESTAPI/FIXEdge Administrative REST API and SDK Documentation