共有 0 个贴子
没有任何数据可供显示
开源项目社区 | 当前位置 : |
|
www.trustie.net/open_source_projects | 主页 > 开源项目社区 > jrets |
jrets
|
0 | 0 | 25 |
贡献者 | 讨论 | 代码提交 |
Provides java support for the Real Estate Transaction Standard.
This project is a continuation of the CART RETS client. While no releases have been prepared for cart for some time, it has been continually maintained via it's HEAD branch. The HEAD branch was ported into this project.
It is currently in use with ALL major MLS vendors and many minor ones. It also currently connects well with the Avantia Reference implementation and the Variman RETS server.
Quick Start Guide:
RetsSession session = new RetsSession("http://retsserver.com/loginurl");
// login
session.login("username","password");
// metadata
session.getMetadata();
// search
session.search(new SearchRequest("Property","Residential","(ListingStatus=|A)"));
// getobject ALL
session.getObject("Property", "Photo", "MLNUM-10009, "*");
// getobject MAIN
session.getObject("Property", "Photo", "MLNUM-10009, "0");