I’ve successfully installed the iNotes Upload ActiveX control to my IE.
I want to use this control to upload files to
notes.I am using Domtags for local accessing .
Here is my source code :
<%@ taglib uri=“WEB-INF/tld/domtags.tld” prefix=“domino” %>
<%@ taglib uri=“WEB-INF/tld/domutil.tld” prefix=“domutil” %>
testTags<domino:session id=“mySession”>
<domino:form name=“MainTopic” schema=“test”
editmode=“edit” dbname=“bingle.nsf”
user=“admin” password=“password” debug=“true” onfailure=“Exception”>
Server: <%=mySession.getServerName()%>
Platform: <%=mySession.getPlatform()%>
Domino Version: <%=mySession.getNotesVersion()%>
<domino:attachments name=“upload” width=“650” />
</domino:attachments>
<domino:saveclosedoc />
</domino:form>
</domino:session>
However,when I finished uploading files by using the
iNotes ActiveX control and click the save and close link ,the error occured it reads:
“Unable to upload file …”
Is there any one can tell me what happened?
I’ve already changed my ACL the right of default user to admin that means there is enough rights for me to perform this action.
I heard that the this Upload control has bugs in R6.0 but I 've updated my domino to R6.5
Does the bug still exist?
By the way ,is there any succussful sample to
demonstrate attachment uploading using iNotes ActiveX control with JSP tags?
Thanks in advance!