My silverlight + ASP.NET MVC application does the following:
1) Silverlight client sends request via HttpWebRequest.
2) ASP.NET MVC connects to a SQL Server database (stored procedure) and gets back XML data It then sends that raw xml to the client (no web services or WCF).
3) Silverlight client receives xml and deserializes it with XmlSerializer class.
4) Deserialized object is manipulated, then serialized and sent back to server.
5) ASP.NET MVC receives xml and directly sends it to Database (stored procedure) where it is shreded and saved to appropriate table(s).
Is this an acceptable architecture? What problem with this approach be? Also, with SL 3 there seems to be an option to use binary XML, however I don't see good information how to use it without WCF. I found WCF to be quite heavy, so deliberately avoid it. For me, ASP.NET MVC based RESTful architecture seems more appealing. The above description may not be RESTful, but I think quite close. Any thoughts are welcome.