Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Realtime-messaging: Separate server/client applications

    SmartGWT 6.1p

    I'm attempting to use Realtime-messaging to publish a server-side message from an application A, to a client served by application B.

    Would this require instantiating a ISCMessageDispatcher with a custom RequestContext?

    Are there any examples of this?

    #2
    Generally this kind of thing would be done via JMS - that’s precisely what it’s for, essentially a “message bus” where multiple applications can publish/subscribe messages.

    Since we have built-in support for JMS, you would not need to write any custom server code, just configure a JMS system.

    Comment


      #3
      How about WebSockets? Would MessagingWebSocketEndpoint be able to publish from one application to another?

      Any examples of this?

      Comment


        #4
        No, that’s just a transport from the browser to the server. You would still go through JMS to shuttle data between different applications.

        Comment

        Working...
        X