Pass Values from One Silverlight Application to Another Silverlight Application using WCF Service





0/5 (0 vote)
How to pass values from one Silverlight application to another using WCF service
Introduction
This tip shows how to pass values from one Silverlight application to another Silverlight application using WCF service.
Using the Code
- Create a simple WCF service which is used to set / get user Name. Check the below code snippet for
Iservice1
: - Use session object to store the entered user name. Check the below code snippet for "
SetUserName
" method. GetUserName
method is used to get the entered user name. check the below code snippet.- Create one Silverlight application to enter "User Name". Check the below code snippet.
Check below code snippet
- Create another application which is used to get the "User Name" and display it.
Check the below code snippet:
History
- 17th April 2014 - Initial version