How to communicate data between wcf and wpf? [closed] - wpf

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 12 years ago.
How do communicate data between wcf and wpf using entity framework 4, mvvm light?

This question is too broad to answer fully in a single post. Start by going through the tutorials on MSDN
To use publish and consume a WCF service, you need to learn about the following things:
Service Contracts
Data Contracts
Bindings
Hosting a service
Consuming a service
There is plenty of information available on these topics via Google. If you get stuck on any point, post another question and someone should be able to help you.

Related

fetching data from MLS while creating a real estate site [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 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.

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)

MVVM in Silverlight [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.
I know I'm MVVM in WPF I do not know how this Silverlight implementation layered on top tips to help me (I'd Entity Framwork for the model I use)
You will do MVVM same way as you do it in WPF. But since Silverlight runs on client - you can't use EF there. Your choices will be to use RIA Services OR buy something like DevForce. I'm using DevForce and it allows you to write pretty much same LINQ queries on a client.
The MVVM Light Toolkit is a great framework for implementing MVVM in WPF or Silverlight.

Resources