fetching data from MLS while creating a real estate site [closed] - database

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I was doing some analysis for working on creation of a real estate site.
I need to fetch data from www.mls.ca
Now i am not sure on two things:
1. Is it legal to fetch data from that site for commercial purpose.
2. How do i pull the data from the site (i. Do i need to take the data every time and keep updating my db, ii. Do i need to get any db credentials from the mls site), i am a java developer so any hints on that line would be helpful.
Please help me with the process of fetching data from www.mls.ca

I'm not entirely clear what you intend to do, however, Spark looks promising, though. Please provide a specific question, so I can help you further.

Related

Does Mirror API support Node JS..? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I have a service built entirely in Node JS. So, how can I integrate that with Mirror API, say Share Entities..?
I mean, is it as good as parsing just the JSON..?
The easiest way is to use the googleapis package to get access to the "mirror v1" package. See https://github.com/burcu/google-api-nodejs-client for more info on the package and then you can do something like:
var google = require('googleapis');
google.discover('mirror', 'v1' ).execute(function(err,client){
console.log( client );
});
To get the client.mirror object, which will have client.mirror.timeline, client.mirror.subscriptions, etc.
(I'm working on sample code to illustrate this. I'll try to update this answer when it is ready.)
Technically, because Google Glass apps run in the cloud, and everything is done through REST, any server is capable of being a Glass app, no matter were it runs or what language it is.
In other words, yes.

Server design for social app [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am currently designing an app to upload and download files from a server. I want to know what type of server to implement that would be robust enough to handle a lot of data per user and a lot of users.
I realise this is probably a very broad and slightly naive question.
I have done some research I think I have to get a SQL server and create a web service for the database and implement a REST system for interfacing with the service on the device side.
Regards, J
It's not a naive question per se, but you need to provide way more information than that.
If you just like to transfer files: Why not go with the simple, but effective FTP-protocol?

Database Sync on-premise to cloud [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am getting involved in a new world.. database sync. I use SQL Server, and I have one local database and another one in the cloud. I am trying to sync those two databases just by pressing a button.
Does anybody has any experience doing these?
Thanks
Your question is very vague and as such, my answer may seem vague too.
When generally speaking of syncing Local <==> Cloud I have personally been using a third party tool called RedGate SQL Toolbelt. The product is slightly on the pricey side, but the benefits offered are immense! You can easily compare and deploy structure and data changes at the click of a button.
(I have no affiliation to the product)

How to make standalone database application? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
How to make standalone database application like metastock, tradestation etc. ?
They colud handle some what large amount of database and those database files can take one computer to another.
It is possible to read, write or delete data of those database from the application.
Can anybody have any idea of how those applications are working? And what type of database they are?How to develop an database system like this? If you know know anything about it, Please share it. Thaks in advance.
Well, if you're just looking for a standalone db, you could do it in access but I don't know how big you are going to want it to get, so access may be limiting.
MYSQL is also another option (mostly as it's free for the common folk).
look into sqlite. It's very portable. However it can't handle concurrent queries.
http://www.sqlite.org/

how website find them the request come from a browser or from any other [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
how website checked that a request come from a browser or from a programs.
in javascript you may use navigator.userAgent. note that this may vary from browser to browser. a good example how to use it can be found at
quirksmode.
However be aware that you can edit the userAgentString at any time using the appropriate browser, script or code. so no absolute guarantee on the result - but at least a starting point.
cheers,
markus
If you would prefer to use server side code, and presuming you are using .net, the Request.Browser property will provide details of the agent making the request.

Resources