Can we identify if WCF Request is coming from our Silverlight APP or some place else?
views:
72answers:
2
+2
A:
You could possibly declare a [MessageContract] and define a header in there, which your Silverlight app could set to a known, defined value.
Marc
marc_s
2009-04-25 19:57:34
A:
The headers should already have requester info in them, and you should be bale to parse it out and tick up a counter or whatever on the server side. I would think marc_s's suggestion of MessageContract would be the simpler solution however.
tap
2010-04-06 19:50:22