I have to following code:
BasicHttpBinding binding = new BasicHttpBinding ();
Uri baseAddress = new Uri ("URL.svc");
EndpointAddress endpointAddress = new EndpointAddress (baseAddress);
var myChannelFactory = new ChannelFactory<IMyInterface> (binding, endpointAddress);
IMyInterface client = null;
try
{
    client = myChannelFactory.CreateChannel ();
    var a = client.WsFunction ("XXXXXX");                    
    ((ICommunicationObject)client).Close ();
}
catch
{
    if (client != null)
    {
        ((ICommunicationObject)client).Abort ();
    }
}
Where "IMyInterface" is the interface that my WS implements.. for example:
[ServiceContract]
public interface IMyInterface
{
    [OperationContract]
    Result WsFunction1 (string param);
    [OperationContract]
    Result WsFunction2 (string param);
    [OperationContract]
    Result WsFunction3 (string param);
}
And it returns something like this:
[DataContract]
public class Result
{
    string a = "";
    string b = "";
    [DataMember]
    public string A
    {
        get { return a; }
        set { a = value; }
    }
    [DataMember]
    public string B
    {
        get { return b; }
        set { b = value; }
    }
}
When I run this code, I can reach the WS, but I can never get the Result filled out.
What am I doing wrong?
Thanks in advance!