Everyone,

I have been developing a web application for some time now and it has become time to put it into production. I have done many uploads to production but as this is the final one I need to implement an SSL connection. I run my own webserver so it has been easy from the point that I have 100% access to the system. At this point I have gotten my 3rd party cert and installed it on the server. I have setup everything to the point that I can bring up my apps login page and see that it is under https://xxx....

The problem is that once I log in I get a server error. I examined the stack trace and it is getting hung up on one of my sql statements. This didn't come up before so I moved the site back to traditional http: and dropped the SSL. After doing so I logged in just fine. Wet back to SSL and got the error again.

What the post comes down to is, what other changes would I need to make in my project to use SSL. Until now it was my understanding that SSL was just a way to verify and encrypt the information between my webserver and the client. With this error it doesn't appear so. What am I missing???