I wanna use JSP tag “attachments” to upload files to Domino, but it does not work.The error msg is “Unable to Upload file”
Could you help me? What should I do?
My JSP file is:
<%@ page contentType=“text/html; charset=GB2312” import=“lotus.domino.,java.util.” %>
<%@ taglib uri=“domtags.tld” prefix=“domino” %>
<%@ taglib uri=“domutil.tld” prefix=“util” %>
<domino:form name=“person” schema=“person” dbname=“simple.nsf” debug=“true” editmode=“edit” unid=“DFDCCE749729C0C748256CD80042B714”>
<domino:attachments name=“photo” bgcolor=“#C0C0C0” maxsize=“1024” debug=“true” >
</domino:attachments>
Name: <domino:input name=“username” />
Phone: <domino:input name=“phone” />
<domino:savedoc showdisabled=“false” text=“save me” />
</domino:form>