public ServiceProxyClient(string baseAddress)
            : base(baseAddress)
        {
            if (!string.IsNullOrEmpty(BaseAddress) && !BaseAddress.EndsWith("/"))
            {
                BaseAddress = string.Format("{0}/", BaseAddress);
            }

            this.Format          = "json";
            this.MethodUrlFormat = "{BaseAddress}{Verb}/{ClassName}/{MethodName}.{Format}?{Parameters}{NamedOrNumberd}";
            this.Numbered        = true;
        }