Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two users: user & admin. When the user adds a new record, I want to display a growl message in the admin screen if the admin is logged in.

Is it possible? If so, how can I achieve this? Is JMS a possible solution?

share|improve this question
3  
communication between users can be done using push primefaces.org/showcase-labs/push/index.jsf – Daniel Aug 28 '12 at 5:37

1 Answer

You can modify the private chat component into your case

http://www.primefaces.org/showcase-labs/push/chat.jsf

Once, anybody logs in to your system. you register user to the system.

public void login() {  
        RequestContext requestContext = RequestContext.getCurrentInstance();  

        if(users.contains(username)) {  
            loggedIn = false;  
            FacesContext.getCurrentInstance().addMessage(null, new FacesMessage(FacesMessage.SEVERITY_ERROR, "Username taken", "Try with another username."));  

            requestContext.update("growl");  
        }  
        else {  
            users.addUser(username);  
            pushContext.push(CHANNEL, username + " joined the channel.");  
            requestContext.execute("subscriber.connect('/" + username + "')");  
            loggedIn = true;  
        }  
    }

you can send message to individual client by sending push notifications.

public void sendPrivate() {  
        pushContext.push(CHANNEL + privateUser, "[PM] " + username + ": " + privateMessage);  

        privateMessage = null;  
    }  

Then handle the coming message

<p:socket onMessage="handleMessage" channel="/chat" autoConnect="false" widgetVar="subscriber"/>  

<script type="text/javascript">  
    function handleMessage(data) {  
        var chatContent = $(PrimeFaces.escapeClientId('form:public'));  
        chatContent.append(data + '<br />');  

        //keep scroll  
        chatContent.scrollTop(chatContent.height());  
    }  
</script>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.