如何在Android上使用WCF服务


79

我正在.NET中创建服务器,并为Android创建客户端应用程序。我想实现一种身份验证方法,该方法将用户名和密码发送到服务器,然后服务器发送回会话字符串。

我对WCF不熟悉,因此非常感谢您的帮助。

在Java中,我编写了以下方法:

private void Login()
{
  HttpClient httpClient = new DefaultHttpClient();
  try
  {
      String url = "http://192.168.1.5:8000/Login?username=test&password=test";

    HttpGet method = new HttpGet( new URI(url) );
    HttpResponse response = httpClient.execute(method);
    if ( response != null )
    {
      Log.i( "login", "received " + getResponse(response.getEntity()) );
    }
    else
    {
      Log.i( "login", "got a null response" );
    }
  } catch (IOException e) {
    Log.e( "error", e.getMessage() );
  } catch (URISyntaxException e) {
    Log.e( "error", e.getMessage() );
  }
}

private String getResponse( HttpEntity entity )
{
  String response = "";

  try
  {
    int length = ( int ) entity.getContentLength();
    StringBuffer sb = new StringBuffer( length );
    InputStreamReader isr = new InputStreamReader( entity.getContent(), "UTF-8" );
    char buff[] = new char[length];
    int cnt;
    while ( ( cnt = isr.read( buff, 0, length - 1 ) ) > 0 )
    {
      sb.append( buff, 0, cnt );
    }

      response = sb.toString();
      isr.close();
  } catch ( IOException ioe ) {
    ioe.printStackTrace();
  }

  return response;
}

但是到目前为止,在服务器方面我还没有发现任何东西。

如果有人能解释如何使用适当的App.config设置和具有适当的[OperationContract]签名的接口来创建适当的方法字符串Login(用户名,字符串密码),以便从客户端读取这两个参数并进行回复,我将非常感谢会话字符串。

谢谢!


2
我希望看到一种使用在Android上序列化的wcf二进制文件的方法。现在那太酷了。
布雷迪·莫里兹

Answers:


41

要开始使用WCF,可能最简单的方式是将默认SOAP格式和HTTP POST(而不是GET)用于Web服务绑定。最容易使用的HTTP绑定是“ basicHttpBinding”。这是您的登录服务的ServiceContract / OperationContract外观示例:

[ServiceContract(Namespace="http://mycompany.com/LoginService")]
public interface ILoginService
{
    [OperationContract]
    string Login(string username, string password);
}

该服务的实现可能如下所示:

public class LoginService : ILoginService
{
    public string Login(string username, string password)
    {
        // Do something with username, password to get/create sessionId
        // string sessionId = "12345678";
        string sessionId = OperationContext.Current.SessionId;

        return sessionId;
    }
}

您可以使用ServiceHost将其托管为Windows服务,也可以将其托管在IIS中,就像普通的ASP.NET Web(服务)应用程序一样。这两个都有很多教程。

WCF服务配置可能如下所示:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>


    <system.serviceModel>
        <behaviors>
            <serviceBehaviors>
                <behavior name="LoginServiceBehavior">
                    <serviceMetadata />
                </behavior>
            </serviceBehaviors>
        </behaviors>

        <services>
            <service name="WcfTest.LoginService"
                     behaviorConfiguration="LoginServiceBehavior" >
                <host>
                    <baseAddresses>
                        <add baseAddress="http://somesite.com:55555/LoginService/" />
                    </baseAddresses>
                </host>
                <endpoint name="LoginService"
                          address=""
                          binding="basicHttpBinding"
                          contract="WcfTest.ILoginService" />

                <endpoint name="LoginServiceMex"
                          address="mex"
                          binding="mexHttpBinding"
                          contract="IMetadataExchange" />
            </service>
        </services>
    </system.serviceModel>
</configuration>

(MEX东西对于生产来说是可选的,但是使用WcfTestClient.exe进行测试以及公开服务元数据是必需的)。

您必须修改Java代码以将SOAP消息发布到服务。与非WCF客户端进行互操作时,WCF可能会有些挑剔,因此您必须对POST标头进行一些修改才能使其正常工作。一旦开始运行,就可以开始研究登录的安全性(可能需要使用其他绑定以获得更好的安全性),或者可能使用WCF REST允许使用GET(而不是SOAP / POST)进行登录。

这是一个从Java代码看起来HTTP POST外观的示例。有一个名为“ Fiddler ”的工具,对于调试Web服务非常有用。

POST /LoginService HTTP/1.1
Content-Type: text/xml; charset=utf-8
SOAPAction: "http://mycompany.com/LoginService/ILoginService/Login"
Host: somesite.com:55555
Content-Length: 216
Expect: 100-continue
Connection: Keep-Alive

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<Login xmlns="http://mycompany.com/LoginService">
<username>Blah</username>
<password>Blah2</password>
</Login>
</s:Body>
</s:Envelope>

1
关于如何获取双工wcf-comunication的任何想法吗?轮询或真正的推送无关紧要。
Alxandr 2011年

1
我建议使用REST选项,SOAP将给您带来更多的问题,而不是优点。如果您将REST与SSL加密一起使用,则您的Web服务将非常安全。
拉法

4
是的,我现在也建议使用REST,这个答案是几年前的,当时REST / JSON还不如现在流行。
安迪·怀特


7

另一个选择可能是完全避免WCF,而仅使用.NET HttpHandler。HttpHandler可以从GET中获取查询字符串变量,然后仅写回对Java代码的响应。


6
您可以执行此操作,但是如果没有适当的框架,则感觉这将是脆弱且难以维护的。您将如何记录到客户端的REST接口?如果您想要JSON怎么办?等等
-Cheeso



3

如果执行此操作,则可能会在服务器上使用WCF REST,并在Java / Android客户端上使用REST库

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.