<html>
<body>
	<form method="POST" enctype="multipart/form-data"
		action="/simple/file">
		File to upload: <input type="file" name="file"><br /> Name: <input
			type="text" name="name"><br /> <br /> <input type="submit"
			value="Upload"> Press here to upload the file via ribbon proxy!
	</form>
	<form method="POST" enctype="multipart/form-data"
		action="/direct/file">
		File to upload: <input type="file" name="file"><br /> Name: <input
			type="text" name="name"><br /> <br /> <input type="submit"
			value="Upload"> Press here to upload the file via direct proxy!
	</form>
	<form method="POST" enctype="multipart/form-data"
		action="/proxy/direct/file">
		File to upload: <input type="file" name="file"><br /> Name: <input
			type="text" name="name"><br /> <br /> <input type="submit"
			value="Upload"> Press here to upload the file via proxy servlet!
	</form>
	<form method="POST" enctype="multipart/form-data"
		action="/file">
		File to upload: <input type="file" name="file"><br /> Name: <input
			type="text" name="name"><br /> <br /> <input type="submit"
			value="Upload"> Press here to upload the file directly!
	</form>
</body>
</html>