Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Unable to upload file to server
Hi, I am new to Vaadin. I am trying to make use of the "Multi-Upload" component that is present under https://vaadin.com/elements/-/element/vaadin-upload#demos
This is my script. While uploading the file, in browser, its showing that upload is completed. But, in the server, under the path mentioned, I could not find the file.. Do i need to implement any listeners or receivers to accept the file on server ?? or is automatically taken care by vaadin itself ??
(By the way, I am accessing vaadin core elements through CDN & not through Bower)
Please help
<html>
<head>
<title>Hello World</title>
<script src="https://cdn.vaadin.com/vaadin-core-elements/master/webcomponentsjs/webcomponents-lite.js"></script>
<link rel="import" href="https://cdn.vaadin.com/vaadin-core-elements/master/vaadin-upload/vaadin-upload.html">
</head>
<body>
<vaadin-upload id="RequestDemo" method="POST" target="http://102.254.25.12:8080/FirstProject">
</vaadin-upload>
</body>
</html>