i am doing a client-server Application.The client software is a GUI which is made using SWT.Now my question is “Is JSP a good choice to develop the server side coding?”. Please give some suggestions..
Thanks in Advance.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
JSP is a layer on top of servlets and is intended for writing HTML pages. In a client server application you probably have your own protocol (JSON, XML, binary …). You can communicate via HTTP simply by using a servlet.