Server Push is described as a
mechanism in which the server initiates a transaction to a client. This mechanism has various interesting
implementations which improve the options for interaction on a website such as counter.
There are various technologies which implement mechanisms to achieve the experience of server push such as
While implementing prime push using Web Sockets, I came across an issues with Tomcat that it is not behaving as required. After long search on Google I found that we need to open socket connection on Tomcat by replacing HTTP 1.1 protocol with
There are various technologies which implement mechanisms to achieve the experience of server push such as
- Native Comet (The WebServer has API for Comet)
- Native WebSockets (The WebServer has API for WebSocket)
- WebSockets
- Long-Polling
- Http Streaming
- JSONP
- Server-Sent Events
While implementing prime push using Web Sockets, I came across an issues with Tomcat that it is not behaving as required. After long search on Google I found that we need to open socket connection on Tomcat by replacing HTTP 1.1 protocol with
org.apache.coyote.http11.Http11NioProtocol
of connector
in the server.xml
file.
Server.xml Configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Connector connectionTimeout="20000" port="8080" protocol="org.apache.coyote.http11.Http11NioProtocol" redirectPort="8443"/> |
Implementation
Web.xml Configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<servlet> | |
<servlet-name>Push Servlet</servlet-name> | |
<servlet-class>org.primefaces.push.PushServlet</servlet-class> | |
<load-on-startup>1</load-on-startup> | |
</servlet> | |
<servlet-mapping> | |
<servlet-name>Push Servlet</servlet-name> | |
<url-pattern>/primepush/*</url-pattern> | |
</servlet-mapping> | |
... | |
... | |
</servlet> |
Maven Dependencies
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependency> | |
<groupId>org.primefaces</groupId> | |
<artifactId>primefaces</artifactId> | |
<version>4.0</version> | |
</dependency> | |
<dependency> | |
<groupId>com.google.code.gson</groupId> | |
<artifactId>gson</artifactId> | |
<version>2.2.4</version> | |
</dependency> | |
<dependency> | |
<groupId>org.atmosphere</groupId> | |
<artifactId>atmosphere-runtime</artifactId> | |
<version>2.0.3</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.commons</groupId> | |
<artifactId>commons-lang3</artifactId> | |
<version>3.1</version> | |
</dependency> | |
<dependency> | |
<groupId>commons-lang</groupId> | |
<artifactId>commons-lang</artifactId> | |
<version>2.6</version> | |
</dependency> | |
<dependency> | |
<groupId>com.sun.faces</groupId> | |
<artifactId>jsf-api</artifactId> | |
<version>2.2.4</version> | |
</dependency> | |
<dependency> | |
<groupId>com.sun.faces</groupId> | |
<artifactId>jsf-impl</artifactId> | |
<version>2.2.4</version> | |
</dependency> |
Counter Bean
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.envista.publicweb; | |
import java.io.Serializable; | |
import javax.faces.bean.ManagedBean; | |
import javax.faces.bean.ViewScoped; | |
import org.primefaces.push.PushContext; | |
import org.primefaces.push.PushContextFactory; | |
@SuppressWarnings("serial") | |
@ManagedBean(name = "globalCounter") | |
@ViewScoped | |
public class GlobalCounterBean implements Serializable { | |
private int count; | |
public int getCount() { | |
return count; | |
} | |
public void setCount(int count) { | |
this.count = count; | |
} | |
public synchronized void increment() { | |
count++; | |
PushContext pushContext = PushContextFactory.getDefault().getPushContext(); | |
pushContext.push("/counter", String.valueOf(count)); | |
} | |
} |
Page.xhtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<ui:composition | |
xmlns="http://www.w3.org/1999/xhtml" | |
xmlns:ui="http://java.sun.com/jsf/facelets" | |
xmlns:h="http://java.sun.com/jsf/html" | |
xmlns:p="http://primefaces.org/ui" | |
xmlns:f="http://java.sun.com/jsf/core" template="/template.xhtml"> | |
<ui:define name="head"> | |
<style type="text/css"> | |
.display { | |
font-size: 36px !important; | |
} | |
</style> | |
<script type="text/javascript"> | |
// | |
<![CDATA[ | |
function handleMessage(data) { | |
$('.display').html(data); | |
} | |
//]]> | |
</script> | |
</ui:define> | |
<ui:define name="content"> | |
<h:form> | |
<h:outputText value="#{globalCounter.count}" styleClass="ui-widget display" /> | |
<br /> | |
<p:commandButton value="Click" actionListener="#{globalCounter.increment}" /> | |
</h:form> | |
<p:socket onMessage="handleMessage" channel="/counter" /> | |
</ui:define> | |
</ui:composition> |
2 Comments
Hi, what can you specify what sort issues you faced while implementing push in tomcat?
ReplyDeleteI cannot seem to make push work in Safari. Did you face this issue?
Eves,
DeleteI was facing issue in opening web socket in the tomcat. I have solved this using Http11NioProtocol protocol in my environment. In case you are facing some other issue let me know, I will try to solve this
Post a Comment