James P.
James P.

Reputation: 19607

Exchanging data between web sites

What is the most practical way of exchanging data between web sites (format, medium, protocol ...) ?

For example say an open-source online game has been designed such that each site where it's installed acts as a separate world. How would you go about transferring the profile of a character between two sites?

Upvotes: 1

Views: 165

Answers (3)

nikunj gandhi
nikunj gandhi

Reputation: 779

I think you can use web service to exchange data between web sites.In web world web service soap is global format which is understand by all web framwork like php,asp,dotnet and other web framworks

Upvotes: 1

JiaoChangyun
JiaoChangyun

Reputation: 9

open-API maybe the bast way. Because your website client is more and more. And send each website a code.check the code in your online game and the request times every day.

Upvotes: 0

Samus_
Samus_

Reputation: 2993

this is a generic question so it probably belongs somewhere else, regardless what you normally do is to provide an API for external non-human clients to communicate, the details of it are completely up to you but the current popular choice is to make a RESTful API and use JSON as the serialization format.

Upvotes: 2

Related Questions