HTTP-Server-Input without sending response?

Hello,

is it possible to use the http-server-input plugin without sending a response to the client after processing the workflow?

Best regars,
Thomas

You must provide a reply, otherwise the client may time out.
However, you don’t have to wait for the entire process to complete before returning the response. In the HTTP Server Input task, tick the Send immediate response to client option. Then specify a static HTML file, which could simply contain something like:

<html><body>OK</body></html>

That file will be returned immediately to the client with status code 200 (success).

Ok, thanks.

Now I create a textfile containing the following html, to refresh the requesting website.

<!doctype html>
<html lang=“de”>
<head><meta http-equiv=“refresh” content=“0;url=http://localhost:8080/xyz”></head>
<body>
<script>alert(“Well done!”);</script>
</body>
</html>