-
Go to
www.webspellchecker.net .
-
Follow the instructions to license, download, and install the WebSpellChecker.
You need to download the sproxy_java.rar file, located at http://wiki.webspellchecker.net/doku.php?id=installationandconfiguration:sproxy.
The installation instructions include information about embedding WSC/SCAYT (WebSpellChecker/Spell Check As You Type) in the app.
You do not need to perform this task; the Collaboration and Approvals applications take care of this step.
- Unzip
sproxy_java.rar into the <webapp>/WEB-INF/lib directory. - Copy the
sproxy.ini file from the installed directory of the spell checker ([Installed Directory\WebComponents\Proxy] ) to the WEB-INF directory. -
Add these lines to the
web.xml file:
<servlet>
<servlet-name>SpellChecker</servlet-name>
<servlet-class>net.spellchecker.sproxy.SProxy</servlet-class>
<init-parm>
<param-name>sproxyIniPath</param-name>
<param-value>./sproxy.ini</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>SpellChecker</servlet-name>
<url-pattern>/SpellChecker</url-pattern>
</servlet-mapping>
- Create or open the text file to contain customized properties for emxSystem.properties. For more information, see Editing Properties Using MQL.
-
Add or edit this line in the file used to import properties into a page object:
emxFramework.spellchecker.URL
-
Set the value of this property as shown:
emxFramework.spellchecker.URL=../SpellChecker?cmd=script&doc=wsc
- When finished updating the text file with all properties you want to modify, including the ones shown here, use the text file to modify the emxSystem.properties page object. For more information, see Editing Properties Using MQL.
|