¡@

Home 

2014/10/16 ¤W¤È 08:18:02

android Programming Glossary: loginservice

How to Consume WCF Service with Android

http://stackoverflow.com/questions/669764/how-to-consume-wcf-service-with-android

login service ServiceContract Namespace http mycompany.com LoginService public interface ILoginService OperationContract string Login.. http mycompany.com LoginService public interface ILoginService OperationContract string Login string username string password.. of the service could look like this public class LoginService ILoginService public string Login string username string password..

How to Consume WCF Service with Android

http://stackoverflow.com/questions/669764/how-to-consume-wcf-service-with-android

ServiceContract OperationContract might look like for your login service ServiceContract Namespace http mycompany.com LoginService public interface ILoginService OperationContract string Login string username string password The implementation of the.. might look like for your login service ServiceContract Namespace http mycompany.com LoginService public interface ILoginService OperationContract string Login string username string password The implementation of the service could look like this public.. string Login string username string password The implementation of the service could look like this public class LoginService ILoginService public string Login string username string password Do something with username password to get create sessionId..