Mono does not currently support WSHttpBinding, it is a work in progress, and the support is very spotty.
You can use plain SOAP over HTTPS (the web services stack from .NET 1.0 and .NET 2.0).
But since you are just getting started, you might as well use REST services with JSon or XML return values. Many folks are now using Json as the lingua-franca for this kind of connections, as it has the added advantage that you can use the same bridge to create HTML based apps as the Json output can be fed directly into your javascript on browsers.
For the server, you can use something like ServiceStack:
http://www.servicestack.net
For the client, you can either parse the Json manually using System.Json which is a very low-level and barebones stack, or you can use something like Newtonsoft's Json parser that comes with a full deserializer and object mapper.