I want to upload a file from my server via form to another server.
Just like a normal upload form but the file is not stored at the client.
<form enctype="multipart/form-data" action="http://server2.com/upload.api">
<input type="file" name="file"> <!-- serverfile instead of local/client file ?! -->
<input type="submit">
</form>