65.9K
CodeProject is changing. Read more.
Home

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

emptyStarIconemptyStarIconemptyStarIconemptyStarIconemptyStarIcon

0/5 (0 vote)

Apr 17, 2014

CPOL
viewsIcon

6180

downloadIcon

39

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

  1. Create a simple WCF service which is used to set / get user Name. Check the below code snippet for Iservice1:

  2. Use session object to store the entered user name. Check the below code snippet for "SetUserName" method.

  3. GetUserName method is used to get the entered user name. check the below code snippet.

  4. Create one Silverlight application to enter "User Name". Check the below code snippet.

    Check below code snippet

  5. 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