We are now offering a Java tracking library to track website users via your own server. Server-side tracking is becoming increasingly important to track mission-critical information on webpages. The new Mapp Intelligence Java library allows to configure tracking right on the server instead of taking a detour via the browser.

Key Benefits

  • Be independent of browser-side cookies.
  • Prevent tracking blockers from affecting your data.
  • Gain increased control over collected data.
  • Collect precise data of your page.

Availability

This feature is available to all customers by default.

How does it work?

The browser sends a request to the server each time a user wants to open a web page. Since the server already has all the information needed, it can create and send the request directly to our backend. If you do not want to lose any browser-specific behaviour, you can easily use our hybrid tracking solution to get the full picture of your users.

Check out our technical documentation which covers the main Use Cases and more.

MappIntelligenceConfig config = new MappIntelligenceConfig()
    .setTrackDomain("analytics01.wt-eu02.net")
    .setTrackId("111111111111111")
    .setConsumerType(MappIntelligenceConsumer.HTTP_CLIENT)
    .setMaxAttempt(3)
    .setAttemptTimeout(100)
    .setMaxBatchSize(1)
    .setForceSSL(true);
JAVA