I have a typical requirement something like that … I have a oracle tuxedo server with lots of services , now we need to add one microservice layer on that which can talk(In and out) with the tuxedo server , something like a adaptor with can accept call form tuxedo server and can call also to some tuxedo services in REST.
Proposed Design diagram is something like this…
But the problem is that tuxedo server (version 12) , can accept call as REST , but from tuxedo server we did not found any way call our microservices in REST. As per my study tuxedo server can call other services only in its legacy way , with TPC/IP written in C++.
If any one can help me out to implement this design will be highly appreciated …
Solution points
1) Write a adaptor in java , which can accept a tuxedo call from a tuxedo server and can call a tuxedo serve. (call a tuxedo server for services that part is resolved already, sample code in BEA doc , but the other part , accepting a service call from tuxedo in legacy way , we did not found any, is it possible to write something in java for that ? any doc or sample? )
**or**
2) In any way from tuxedo server if can call in REST to our Microservices, replacing the proposed adapter direct call from tuxedo server to different micro-services.(may be written in java or c++ and deployed in existing tuxedo server)
Please let me know if any one suggest any other good approach to achieve this.