Sending secure files
We send PGP encrypted files to business partners via FTP. We have automated this process within a Java framework. There are some partners, however, that require file transmission via https. They supply us with a host address, a username, password, and a file dropoff directory. We upload the files via a web page and a browse button, after logging in. I have two questions:
1. Is this considered an SSL session?
2. I would like to automate this process. My thought is that I would
write a Java "client", where I would have username and passwordfields,along with the host address. I would transmit the file via an output stream after "logging in".
Is the JSSE the correct API to use in order to implement this
functionality?

