I have a web core application running under IIS and xdata server.
Ho can i allow requests to the server only from my application? So for example you will not be able to use the server url in the browser and get the response.
1 Like
That is not technically possible. The server is independent from the web application, any client could access the API server. You should of course protect it by implementing authentication and authorization to it.