Skip to main content
Home Forums Silverlight Programming Programming with .NET - General what's the logging solution for silverlight application?
1 replies. Latest Post by TomGiam on March 25, 2009.
(0)
kent.zhou
Member
109 points
397 Posts
03-25-2009 3:25 PM |
As silverlight is running on client side, the place for logging data is a problem. Possible places logging data:
Hosting web server (customized file or event log or web log)?
Web service(data source identified by web services)?
local client (client machine)?
What's the logging solution for silverlight application?
TomGiam
Participant
788 points
220 Posts
03-25-2009 8:37 PM |
Your options are:
1. Server via WCF (can be host server or other server as long as crossdomain.xml on that server permits it). I use WebClient (POST) in Silverlight and PHP on server.
2. Local machine using Isolated storage (up to 1MB)
Tom