0

I'm using MobileFirst Platform Foundation 7.1 and IDE Eclipse Version Mars.2 Release (4.5.2).

While i'm building the app in Studio using an IPV6 Address it fails as follows:

Incorrect MobileFirst server information: For input string:

enter image description here

Idan Adar
  • 44,156
  • 13
  • 50
  • 89
Krish
  • 15
  • 1
  • 3
  • Can you add an example of an IPv6 address you've used? You can change a number so that it won't match you real one... – Idan Adar Oct 25 '16 at 17:32

1 Answers1

0

This error may happen if you are:

  • incorrectly input the IPv6 address. For example like this: https://[2001::db8:a0b:12f0::1]:21.

  • not enclosing the hostname in brackets, to keep it separate from the port number.

The following works: https://[2001:db8:a0b:12f0::1]:21

Idan Adar
  • 44,156
  • 13
  • 50
  • 89