I have a web form (see dummy example below), it's printed by an agent.
When form is submitted it's processed by an agent (LS).
I do not know how to retrieve files/attachments, that is my problem.
<form name="profile" method="POST" action=".../postAgentName?openagent">
<input name="title"/>
<input name="price"/>
...
<input type="file" name="files" multiple>
</form>
Attachments are not part of DocumentContext as far as I see but only file-names. I kind of suspect files could be temporary uploaded to Domino within request somewhere but really I'm not sure?
Is it possible to get attachments using LotusScript from "files" controller within agent written in LS? Can somebody point me in right direction? or maybe give a tip what should I do?
Thanks a lot.