管理チームと共に、従来の ASP.Net /SOAP Web サービスから ServiceStack への移行を売り込もうとしています。
I am struggling with a some RPC'ish issues. Requirement is that I support SOAP (even backhandedly) in the hope of selling my service consumers on REST.
Take for example a service called "ReplaceItem" which basically requires:
- Close out item number
- Replacement item number
- Store Number
- Bunch of other replacement item data
Should I create a ReplacementItem DTO? It seems to be if I have a number of these type of functions I am just going to have tons of DTOs instead of tons of RPC methods. Plus what is the "id" in this case and what REST method would I be using?
I get that REST/SS gives me basic CRUD functionality for domain level structures like Items/Customers/etc, but how do I handle non-CRUD methods in SS.
特定のサービスの主キーを構成する複数のパラメータにも問題があります。ほとんどすべての在庫テーブルは、アイテム番号と店舗番号で構成されています。サービスクライアントでの複合文字列の作成をダンプしたくありません。どうすればこれを処理できますか?
ありがとう。