Python Java Cross communication Servers

399 Views Asked by At
 +-------------------+                     +-------------------+
 |   Wowza           |                     |      Django       |
 |-------------------|                     |-------------------|       +-------------+
 |                   |                     |                   |       |             |
 |                   |                     |                   +------->   Database  |
 |     Java          |                     |      Python       |       |             |
 |                   |                     |                   |       +-------------+
 |                   |   v1,v2             |                   |
 |        A +-------------------------------------> X          |
 |                   |                     |                   |
 |                   |   u1,u2             |                   |
 |        B <-------------------------------------+ Y          |
 |                   |                     |                   |
 |                   |                     |                   |
 |                   |                     |                   |
 |                   |                     |                   |
 +-------------------+                     +-------------------+

Suppose A, B are functions in Wowza server, which is purely in Java. variables v1,v2 are private to function A.

Functions X,Y which are python functions implemented with Django/Twisted server. variables u1,u2 are private to Y. I would like your valuable opinion on solving two problems.

  1. java function "A" executed, I want to run Python function "X" with variables v1,v2 from A.
  2. When Python function "Y" executed, I want to run Java function B with variables u1,u2 from "Y"

A simple example is. When some one play a video via wowza, I want to inform django about that with user's client id. When the administrator generate a django signal, Wowza must know about it and accordingly..

Is it possible with DjangoAMF, JSON-RPC or any other Message protocols? or is it possible with some middleware?

1

There are 1 best solutions below

1
On

Any RPC will be able to solve the above for you. I have not used DjangoAMF so can't comment on that. You can also expose some sort of REST API on both servers for this purpose.