Hi I wanted to know if it is possible to run JSP scripts that are kept on a backend server through an Android App. Basically the user would log in which would give him access to this JSP script he could enter some values like Server X and Option Y press a button that says “Update” in the android app which would pass the selected values to the server and then run the JSP script on the server side to perfrom an update on some backend servers. I havent seen many resources on this kind of stuff in Android does anyone have any examples? Thanks!
Share
Not entirely sure I understand what you’re trying to achieve, but if you’re asking whether you can send a request over HTTP to a JSP, then yes you can. There are plenty of tips out there; try this one:
Android Snippets: Executing a HTTP POST Request with HttpClient