Hi Anton,
Could you please help me with this issue?
I am using the latest version of traccar docker, and want to enable event forwarding, but without any success.
I have no error in my tracker-server.log file, but I didn’t receive any info to my event server.
This is my traccar.xml config file.
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE properties SYSTEM 'http://java.sun.com/dtd/properties.dtd'>
<properties>
<entry key='config.default'>./conf/default.xml</entry>
<entry key='database.driver'>org.postgresql.Driver</entry>
<entry key='database.url'>jdbc:postgresql://traccar_pg_db:5432/traccar_db</entry>
<entry key='database.user'>user</entry>
<entry key='database.password'>password</entry>
<entry key='event.forward.enable'>true</entry>
<entry key='event.forward.url'>http://127.0.0.1:8088</entry>
<entry key='event.forward.header'> Content-Type: application/json; charset=utf-8 </entry>
</properties>
Thanks
Hi Anton,
Could you please help me with this issue?
I am using the latest version of traccar docker, and want to enable event forwarding, but without any success.
I have no error in my tracker-server.log file, but I didn’t receive any info to my event server.
This is my traccar.xml config file.
<?xml version='1.0' encoding='UTF-8'?> <!DOCTYPE properties SYSTEM 'http://java.sun.com/dtd/properties.dtd'> <properties> <entry key='config.default'>./conf/default.xml</entry> <!-- This is the main configuration file. All your configuration parameters should be placed in this file. Default configuration parameters are located in the "default.xml" file. You should not modify it to avoid issues with upgrading to a new version. Parameters in the main config file override values in the default file. Do not remove "config.default" parameter from this file unless you know what you are doing. For list of available parameters see following page: https://www.traccar.org/configuration-file/ --> <entry key='database.driver'>org.postgresql.Driver</entry> <entry key='database.url'>jdbc:postgresql://traccar_pg_db:5432/traccar_db</entry> <entry key='database.user'>user</entry> <entry key='database.password'>password</entry> <entry key='event.forward.enable'>true</entry> <entry key='event.forward.url'>http://127.0.0.1:8088</entry> <entry key='event.forward.header'> Content-Type: application/json; charset=utf-8 </entry> </properties>
Thanks