Versions Compared

Key

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

...

  • Link the application with libV12_webui.so libraryso library.
Code Block
languagecpp
titleCMakeLists.txt Sample
add_executable(fa-webui-app
    <sources>)

target_include_directories(fa-webui-app
    PRIVATE ${FIXANTENNA_INCLUDE_DIR})

target_link_libraries(fa-webuia-pp 
    PRIVATE V12 V12_webui)

...

PropertyDescriptionRequiredDefault value
Monitoring.Web.Host

This parameter defines the IP address for monitoring WebUI to listen on, which may be 0.0.0.0 to listen on all network interfaces. 

If the Monitoring.Web.Host was specified with the incorrect value (not an integer in range 0..0xFFFF) an invalid IP address of the host machine, then the monitoring WebUI will not be started and the following ERROR message will be logged:

Code Block
Failed to start monitoring Web UI: Monitoring.Web.Port is not an integer in range 0 .. 65535.<message from the operating system>. 


N127.0.0.1
Monitoring.Web.Port

This parameter defines the TCP port for monitoring WebUI to listen on.

If the Monitoring.Web.Port was specified with an invalid IP address of the host machine, the incorrect value (not an integer in range 0..0xFFFF) then the monitoring WebUI will not be started and the following ERROR message will be logged:

Code Block
Failed to start monitoring Web UI: <message from the operating system>. Monitoring.Web.Port is not an integer in range 0 .. 65535 


N8906
  • Call Engine::Monitoring::Web::initialize function after initialization of FIX Engine.
  • Call Engine::Monitoring::Web::finalize before stopping FIX Engine.

...

The following information is displayed on the Session Details page:

  • A table with session parameters configured in the engine.properties file, current status, and sequence numbers
  • Buttons to:
    • Connect the session
    • Disconnect the session
    • Reset sequence numbers
    • Refresh the Session Details page
    • Navigate back to the Sessions List page

...