Below are the sipservlet-console and Ant commands for activating a SIP Servlet application

Note After installation, a SIP Servlet application must be activated before it will begin processing SIP messages. You activate an application by activating its SLEE service, with Rhino’s activateservice command.

Console

Syntax

activateservice <service-id>

Example

activateservice name=myservlet,vendor=abc,version=1

Ant

Syntax

<activateservice>
  <component name="..." vendor="..." version="..."/>
</activateservice>

or, using the servlet application name instead of the ServiceID:

<sipservlet:activate appname="..."/>

Example

<slee-management>
  <activateservice>
    <component name="${myservlet.service.name}" vendor="${myservlet.service.vendor}" version="${myservlet.service.version}"/>
  </activateservice>
</slee-management>

or

<sipservlet:activate appname="${myservlet.app.name}"/>
Previous page Next page