0

我希望这里有人熟悉称为 RETS 的房地产数据标准。全国房地产经纪人协会提供了一个 dll 用于连接他们的服务,称为 libRETS,但它不像以前那样受到支持,最近的事件促使我们创建自己的作为替代品。出于后勤原因,我们无法在 Core 中执行此操作,而是使用当前的 C#.Net 4.7.2。

连接到 RETS 服务器有 2 或 3 个不同的“安全级别”,方法是从一个 MLS 到下一个 MLS 的每个案例。我们可以成功地连接到那些只需要登录名和密码的人,但对那些还需要所谓的 UserAgent 和 UserAgentPassword 的人来说,这些人必须使用 Md5 加密以某种方式传递。服务器正在返回:

远程服务器返回错误:(401) Unauthorized。

 private WebResponse GetLoginBasicResponse()//*** THIS ONE WORKS ***
    {
        try
        {
            ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
            var request = (HttpWebRequest)WebRequest.Create(new Uri(_cred.loginUri));
            request.Method = "GET";
            request.Headers.Add("RETS-Version", _retsVersion);
            request.Credentials = new NetworkCredential(_login, _password);
            return request.GetResponse();
        }
        catch (Exception ex)
        {
            string ignore = ex.Message;
            return null;
        }
    }
    private WebResponse GetLoginWithUserAgentResponse()//*** THIS ONE DOES NOT WORK ***
    {
        try
        {
           // ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
            var request = (HttpWebRequest)WebRequest.Create(new Uri(_cred.loginUri));
            request.Method = "GET";
            request.Headers.Add("RETS-Version", _retsVersion);

            if (!string.IsNullOrEmpty(_cred.userAgent))
            {
                request.UserAgent = Md5(_cred.userAgent + ":" + _cred.userAgentPassword);
                //request.Headers.Add("RETS-UA-Authorization", "Digest " + Md5(_cred.userAgent + ":" + _cred.userAgentPassword));
            }
            request.Credentials = new NetworkCredential(_login, _password);
            return request.GetResponse();
        }
        catch (Exception ex)
        {
            string ignore = ex.Message;
            return null;
        }
    }
    public string Md5(string input) //*** Borrowed this from from .NET Core Project and presume it works
    {
        // Use input string to calculate MD5 hash
        using (System.Security.Cryptography.MD5 md5 = System.Security.Cryptography.MD5.Create())
        {
            byte[] inputBytes = Encoding.ASCII.GetBytes(input);
            byte[] hashBytes = md5.ComputeHash(inputBytes);

            // Convert the byte array to hexadecimal string
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < hashBytes.Length; i++)
            {
                sb.Append(hashBytes[i].ToString("X2"));
            }
            return sb.ToString();
        }
    }
4

3 回答 3

0

本文档第 20 页描述了如何构建 UA 标头:https ://www.ranww.org/documents/resources/rets_1_8.pdf

您还需要包括其他一些字段。

于 2019-08-24T17:26:12.353 回答
0

我们无法在 .NET 中解决该问题,但在 GitHub 中找到了我们正在使用的 .NET Core 项目。 https://github.com/CrestApps/RetsConnector

此案可结案

于 2019-09-28T13:56:50.043 回答
0

没有看到“标记为答案”的选项。已尝试过 MS Edge 和 Google Chrome

于 2019-10-01T14:53:30.010 回答