WiFlyHQ: A new library for the WiFly RN-XV

Hi,

I'm having trouble with trying to read the NTP time with the library, could someone please point out what I'm doing wrong? I'm only getting the uptime, I'm not getting the NTP time.

  wifly.setTimeAddress("129.6.15.28");
  wifly.setTimePort(123);
  wifly.setTimezone(+5);
  wifly.setTimeEnable(1);
  
  delay(1000);
  char MyTime[20];
  wifly.getTime(MyTime, 20);
  
  Serial.println(MyTime);