Question
We want to add file from local system to the server as a secondary attachment to wtDocument type
We have wrote a html code to upload file as follows:
<h3>File Upload</h3>
<form action="UploadServlet" method="post" enctype="multipart/form-data">
<input type="file" name="file">
<button type="submit">Upload File</button>
</form>
Need code in UploadServlet.jsp to fetch the document and attach it to the secondary attachment of the current wtDocument.
Thanks!

