SSL uses crypto as "Mechanical Advantage". Essentially, you are ensuring the authenticity of your certificate by using a trusted root CA to validate that the server is who the server says the server is.
If you use a self signed certificate, this is much worse than just the user having to click through a warning message -- this means that the certificate offers you no protection. Someone who could set up a man in the middle situation, and use their own self signed certificate to pose as your service. Because there is no chain of trust that validates the certificate itself, the client cannot reason about whether or not it is being affected by man in the middle.
Now, you can restore security here by operating your own Root CA. If you do that, then you need a trusted secure channel to convey the root certificate over to your client machines. On the plus side though, a client doesn't need to trust some third party CA like Verisign in order to validate your service.