Difference between revisions of "Custom Servlets"

From PresenceWiki
Jump to: navigation, search
(No difference)

Revision as of 10:09, 8 March 2012

The built in HTTP Server can now run custom Servlets. To enable a custom servlet, add the following to the http.config file under the server entry you would like the servlet to be available for:

        <servlets>
            <servlet classname="com.internationalpresence.faxcom.EasyLinkReceiveServlet" path="/easyLinkReceive">
                <parameter key="parameter1" value="value"/>
                <parameter key="parameter2" value="value"/>
                <parameter key="parameter3" value="value"/>
            </servlet>
        </servlets>