Example of application
The example demonstrates the evaluation of a web page. The URL for the request could be, e.g. http://www.example.net/wetter.php?plz=12345. The web server would return an HTML page with weather data as response. The entire data traffic contains the following data:
-- SEND: --
GET /wetter.php?plz=12345 HTTP/1.1
Host: www.example.net
Connection: Close

-- RECEIVE: --
HTTP/1.1 200 OK
Content-Type: text/html
Connection: Close

<html>
<body>
<h1>Aktuelle Wetterdaten für Musterhausen!<h1>
<table border="1">
<tr>
<td>Temperatur:</td><td>15 °C</td>
</tr>
<tr>
<td>Wind kommt von:</td><td>Norden</td>
</tr>
</table>
</body>
</html>
-- END --

The indicated URL does not exist. The data indicated above are intended as an example

The following data must be defined in the HS Expert:
1. General data
The following settings must be made under "Data":
Host: www.example.net
IP port: 80
2. Send the request
There are two ways of sending a request under "Send".

On the one hand, you can select the option "Send HTTP request"; the HS Expert generates the required data blocks automatically here when sending. The data blocks therefore do not have to be self-defined. However, in this case, the PLZ would be fixed: Furthermore, the required data blocks can also be self-defined; in this case, a dynamic PLZ can be sent: Note: Every data block must be concluded with CR and LF.
3. Receiving and evaluating the response
The following data blocks must be defined under "Receive":