NOTES EXCEPTION in <domino:view>: (4395) Not implemented

I’m just trying to simply put a view on the screen using JSP’s and WSAD 5.0 and I got this error when doing the run on server.

NOTES EXCEPTION in domino:view: (4395) Not implemented

Can anyone see what is not implemented here?

imported:

\WEB-INF\lib\domtags.jar

\WEB-INF\lib\Notes.jar

\WEB-INF\tlds\domtags.tld

\WEB-INF\tlds\domutil.tld

and this is my jsp:

<%@ taglib uri=“domtags.tld” prefix=“domino” %>

<%@ taglib uri=“domutil.tld” prefix=“util” %>

<%@ page language=“java” import=“lotus.domino., java.util.” contentType=“text/html; charset=ISO-8859-1” pageEncoding=“ISO-8859-1” %>

index.jsp
<tr>

	<td width="150">

	<h4>First Name</h4>

	</td>

	<td width="150">

	<h4>Last Name</h4>

	</td>

</tr>

<domino:view dbname="Simple.nsf" viewname="Persons">

	<domino:viewloop start="1" count="3">

		<tr>

			<td width="150"><domino:viewitem col="1" /></td>

			<td width="150"><domino:viewitem col="2" /></td>

		</tr>

	</domino:viewloop>

	<domino:novalues>No items</domino:novalues>

</domino:view>

Subject: NOTES EXCEPTION in domino:view: (4395) Not implemented

I don’t know how much we have actually documented the set up using wsad, but this works for me:1) Win2000 is the only OS I know of where you can run wsad and domino together.

  1. Move Notes.jar to C:\Program Files\IBM\WebSphere Studio\runtimes\base_v5\java\jre\lib

  2. In wsad’s server perspective, in the Navigator view, Servers folder, edit your server.wsi file (mine is defaultServer.wsi) and on the Paths tab, add a new classpath entry with the full path to Notes.jar.

  3. Make sure that your domino directorey is on the path when starting wsad, so it can locate nlsxbe.dll

Hope that helps!