As a developer that has focused on the real estate and financial industries for most of my career, I can't even express just how good it is to have a standard in place. I have spent many months of my life stringing code to try and pull listing data from uncooperative MLS systems. From the research I have done on RETS it is obvious that its not perfect, but it has to be an improvement.
So here is how the ball got rolling. My client, and Realtor and member of MRED wants a research application that will require running queries on current and closed MLS listings. I instruct her to contact the MLS and acquire RETS access. She has to have her broker fill out a form and send it off, along with a check for $500 (per year). After a few days an email comes from the board with a username, password, login url and a link to http://www.rets.org, and the Center for Realtor Technology (CRT) if we have any questions. I guess there is something to be said for not getting overwhelmed with information.
MRED runs a Variman 1.0 & 1.5 compliant RETS server. The server seems to be the most popular, it is open source and was developed by CRT. A quick browse of the Variman documentation reveals really nothing of value for the client developer, it is all geared toward setting up the server and mapping it to your current database on the MLS side of the equation. Here is am important reality regarding RETS; they have not defined a standardized set of fields that every MLS uses for properties. This is really born of the fact that local MLS systems require very localized fields. There is little use for fields describing the amount of ocean beachfront a property has that is located in central Montana. Each MLS still has their own fields, though there are some standard names. The idea here is that you connect to the RETS server and initally download the METADATA files that describe the data within that MLS. But first we must login...
2 comments:
James,
Google Alert pointed me at this blog thanks to your mention of CRT. I'm glad I found it, as it'll be interesting to see someone new to dealing with RETS.
Out of curiosity, what languages can you call out to from coldfusion? I wouldn't write a RETS client from scratch, if I could avoid it. I seem to remember Java being able to be called out to, so you might want to check out http://code.google.com/p/jrets/
(And of course, there's all the languages that libRETS supports, but I think jrets is the best bet for Java.)
@Keith
Coldfusion 8 can actually call out to both Java and .Net, however many real estate sites are hosted on shared servers where this can be an issue. To be honest, now that I have gotten my head around the RETS metadata I am pretty determined to give this a shot without using a library. I also need to keep this blog updated as I go, and get my code samples looking better.
Post a Comment