I have some basic questions about HTTPS POST using java. I don't have experience in writing SSL connections. I will be using JBoss to deploy. Will sharing my servlet name suffice for the HTTPS request to reach my servlet? How will I process a HTTPS request from my servlet will request.getparameter("param name")
work?. I did some googling and found out that I have to listen to SSL socket. But for different HTTPS request do I have to write different servlet? When I say different its two entirely different request and NOT multiple request of same type? I have been trying to understand this concept for sometime now. But I couldn't do so.
This application is a server-client application. there will be no JSP page involved in. It's just my servlets and java class files.