Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more: , +
hello,
i am developing a wp7 application. i have written a wcf service which returns a bool value
example :
C#
[ServiceContract]
   public interface IService1
   {
       [OperationContract]  
       bool LoginUser(UInt16 mobileNO, string password);
       
       [OperationContract] 
       Dictionary>string, string> GetItemNames(UInt16 mobileNO, string password);
    } 

the LoginUser verifies if user entered password is right and send true/false.
how can i consume this value in my mobile application?

also how can i consume a dictionary in my mobile application?

kindly help me..
thanks in advance
bindu
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900