Requirement for Accessing SipServletSnmpTrapRuntimeMBean
In order to obtain a SipServletSnmpTrapRuntimeMBean
, the calling SIP Servlet must be able to perform MBean lookups from the Servlet context. To enable this functionality, you must assign a Converged Application Server administrator role-name
entry to the security-role
and run-as
role elements in the sip.xml deployment descriptor. Example 16-1 shows a sample sip.xml file with the required role elements highlighted.
Example 16-1 Sample Role Requirement in sip.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE sip-app PUBLIC "-//Java Community Process//DTD SIP Application 1.0//EN" "http://www.jcp.org/dtd/sip-app_2_0.dtd"> <sip-app xmlns="http://xmlns.jcp.org/xml/ns/sipservlet" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/sipservlet http://xmlns.jcp.org/xml/ns/sipservlet/sip-app_2_0.xsd" version="2.0"> <display-name>My SIP Servlet</display-name> <distributable/> <servlet> <servlet-name>myservlet</servlet-name> <servlet-class>com.mycompany.MyServlet</servlet-class> <run-as> <role-name>weblogic</role-name> </run-as> </servlet> <servlet-mapping> <servlet-name>myservlet</servlet-name> <pattern> <equal> <var>request.method</var> <value>INVITE</value> </equal> </pattern> </servlet-mapping> <security-role> <role-name>weblogic</role-name> </security-role> </sip-app>