sending credit card number over ssl

just need to know the best way to send a credit card number to a servlet securely

is it possible to set up an ssl connection with a servlet from a browser and then post a credit card number to that servlet or do you have to have some source code on the client side with an applet or jsp tag

if anyone knows any links explaining how to do the above or some sample code

i'd appreciate it

thanks

[429 byte] By [kevincrowleya] at [2007-9-19]
# 1
SSL will work fine. .jsp/servlet/html page over https:// protocol. Submit the <form> using the method=POST. That will "hide" the data in the request. Then process the credit card on the server.-Ryan
ryanbarra at 2007-7-8 > top of java,Security,Java Secure Socket Extension (JSSE)...
# 2
ssl trafic is not monitored by most firewalls, so I am not sure
marine11a at 2007-7-8 > top of java,Security,Java Secure Socket Extension (JSSE)...