I have a service that can make SAP RFC requests to some server. Assume that I can not modify this service, but need to handle such requests and process their data. So I want to develop my own server that will process RFC requests, I prefer Python but can do it with C++ too.
I read that it should be possible to do with PyRFC https://sap.github.io/PyRFC/server.html#server-server
but there are "gateway parameters" and I don't know what I should use here, and in my concept I do not need SAP Gateway here, I just want to process requests in my standalone server.
Is it possible to develop own standalone server for processing RFC requests with Pyhton or C++? Or it can be used only with SAP Gateway? In this case what I need to do in SAP Gateway side?