We are not able to access
http://www.keyoti.com through application.
We are getting the below error in console.
AEWebform.jsp:9:5: No tag library could be found with this URI. Possible causes could be that the URI is incorrect, or that there were errors during parsing of the .tld file
<%@ taglib uri="http://www.keyoti.com/" prefix="RapidSpellWeb" %>
Kindly help us to resolve the same. We have added all changes adviced in user guide pdf file.
//////////////////////////////////////////////
1. To use RapidSpell Web, you must add the RapidSpellWeb.jar and RapidSpellMDict.jar files to the
lib directory of your web application.
2. To use the inline spell checker tags (RapidSpellWInline, RapidSpellWInlineTextBox and
RapidSpellWInlineHelper), you must register a Servlet in your web.xml file. To do this;
i) Open web.xml under /web-inf
ii) Add this block (if other <servlet> sections exist, add it directly below them)
<servlet>
<description>Handles requests for RapidSpell Web</description>
<servlet-name>RapidSpellWebHandlerServlet</servlet-name>
<servlet-class>com.keyoti.rapidSpell.web.ControlServlet</servlet-class>
<init-param>
<param-name>licenseKey</param-name>
<param-value></param-value>
</init-param>
</servlet>
iii) Add this block below it (if other <servlet-mapping> sections exist, add it directly below them)
<servlet-mapping>
<servlet-name>RapidSpellWebHandlerServlet</servlet-name>
<url-pattern>*.rapidspellweb</url-pattern>
</servlet-mapping>
iv) For an example of a complete web.xml file with this, please see the demo application included with
the product.
3. Add the taglib directive to the top of each page using the tags.
<%@ taglib uri="http://www.keyoti.com/" prefix="RapidSpellWeb" %>
///////////////////////////////////////////////////////