is doPost() secure?

Is it advisable to send sensitive parameters via post method and process them in dopost() method..I know get is vulnerable and it has some size limitations..is that the case in post method?
[196 byte] By [Dinesa] at [2007-11-26 19:57:32]
# 1
Sounds like you should have a look at SSL and the HTTPS protocol.~
yawmarka at 2007-7-9 22:52:21 > top of Java-index,Java Essentials,New To Java...
# 2

depends how sensitive they are. POST is more secure than GET as the parameters are not embedded in the URL, but that's not to say they're not there. it's not a 'secure' alternative, as such. think of http GET as a postcard, and POST as a letter in an envelope. that's the difference in terms of security. if you're concerned about security, look into https

georgemca at 2007-7-9 22:52:22 > top of Java-index,Java Essentials,New To Java...
# 3
What if the entire app is running in on a https url?and if am using the POST method still..?
Dinesa at 2007-7-9 22:52:22 > top of Java-index,Java Essentials,New To Java...
# 4
> What if the entire app is running in on a https> url?and if am using the POST method still..?what if it is? I don't know what you're really asking here. POST isn't secure, period
georgemca at 2007-7-9 22:52:22 > top of Java-index,Java Essentials,New To Java...
# 5
> What if the entire app is running in on a https url?I don't understand your question. SSL is used for secure communication on the Internet. What is it you're confused about?~
yawmarka at 2007-7-9 22:52:22 > top of Java-index,Java Essentials,New To Java...
# 6
Thnks for your reply guys..am jus confused
Dinesa at 2007-7-9 22:52:22 > top of Java-index,Java Essentials,New To Java...
# 7
> am jus confusedDo a little research on SSL/HTTPS and let us know if you have any specific questions.Best of luck!~
yawmarka at 2007-7-9 22:52:22 > top of Java-index,Java Essentials,New To Java...