Hello
Is this URl of my rest api to catch events? or it is some internal flash phoner app.
This is your custom URL.
if I remove url of RoomApp and put my rest api url my room aplication does not work.
This is because your URL should pass request to default app to get this working.
1. You have custom URL, i.e. /myApp
2. Default URL is /RoomApp
3. Your custom URL receives HTTP request /myApp/connect
4. You should forward this request to /RoomApp/connect
5. The /RoomApp/connect will reply with 200 OK
6. You should forward this 200 OK response back to WCS
Therefore your custom app should operate as a reverse proxy passing all requests and responses as is to the RoomApp.
Now it is not working because 'connect', 'OnDataEvent' and 'ConnectionStatusEvent' are not enough.
All methods should be implemented and all RoomApp logic should be implemented.
We will check if we can share RoomApp source implementation via Github.
Then your will be able to check the application logic.