GSM NEOWAY M590 with local server

Dear all,

I am using a M590 GSM modem and it works fine with cloud server
Blynk.begin(auth, modem, apn, user, pass);

But if I add:
char server[] = “xxx.xxx.xxx.xxx”; // Local server IP address
Blynk.begin(server, auth, modem, apn, user, pass);

I am getting an error:
In function ‘void setup()’:
SIM800_SIM900_BLYNK:96: error: no matching function for call to 'BlynkSIM::begin(char [23], char [33], TinyGsm&, char [17], char [1], char [1])'
Blynk.begin(server, auth, modem, apn, user, pass);

Any suggestions how to solve it?

Best regards and many thanks in advance for Your kind cooperation,
Ivan

server domain and port are usually the last param, not the first one…

Thanks a lot, your help is highly appreciated. It works fine now.

Regards, Ivan