1

非常に単純な API を提供し、JSON として記述できるリソースで動作する単純なレジストリを探しています。

私はリソース指向アーキテクチャ (完全に HTTP REST、WS-* の ESB などはなく、すべての通信はネットワーク経由で行われ、ステートレスで、すべてのサービスは何も共有しない) を設計しています。これはすべて JSON をプライマリ データとして使用して対話します。そのため、その SOA レジストリを操作するためだけに XML を使用するのは少し退屈です。

免責事項: 私は WSO2 が大好きで、SOA が提供するものを見て SOA を学びました。私が彼らのレジストリを選択しなかった理由は、私が見たサンプルから、JSON を使用することができないように思われたからです。

4

1 に答える 1

0

I'm not sure I get it. Is the semantics of the JSON you store relevant to the "registry" server at all? Because if not, any JSON storage engine with a REST CRUD API should be OK, like CouchDB, etc. You then do HTTP access control to only allow your service providing entities to add entries about themselves, and clients may only read.

Or should this "registry" actually do something with the data, like periodically actively test service availability and update reachability status? Because that sounds like a separate concern from storage and serving of the data, thus can be a separate component.

于 2012-11-30T10:50:48.970 に答える