Monday, April 9, 2012
Error 500 HTTP Web Server: Illegal Arguments Exception
Check ACL entry .Remove old Name and add new LN name
Monday, April 2, 2012
"Notes Error: Adding entry will cause text list to exceed 64K. Entry not added."
Error Resolution
1. In the Designer client, open the agent, Upgrade Folder Design.
2. Add the following line in the (Declarations) event, below the entry, Global Variables:
3. In the ProcessAutoUpdate subroutine, make the following modification. Replace the line, "Forall x In note.UserFolders," with these two lines:
4. In the Initialize event, make the following modification. Change the code below (at approximately line 61), from:
By simply making the changes outlined above, you end up with an extra bracket that will cause an error when compiling the code:
1. In the Designer client, open the agent, Upgrade Folder Design.
2. Add the following line in the (Declarations) event, below the entry, Global Variables:
- Dim folderlist(5000) As String
3. In the ProcessAutoUpdate subroutine, make the following modification. Replace the line, "Forall x In note.UserFolders," with these two lines:
- Forall x In folderlist
If x="" Then Exit Forall
4. In the Initialize event, make the following modification. Change the code below (at approximately line 61), from:
- If (entry.document.hasitem("$ViewInheritedFrom")) Then
Call UserFolders.appendtotextlist(Trim(NewFolderName) & strDelimiter &_
to the following:
NOTE: Only line 2 is modified; line 1 is included as a reference point):
- If (entry.document.hasitem("$ViewInheritedFrom")) Then
folderlist(counter)=Trim(NewFolderName) & strDelimiter &_
By simply making the changes outlined above, you end up with an extra bracket that will cause an error when compiling the code:
- If (entry.document.hasitem("$ViewInheritedFrom")) Then
folderlist(counter)=Trim(NewFolderName) & strDelimiter &_
entry.document.GetItemValue("$ViewInheritedFrom")(0) & "]")
- If (entry.document.hasitem("$ViewInheritedFrom")) Then
folderlist(counter)=Trim(NewFolderName) & strDelimiter &_
entry.document.GetItemValue("$ViewInheritedFrom")(0) & "]"
Subscribe to:
Posts (Atom)