简体   繁体   English

RETS MLS 和 RETS 客户端

[英]RETS MLS and RETS Client

Folks,各位,

I'm going to work on the Real Project with RETS.我将使用 RETS 进行 Real Project。 I've a document to what actually my manager is looking for.我有一份文件说明我的经理实际上正在寻找什么。 But I seriously I don't know how to start with RETS MLS there's so such documentation of it.但我真的不知道如何开始使用 RETS MLS 有这样的文档。

With some R & D, I hardly figure out anything worth.But onething is sure that RETS Client is used to fetch the data from server.then how do we connect to RETS server then?Why there's no such documentation is there.(I really don't know, if there's something)经过一些研发,我几乎找不到任何值得的东西。但是可以肯定的是,RETS Client 用于从服务器获取数据。那么我们如何连接到 RETS 服务器呢?为什么那里没有这样的文档。(我真的不知道,如果有的话)

Now, I'm looking for somebody who could let me know how I can start on this project ?现在,我正在寻找可以让我知道如何开始这个项目的人? I need information regarding RETS CLIENT and Documentations and A checklist thats to building a website.我需要有关 RETS 客户端和文档的信息以及用于构建网站的清单。

Please help me.!!!请帮帮我。!!!

Thanks in Advance.提前致谢。

Update 2019 : RETS has been deprecated, and replaced by RESO Web API : “MLS, brokers and technology partners should put all their effort into converting to the RESO Web API as soon as possible” ( Realtyna article ). 2019 年更新:RETS 已被弃用,取而代之的是RESO Web API :“MLS、经纪人和技术合作伙伴应尽一切努力尽快转换为 RESO Web API”( Realtyna 文章)。 The National Association of Realtors threatened to pull the E&O Insurance of MLSs who don't provide RESO Web API support: “The deadline to implement the RESO Web API was June 30, 2016” ( Vendor Alley article ).全国房地产经纪人协会威胁要取消不提供 RESO Web API 支持的 MLS 的 E&O 保险:“实施 RESO Web API 的截止日期是 2016 年 6 月 30 日”( 供应商胡同文章)。


Here is a general overview of RETS (Real Estate Transaction Standard) with links to documentation to get you started.以下是 RETS(房地产交易标准)的一般概述,其中包含可帮助您入门的文档链接。

RESO (Real Estate Standards Organization) is the organization which develops and maintains RETS. RESO (房地产标准组织)是开发和维护 RETS 的组织。

What is RETS?什么是RET? ( link ) 链接

"The Real Estate Transaction Standard is a common language spoken by systems that handle real estate information, such as multiple listing services." “房地产交易标准是处理房地产信息的系统所使用的通用语言,例如多个上市服务。”

"For software developers and for providers of services like IDX sites, RETS means having to write programs to use only one language, the common language of RETS, in order to work with many different MLS systems." “对于软件开发人员和 IDX 站点等服务提供商而言,RETS 意味着必须编写程序以仅使用一种语言,即 RETS 的通用语言,以便与许多不同的 MLS 系统一起工作。”

The RESO Developer page is a good starting point to developing with RETS. RESO开发人员页面是使用 RETS 进行开发的良好起点。

For a detailed technical documentation on how to work with the RETS protocol, consult the RETS specification documents .有关如何使用 RETS 协议的详细技术文档,请参阅RETS 规范文档

Many open source tools and programming libraries in many languages are available which handle some of the heavy lifting for you with the RETS protocol.可以使用多种语言的许多开源工具和编程库,它们可以为您处理使用 RETS 协议的一些繁重工作。 The RESO Tools page has an extensive list. RESO 工具页面有一个广泛的列表。

DMQL (Data Mining Query Language) is the query language used to filter your RETS search criteria. DMQL(数据挖掘查询语言)是用于过滤您的 RETS 搜索条件的查询语言。

Consider this query: (ListDate=2013-01-01+),(Price=150000-200000),(Status=ACT)考虑这个查询:(ListDate=2013-01-01+),(Price=150000-200000),(Status=ACT)

which retrieves all listings with a Listing Date on or after 01/01/2013, a listing price between $150,000 and $200,000, and a Listing Status of Active.它检索所有上市日期在 2013 年 1 月 1 日或之后、上市价格在 150,000 美元到 200,000 美元之间以及上市状态为 Active 的列表。

A good introduction to DMQL can be found here .可以在这里找到对 DMQL 的很好的介绍。

If you work with PHP, there's also PHRets.如果您使用 PHP,还有 PHRets。 It is a nice and simple library and has a documentation that will help you understand how to get started.它是一个漂亮而简单的库,并有一个文档可以帮助您了解如何开始。 You can find the library here and the documentation here .您可以在此处找到库和在此处找到文档。

If you just go through the wiki step by step, you should be able to establish a connection and send queries to the MLS system.如果你只是一步一步地浏览维基,你应该能够建立连接并向 MLS 系统发送查询。

As to what RETS amd RESO are and where you can find further information, the first answer provides you with that.关于什么是 RETS 和 RESO 以及在哪里可以找到更多信息,第一个答案为您提供。

I've created a CLI to make integration with RETS servers a bit easier that others might find useful.我创建了一个 CLI,使与 RETS 服务器的集成更容易一些,其他人可能会觉得有用。 You can use it for exploring the server and searching metadata.您可以使用它来探索服务器和搜索元数据。

https://github.com/summera/retscli https://github.com/summera/retscli

Hope it is helpful!希望它有帮助!

I recommend using librets .我建议使用librets Here is the developer guide with a number of language examples (c++,c#,java,perl,php,python,ruby).这是包含许多语言示例(c++、c#、java、perl、php、python、ruby)的开发人员指南

I have only used librets to do searches against a RETS server and getting photos, which the above guide covers how to do both of these.我只使用 librets 对 RETS 服务器进行搜索并获取照片,上面的指南涵盖了如何执行这两项操作。

What kinds of thing are you wanting to do with RETS?你想用 RETS 做什么样的事情?

Bridge has a great Java API for RETS. Bridge为RETS提供了一个很棒的Java API。 Check it out here: http://www.big-llc.com/java-rets-library.jsp 请在此处查看: http//www.big-llc.com/java-rets-library.jsp

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM