posted 22 years ago
Well, if your web pages use a secure socket (https) to submit the form data, you have to have a server listening on a a secure port then you shouldn't even have to think about the encryption. For example, with bea the defaults are 7001 for regular http requests and 7002 for https requests. The server uses a digital certificate (i.e. verisign) to encrypt/decrypt the data. Basically, once you set up your secure port on your server, the data encryption should be hidden - completely behind the scenes. So if you are having trouble with form data, etc., it's most likely a configuration issue with the server. If you want to know the details on https check out some digital certificate sites. Hope this helps.
Sean