Security (link under construction)
Using JSON - how do you implement a logon?What are the licensing issues?
For password authenticated web applications it is possible by following these steps:
- All brokers effectively have Parameter UseSession = 1;
- REST web application and client web application allow only authenticated (i.e. password) access.
- REST web application and client web application have reasonable Session timeout (i.e. 900, 3600).
- REST web application and client web application have the same GroupById value.
- REST web application and client web application have the same cookie path.
If all these conditions are met, user would only consume one license slot per session and perform only one login.
How do you prevent users hacking restful calls that they have no access to?
Authentication as a start, SQL security for basic data access checks, app-level checks for the most specific cases
- Log in to post comments