CQRS, Commands, Javascript
Posted
by
Tolu
on Stack Overflow
See other posts from Stack Overflow
or by Tolu
Published on 2012-10-22T04:58:37Z
Indexed on
2012/10/22
5:00 UTC
Read the original article
Hit count: 212
I have an architecture where a task-based UI passes commands to a service layer. Now, my intention is to implement the UI in javascript, using KendoUI and the service layer, domain layer etc. in .NET. I'm also looking at future mobile implementations of the client that may use say Java rather than Javascript.
If I define the commands in .NET, I'd like to know how to use them from my Javascript client so the client can communicate the commands appropriately to service layer. Do I have to use something like Apache Thrift for this i.e. to define the commands at both the client and service layer?
© Stack Overflow or respective owner