WARN No appenders could be found for logger

Anton Tananaev9 years ago

IMEI is International Mobile Station Equipment Identity which basically means it's a modem ID. It's always 15 digits.

mickdane9 years ago

Anton
I will insert our UniqueID into ImieNumber and see if this helps?

mickdane9 years ago

It seams that its starting to insert data - What I can't see is if it uses my ReverseGeoCoding after the data is inserted to GTS.

I have to wait as theres so much data that has to be added...

But thanks for your help

mickdane9 years ago

One thing more
It says Query not provided database.updateLAstPosition
Do we need that ?

mickdane9 years ago

I have inserted nomination into the config
is this right
<entry key='geocoder.enable'>true</entry>
<entry key='geocoder.type'>nominatim</entry>
<entry key='geocoder.url'>http://xx.xx.xxx.xxx/nominatim/reverse.php</entry>

mickdane9 years ago

Hi Anton
It works now only thing is that the Special char like æøåÆØÅ do not show when the are Geocoded - When doing this from GTSit normally works. Is the geocoding not UTF-8 ??

mickdane9 years ago

A small warning
WARN: Table 'gts.device' doesn't exist - MySQLSyntaxErrorException (... < QueryBuilder.java:411 < DataManager.java:320 < TrackerEventHandler.java:67 < ...)

What is that??

Anton Tananaev9 years ago

To fix address encoding issue try to add following to your database.url parameter:

&amp;useUnicode=yes&amp;characterEncoding=UTF-8

As for the error in the last post, it seems like server can't access 'gts.device' table for some reason.

Last thing, you might need to add "database.updateLatestPosition" parameter to the config with value "DO 0;".

mickdane9 years ago

OK Made the database url.

I am not sure i undertand
"Last thing, you might need to add “database.updateLatestPosition” parameter to the config with value “DO 0;”.

The Update looks like this?
<entry key='database.updateLatestPosition'>
UPDATE device SET positionId = :id WHERE id = :deviceId;
</entry>

Anton Tananaev9 years ago

Add this:

<entry key=’database.updateLatestPosition’>
    DO 0;
</entry>