Displaying GET data on the Webserver sent by RN XV

Hi PaulS,
Here is how I set the RN XV from putty.

set ip dhcp 1
set ip protocol 18
set wlan join 1
set wlan phrase WPAPassword
set wlan ssid EDAS //EDAS is the wlan SSID
set dns address 192.168.1.1
set ip host 192.168.1.3 // my webserver
set ip remote 8080
set c r GET$/Health/test.php?val= //this is how I set the GET data to be sent- 
set option format 1
set uart mode 2
save 
reboot

The com string (GET statement) is set as per the instruction manual instruct to set it. It say that the $ is for space replacement. Please refer to page 57 of the manual for example. The connection of the RN XV to the AP is fine. I can ping it, can have a Telnet connection and can see the Wifly RNXV in the router attached devices list
The code uploaded to the Arduino is

#include <eHealth.h>
void setup()
{

Serial.begin(9600);
}

void loop()
{
while(1){
float temp = eHealth.getTemperature();     
  Serial.print(temp); 
  delay(2000);   // wait for a second
}
}

From the LED blinking, I meant to say the LED on the RN XV module (Not on the Server)

I typed the output string on the 192.168.1.2:2000 (the RN XV) so sorry for the typos. here is the exact output that I get at the browser
GET /Health/test.php?val=32372e3636 HTTP/1.0 Host: dns1

And about the host: dns1, to be honest I have no idea. May be something default. It may be related to the set option format as the value selected appends additional variables with the data to be sent (but as a newbie, I dont understand it at this moment)