how to remove HTTP response header received from webservice

hi,
i am using WiFi client to connect to server and get data. in the response i am getting HTTP response header along with data.

HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Content-Type: text/plain
Date: Fri, 04 Jul 2014 19:12:07 GMT
Connection: close
"{"number":4002,"Name":"Ani","Weight":50","min":6}";

can any one please suggest how can i remove response header from this ?

Thanks in advance......

just skip the data until you reach what you are looking for.

The standard says this too ( for http 1.1 ):

Request (section 5) and Response (section 6) messages use the generic message format of RFC 822 [9] for transferring entities (the payload of the message). Both types of message consist of a start-line, zero or more header fields (also known as "headers"), an empty line (i.e., a line with nothing preceding the CRLF) indicating the end of the header fields, and possibly a message-body.

hi,
can you please provide some example on how to implement it ?

In your IDE, open up the example WebClient in the Ethernet section.

It implements a variable currentLineIsBlank to detect the two CRLF's ( one on the end of the last header, and one on a new line by itself )

You can also view the sketch here:
https://github.com/arduino/Arduino/blob/master/libraries/Ethernet/examples/WebServer/WebServer.ino#L54