<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>Custom Notifications implementation issue</title>
  <link rel="self" href="https://liferay.dev/c/message_boards/find_thread?p_l_id=119785294&amp;threadId=114774160" />
  <subtitle>Custom Notifications implementation issue</subtitle>
  <id>https://liferay.dev/c/message_boards/find_thread?p_l_id=119785294&amp;threadId=114774160</id>
  <updated>2026-04-05T22:05:48Z</updated>
  <dc:date>2026-04-05T22:05:48Z</dc:date>
  <entry>
    <title>RE: Custom Notifications implementation issue</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=114774877" />
    <author>
      <name>Rajesh Chaurasia</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=114774877</id>
    <updated>2019-08-18T05:46:09Z</updated>
    <published>2019-08-18T05:46:09Z</published>
    <summary type="html">I fixed the issue by adding the entry for my custom notification handler in liferay-portlet.xml as &amp;lt;user-notification-handler-class&amp;gt;com.abc.ticket.notifications.SendNotificationToUserHandler&amp;lt;/user-notification-handler-class&amp;gt;</summary>
    <dc:creator>Rajesh Chaurasia</dc:creator>
    <dc:date>2019-08-18T05:46:09Z</dc:date>
  </entry>
  <entry>
    <title>Custom Notifications implementation issue</title>
    <link rel="alternate" href="https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=114774159" />
    <author>
      <name>Rajesh Chaurasia</name>
    </author>
    <id>https://liferay.dev/c/message_boards/find_message?p_l_id=119785294&amp;messageId=114774159</id>
    <updated>2019-08-17T13:53:25Z</updated>
    <published>2019-08-17T13:53:25Z</published>
    <summary type="html">Custom notification generation:&lt;br /&gt;----------------------------------&lt;br /&gt;private void doNotifyForApprover(ResourceRequest resourceRequest,User user,Ticket tkt) throws PortalException {&lt;br /&gt;		 com.liferay.portal.kernel.json.JSONObject payloadJson = JSONFactoryUtil.createJSONObject();&lt;br /&gt;		 payloadJson.put(&amp;#34;notificationText&amp;#34;, &amp;#34;Outage Scenario&amp;#34;);&lt;br /&gt;		 payloadJson.put(&amp;#34;senderName&amp;#34;, user.getFullName());&lt;br /&gt;		 payloadJson.put(&amp;#34;notificationBody&amp;#34;, tkt.getDescription());		 &lt;br /&gt;		 ServiceContext serviceContext = ServiceContextThreadLocal.getServiceContext();&lt;br /&gt;		 UserNotificationEventLocalServiceUtil.addUserNotificationEvent(user.getUserId(),  SendNotificationToUserHandler.PORTLET_ID, new Date().getTime(), UserNotificationDeliveryConstants.TYPE_WEBSITE, user.getUserId(), payloadJson.toJSONString(), false, serviceContext);   &lt;br /&gt;	}&lt;br /&gt;	&lt;br /&gt;	Custom Notification handler&lt;br /&gt;	----------------------------&lt;br /&gt;	&lt;br /&gt;	@Component(service = UserNotificationHandler.class)&lt;br /&gt;public class SendNotificationToUserHandler extends BaseUserNotificationHandler {&lt;br /&gt;	public static String PORTLET_ID = &amp;#34;cnh-custom-notification&amp;#34;;&lt;br /&gt;&lt;br /&gt;	public SendNotificationToUserHandler() {&lt;br /&gt;		setPortletId(PORTLET_ID);&lt;br /&gt;	}&lt;br /&gt;&lt;br /&gt;	@Override&lt;br /&gt;	protected String getBody(UserNotificationEvent userNotificationEvent, ServiceContext serviceContext)&lt;br /&gt;			throws Exception {&lt;br /&gt;		JSONObject jsonObject = JSONFactoryUtil.createJSONObject(userNotificationEvent.getPayload());&lt;br /&gt;		String notificationText = jsonObject.getString(&amp;#34;notificationBody&amp;#34;);&lt;br /&gt;		String title = jsonObject.getString(&amp;#34;notificationText&amp;#34;);&lt;br /&gt;		String senderName = jsonObject.getString(&amp;#34;senderName&amp;#34;);&lt;br /&gt;		&lt;br /&gt;		String body = StringUtil.replace(getBodyTemplate(),&lt;br /&gt;				new String[] { &amp;#34;[$TITLE$]&amp;#34;, &amp;#34;[$SENDER_NAME$]&amp;#34;, &amp;#34;[$NOTIFICATION_TEXT$]&amp;#34; },&lt;br /&gt;				new String[] { title, senderName, notificationText });&lt;br /&gt;&lt;br /&gt;		return body;&lt;br /&gt;	}&lt;br /&gt;&lt;br /&gt;	protected String getBodyTemplate() throws Exception {&lt;br /&gt;		StringBuilder htmlResponse = new StringBuilder(5);&lt;br /&gt;		htmlResponse.append(&amp;#34;&amp;lt;div class=\&amp;#34;title\&amp;#34;&amp;gt;&amp;lt;h6&amp;gt;[$TITLE$](&amp;lt;i&amp;gt;[$SENDER_NAME$]&amp;lt;/i&amp;gt;)&amp;lt;/h6&amp;gt;&amp;lt;div&amp;gt;&amp;lt;div &amp;#34;);&lt;br /&gt;		htmlResponse.append(&amp;#34;class=\&amp;#34;body\&amp;#34;&amp;gt;&amp;lt;br&amp;gt;&amp;lt;p&amp;gt;[$NOTIFICATION_TEXT$]&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt; &amp;#34;);&lt;br /&gt;		return htmlResponse.toString();&lt;br /&gt;	}&lt;br /&gt;	&lt;br /&gt;	When i add a notifivcation it is showing notification in dockbar but when i visit the notifications in notifications dashboard i am getting the below error,&lt;br /&gt;	Its might be that i am missing some step ..&lt;br /&gt;	&lt;br /&gt;	&lt;br /&gt;	2019-08-17 13:44:27.591 ERROR [http-nio-8080-exec-5][PortletRequestDispatcherImpl:303] Unable to dispatch request: java.lang.NullPointerException&lt;br /&gt;2019-08-17 13:44:27.594 ERROR [http-nio-8080-exec-5][PortletServlet:119] javax.portlet.PortletException: org.apache.jasper.JasperException: java.lang.NullPointerException&lt;br /&gt;javax.portlet.PortletException: org.apache.jasper.JasperException: java.lang.NullPointerException&lt;br /&gt;	at com.liferay.portlet.internal.PortletRequestDispatcherImpl.dispatch(PortletRequestDispatcherImpl.java:305)&lt;br /&gt;	at com.liferay.portlet.internal.PortletRequestDispatcherImpl.include(PortletRequestDispatcherImpl.java:123)&lt;br /&gt;	at com.liferay.portal.kernel.portlet.bridges.mvc.MVCPortlet.include(MVCPortlet.java:578)&lt;br /&gt;	at com.liferay.portal.kernel.portlet.bridges.mvc.MVCPortlet.include(MVCPortlet.java:594)&lt;br /&gt;	at com.liferay.portal.kernel.portlet.bridges.mvc.MVCPortlet.doView(MVCPortlet.java:160)&lt;br /&gt;	at com.liferay.portal.kernel.portlet.LiferayPortlet.doDispatch(LiferayPortlet.java:303)&lt;br /&gt;	at com.liferay.portal.kernel.portlet.bridges.mvc.MVCPortlet.doDispatch(MVCPortlet.java:478)&lt;br /&gt;	at javax.portlet.GenericPortlet.render(GenericPortlet.java:291)&lt;br /&gt;	at com.liferay.portal.kernel.portlet.bridges.mvc.MVCPortlet.render(MVCPortlet.java:302)&lt;br /&gt;	at com.liferay.portlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:127)&lt;br /&gt;	at com.liferay.portlet.ScriptDataPortletFilter.doFilter(ScriptDataPortletFilter.java:58)&lt;br /&gt;	at com.liferay.portlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:124)&lt;br /&gt;	at com.liferay.portal.kernel.portlet.PortletFilterUtil.doFilter(PortletFilterUtil.java:71)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.PortletServlet.service(PortletServlet.java:115)&lt;br /&gt;	at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)&lt;br /&gt;	at org.eclipse.equinox.http.servlet.internal.registration.EndpointRegistration.service(EndpointRegistration.java:153)&lt;br /&gt;	at org.eclipse.equinox.http.servlet.internal.servlet.ResponseStateHandler.processRequest(ResponseStateHandler.java:62)&lt;br /&gt;	at org.eclipse.equinox.http.servlet.internal.context.DispatchTargets.doDispatch(DispatchTargets.java:120)&lt;br /&gt;	at org.eclipse.equinox.http.servlet.internal.servlet.RequestDispatcherAdaptor.include(RequestDispatcherAdaptor.java:48)&lt;br /&gt;	at com.liferay.portlet.internal.InvokerPortletImpl.invoke(InvokerPortletImpl.java:573)&lt;br /&gt;	at com.liferay.portlet.internal.InvokerPortletImpl.invokeRender(InvokerPortletImpl.java:670)&lt;br /&gt;	at com.liferay.portlet.internal.InvokerPortletImpl.render(InvokerPortletImpl.java:362)&lt;br /&gt;	at com.liferay.portal.monitoring.internal.portlet.MonitoringInvokerPortlet.lambda$render$0(MonitoringInvokerPortlet.java:280)&lt;br /&gt;	at com.liferay.portal.monitoring.internal.portlet.MonitoringInvokerPortlet._render(MonitoringInvokerPortlet.java:383)&lt;br /&gt;	at com.liferay.portal.monitoring.internal.portlet.MonitoringInvokerPortlet.render(MonitoringInvokerPortlet.java:278)&lt;br /&gt;	at org.apache.jsp.html.portal.render_005fportlet_jsp._jspService(Unknown Source)&lt;br /&gt;	at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)&lt;br /&gt;	at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)&lt;br /&gt;	at com.liferay.portal.servlet.DirectRequestDispatcher.include(DirectRequestDispatcher.java:64)&lt;br /&gt;	at com.liferay.portal.servlet.DirectRequestDispatcherFactoryImpl$IndirectRequestDispatcher.include(DirectRequestDispatcherFactoryImpl.java:202)&lt;br /&gt;	at com.liferay.portal.servlet.ClassLoaderRequestDispatcherWrapper.doDispatch(ClassLoaderRequestDispatcherWrapper.java:79)&lt;br /&gt;	at com.liferay.portal.servlet.ClassLoaderRequestDispatcherWrapper.include(ClassLoaderRequestDispatcherWrapper.java:53)&lt;br /&gt;	at com.liferay.portal.servlet.TransferHeadersHelperImpl$TransferHeadersRequestDispatcher.include(TransferHeadersHelperImpl.java:162)&lt;br /&gt;	at com.liferay.portlet.internal.PortletContainerImpl._render(PortletContainerImpl.java:918)&lt;br /&gt;	at com.liferay.portlet.internal.PortletContainerImpl.lambda$render$2(PortletContainerImpl.java:226)&lt;br /&gt;	at com.liferay.portlet.internal.PortletContainerImpl._preserveGroupIds(PortletContainerImpl.java:427)&lt;br /&gt;	at com.liferay.portlet.internal.PortletContainerImpl.render(PortletContainerImpl.java:214)&lt;br /&gt;	at com.liferay.portlet.SecurityPortletContainerWrapper.render(SecurityPortletContainerWrapper.java:147)&lt;br /&gt;	at com.liferay.portlet.RestrictPortletContainerWrapper.lambda$render$0(RestrictPortletContainerWrapper.java:131)&lt;br /&gt;	at com.liferay.portlet.RestrictPortletContainerWrapper._render(RestrictPortletContainerWrapper.java:192)&lt;br /&gt;	at com.liferay.portlet.RestrictPortletContainerWrapper.render(RestrictPortletContainerWrapper.java:129)&lt;br /&gt;	at com.liferay.portal.kernel.portlet.PortletContainerUtil.render(PortletContainerUtil.java:215)&lt;br /&gt;	at com.liferay.portal.layoutconfiguration.util.PortletRenderer._render(PortletRenderer.java:209)&lt;br /&gt;	at com.liferay.portal.layoutconfiguration.util.PortletRenderer.render(PortletRenderer.java:87)&lt;br /&gt;	at com.liferay.portal.layoutconfiguration.util.RuntimePageImpl.doProcessTemplate(RuntimePageImpl.java:593)&lt;br /&gt;	at com.liferay.portal.layoutconfiguration.util.RuntimePageImpl.doDispatch(RuntimePageImpl.java:359)&lt;br /&gt;	at com.liferay.portal.layoutconfiguration.util.RuntimePageImpl.processTemplate(RuntimePageImpl.java:160)&lt;br /&gt;	at com.liferay.portal.layoutconfiguration.util.RuntimePageImpl.processTemplate(RuntimePageImpl.java:185)&lt;br /&gt;	at com.liferay.portal.kernel.layoutconfiguration.util.RuntimePageUtil.processTemplate(RuntimePageUtil.java:105)&lt;br /&gt;	at org.apache.jsp.html.portal.layout.view.portlet_jsp._jspService(Unknown Source)&lt;br /&gt;	at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)&lt;br /&gt;	at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)&lt;br /&gt;	at com.liferay.portal.servlet.DirectRequestDispatcher.include(DirectRequestDispatcher.java:64)&lt;br /&gt;	at com.liferay.portal.servlet.DirectRequestDispatcherFactoryImpl$IndirectRequestDispatcher.include(DirectRequestDispatcherFactoryImpl.java:202)&lt;br /&gt;	at com.liferay.portal.servlet.ClassLoaderRequestDispatcherWrapper.doDispatch(ClassLoaderRequestDispatcherWrapper.java:79)&lt;br /&gt;	at com.liferay.portal.servlet.ClassLoaderRequestDispatcherWrapper.include(ClassLoaderRequestDispatcherWrapper.java:53)&lt;br /&gt;	at com.liferay.portal.servlet.TransferHeadersHelperImpl$TransferHeadersRequestDispatcher.include(TransferHeadersHelperImpl.java:162)&lt;br /&gt;	at com.liferay.portal.model.impl.LayoutTypeControllerImpl.includeLayoutContent(LayoutTypeControllerImpl.java:171)&lt;br /&gt;	at com.liferay.portal.model.impl.LayoutImpl.includeLayoutContent(LayoutImpl.java:885)&lt;br /&gt;	at com.liferay.portal.action.LayoutAction.processLayout(LayoutAction.java:418)&lt;br /&gt;	at com.liferay.portal.action.LayoutAction.execute(LayoutAction.java:174)&lt;br /&gt;	at com.liferay.portal.struts.PortalRequestProcessor._process(PortalRequestProcessor.java:415)&lt;br /&gt;	at com.liferay.portal.struts.PortalRequestProcessor.process(PortalRequestProcessor.java:155)&lt;br /&gt;	at com.liferay.portal.internal.servlet.MainServlet.doGet(MainServlet.java:203)&lt;br /&gt;	at javax.servlet.http.HttpServlet.service(HttpServlet.java:634)&lt;br /&gt;	at com.liferay.portal.internal.servlet.MainServlet.service(MainServlet.java:639)&lt;br /&gt;	at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)&lt;br /&gt;	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)&lt;br /&gt;	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)&lt;br /&gt;	at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)&lt;br /&gt;	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)&lt;br /&gt;	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:124)&lt;br /&gt;	at com.liferay.portal.servlet.filters.password.modified.PasswordModifiedFilter.processFilter(PasswordModifiedFilter.java:62)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.doFilter(BaseFilter.java:49)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.processDoFilter(InvokerFilterChain.java:215)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:116)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.processFilter(BaseFilter.java:147)&lt;br /&gt;	at com.liferay.portal.servlet.filters.secure.BaseAuthFilter.processFilter(BaseAuthFilter.java:360)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.doFilter(BaseFilter.java:49)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.processDoFilter(InvokerFilterChain.java:215)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:116)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.processFilter(BaseFilter.java:147)&lt;br /&gt;	at com.liferay.portal.monitoring.internal.servlet.filter.MonitoringFilter.processFilter(MonitoringFilter.java:181)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.doFilter(BaseFilter.java:49)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.processDoFilter(InvokerFilterChain.java:215)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:116)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilter.doFilter(InvokerFilter.java:106)&lt;br /&gt;	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)&lt;br /&gt;	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)&lt;br /&gt;	at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:712)&lt;br /&gt;	at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:459)&lt;br /&gt;	at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:384)&lt;br /&gt;	at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:312)&lt;br /&gt;	at com.liferay.friendly.url.internal.servlet.FriendlyURLServlet.service(FriendlyURLServlet.java:398)&lt;br /&gt;	at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)&lt;br /&gt;	at com.liferay.portal.servlet.ServletAdapter.service(ServletAdapter.java:99)&lt;br /&gt;	at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)&lt;br /&gt;	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231)&lt;br /&gt;	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)&lt;br /&gt;	at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53)&lt;br /&gt;	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)&lt;br /&gt;	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:124)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.processFilter(BaseFilter.java:147)&lt;br /&gt;	at com.liferay.portal.servlet.filters.i18n.I18nFilter.processFilter(I18nFilter.java:370)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.doFilter(BaseFilter.java:49)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.processDoFilter(InvokerFilterChain.java:215)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:116)&lt;br /&gt;	at com.liferay.portal.servlet.filters.password.modified.PasswordModifiedFilter.processFilter(PasswordModifiedFilter.java:62)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.doFilter(BaseFilter.java:49)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.processDoFilter(InvokerFilterChain.java:215)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:116)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.processFilter(BaseFilter.java:147)&lt;br /&gt;	at com.liferay.portal.servlet.filters.secure.BaseAuthFilter.processFilter(BaseAuthFilter.java:360)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.doFilter(BaseFilter.java:49)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.processDoFilter(InvokerFilterChain.java:215)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:116)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.processFilter(BaseFilter.java:147)&lt;br /&gt;	at com.liferay.portal.servlet.filters.autologin.AutoLoginFilter.processFilter(AutoLoginFilter.java:266)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.doFilter(BaseFilter.java:49)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.processDoFilter(InvokerFilterChain.java:215)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:116)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.processFilter(BaseFilter.java:147)&lt;br /&gt;	at com.liferay.portal.sharepoint.SharepointFilter.processFilter(SharepointFilter.java:88)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.doFilter(BaseFilter.java:49)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.processDoFilter(InvokerFilterChain.java:215)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:116)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.processFilter(BaseFilter.java:147)&lt;br /&gt;	at com.liferay.portal.servlet.filters.virtualhost.VirtualHostFilter.processFilter(VirtualHostFilter.java:266)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.doFilter(BaseFilter.java:49)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.processDoFilter(InvokerFilterChain.java:215)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:116)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.processFilter(BaseFilter.java:147)&lt;br /&gt;	at com.liferay.portal.monitoring.internal.servlet.filter.MonitoringFilter.processFilter(MonitoringFilter.java:181)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.doFilter(BaseFilter.java:49)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.processDoFilter(InvokerFilterChain.java:215)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:116)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.processDirectCallFilter(InvokerFilterChain.java:196)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:99)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.processDirectCallFilter(InvokerFilterChain.java:196)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:99)&lt;br /&gt;	at org.tuckey.web.filters.urlrewrite.RuleChain.handleRewrite(RuleChain.java:176)&lt;br /&gt;	at org.tuckey.web.filters.urlrewrite.RuleChain.doRules(RuleChain.java:145)&lt;br /&gt;	at org.tuckey.web.filters.urlrewrite.UrlRewriter.processRequest(UrlRewriter.java:92)&lt;br /&gt;	at org.tuckey.web.filters.urlrewrite.UrlRewriteFilter.doFilter(UrlRewriteFilter.java:389)&lt;br /&gt;	at com.liferay.portal.servlet.filters.urlrewrite.UrlRewriteFilter.processFilter(UrlRewriteFilter.java:65)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.BaseFilter.doFilter(BaseFilter.java:49)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.processDoFilter(InvokerFilterChain.java:215)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:116)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.processDirectCallFilter(InvokerFilterChain.java:175)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:99)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.processDirectCallFilter(InvokerFilterChain.java:175)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:99)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.processDirectCallFilter(InvokerFilterChain.java:196)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilterChain.doFilter(InvokerFilterChain.java:99)&lt;br /&gt;	at com.liferay.portal.kernel.servlet.filters.invoker.InvokerFilter.doFilter(InvokerFilter.java:106)&lt;br /&gt;	at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193)&lt;br /&gt;	at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166)&lt;br /&gt;	at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:200)&lt;br /&gt;	at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96)&lt;br /&gt;	at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:490)&lt;br /&gt;	at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:139)&lt;br /&gt;	at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92)&lt;br /&gt;	at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74)&lt;br /&gt;	at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343)&lt;br /&gt;	at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:408)&lt;br /&gt;	at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66)&lt;br /&gt;	at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:834)&lt;br /&gt;	at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1415)&lt;br /&gt;	at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)&lt;br /&gt;	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)&lt;br /&gt;	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)&lt;br /&gt;	at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)&lt;br /&gt;	at java.lang.Thread.run(Thread.java:748)&lt;br /&gt;Caused by: org.apache.jasper.JasperException: java.lang.NullPointerException&lt;br /&gt;	at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:440)&lt;br /&gt;	at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:473)&lt;br /&gt;	at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:377)&lt;br /&gt;	at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)&lt;br /&gt;	at com.liferay.portal.osgi.web.servlet.jsp.compiler.internal.JspServlet.service(JspServlet.java:319)&lt;br /&gt;	at com.liferay.portal.osgi.web.servlet.jsp.compiler.internal.JspServlet.service(JspServlet.java:330)&lt;br /&gt;	at org.eclipse.equinox.http.servlet.internal.registration.EndpointRegistration.service(EndpointRegistration.java:153)&lt;br /&gt;	at org.eclipse.equinox.http.servlet.internal.servlet.ResponseStateHandler.processRequest(ResponseStateHandler.java:62)&lt;br /&gt;	at org.eclipse.equinox.http.servlet.internal.context.DispatchTargets.doDispatch(DispatchTargets.java:120)&lt;br /&gt;	at org.eclipse.equinox.http.servlet.internal.servlet.RequestDispatcherAdaptor.include(RequestDispatcherAdaptor.java:48)&lt;br /&gt;	at com.liferay.portlet.internal.PortletRequestDispatcherImpl.dispatch(PortletRequestDispatcherImpl.java:290)&lt;br /&gt;	... 174 more&lt;br /&gt;Caused by: java.lang.NullPointerException&lt;br /&gt;	at org.apache.jsp.notifications.view_jsp._jspService(view_jsp.java:611)&lt;br /&gt;	at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:111)&lt;br /&gt;	at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)&lt;br /&gt;	at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:411)&lt;br /&gt;	... 184 more&lt;br /&gt;2019-08-17 13:44:27.597 ERROR [http-nio-8080-exec-5][render_portlet_jsp:131] null&lt;br /&gt;java.lang.NullPointerException&lt;br /&gt;	at org.apache.jsp.notifications.view_jsp._jspService(view_jsp.java:611)&lt;br /&gt;	at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:111)&lt;br /&gt;	at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)&lt;br /&gt;	at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:411)&lt;br /&gt;	at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:473)&lt;br /&gt;	at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:377)&lt;br /&gt;	at javax.servlet.http.HttpServlet.service(HttpServlet.java:741)&lt;br /&gt;	at com.liferay.portal.osgi.web.servlet.jsp.compiler.internal.JspServlet.service(JspServlet.java:319)&lt;br /&gt;	at com.liferay.portal.osgi.web.servlet.jsp.compiler.internal.JspServlet.service(JspServlet.java:330)&lt;br /&gt;	at org.eclipse.equinox.http.servlet.internal.registration.EndpointRegistration.service(EndpointRegistration.java:153)&lt;br /&gt;	at org.eclipse.equinox.http.servlet.internal.servlet.ResponseStateHandler.processRequest(ResponseStateHandler.java:62)&lt;br /&gt;	at org.eclipse.equinox.http.servlet.internal.context.DispatchTargets.doDispatch(DispatchTargets.java:120)&lt;br /&gt;	at org.eclipse.equinox.http.servlet.internal.servlet.RequestDispatcherAdaptor.include(RequestDispatcherAdaptor.java:48)&lt;br /&gt;	at com.liferay.portlet.internal.PortletRequestDispatcherImpl.dispatch(PortletRequestDispatcherImpl.java:290)&lt;br /&gt;	at com.liferay.portlet.internal.PortletRequestDispatcherImpl.include(PortletRequestDispatcherImpl.java:123)&lt;br /&gt;	at com.liferay.portal.kernel.portlet.bridges.mvc.MVCPortlet.include(MVCPortlet.java:578)&lt;br /&gt;	at com.liferay.portal.kernel.portlet.bridges.mvc.MVCPortlet.include(MVCPortlet.java:594)&lt;br /&gt;	at com.liferay.portal.kernel.portlet.bridges.mvc.MVCPortlet.doView(MVCPortlet.java:160)&lt;br /&gt;	at com.liferay.portal.kernel.portlet.LiferayPortlet.doDispatch(LiferayPortlet.java:303)&lt;br /&gt;	at com.liferay.portal.kernel.portlet.bridges.mvc.MVCPortlet.doDispatch(MVCPortlet.java:478)</summary>
    <dc:creator>Rajesh Chaurasia</dc:creator>
    <dc:date>2019-08-17T13:53:25Z</dc:date>
  </entry>
</feed>
