1. ホーム
  2. .net

[解決済み] AndroidでWCFサービスを利用する方法

2022-02-18 11:22:05

質問

.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;
}

しかし、サーバー側では今のところ何もわかっていない。

この2つのパラメータをクライアントから読み込んでセッション文字列を返信するために、適切なApp.config設定と適切な[OperationContract]署名を持つ適切なメソッド文字列 Login(string username, string password) を作成する方法を説明していただけると本当に感謝します。

ありがとうございます。

解決方法は?

WCFを使い始めるには、WebサービスバインディングにデフォルトのSOAPフォーマットとHTTP POST(GETではなく)を使用するのが最も簡単かもしれません。 最も簡単に動作させることができる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サービスとしてホストすることもできますし、通常のASP.NET Web(サービス)アプリケーションのようにIISでホストすることもできます。 この両方について、多くのチュートリアルがあります。

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 でのテストと、サービスのメタデータを公開するために必要です)。

サービスにSOAPメッセージをPOSTするために、Javaコードを修正する必要があります。 WCFは非WCFクライアントと相互運用するときに少しうるさいので、POSTヘッダを少しいじって動作させる必要があります。 これを実行したら、ログインのセキュリティ(より良いセキュリティを得るために別のバインディングを使用する必要があるかもしれません)、またはSOAP/POSTではなくGETでログインできるようにWCF RESTを使用する可能性を調査し始めることができます。

以下は、JavaコードからHTTP POSTがどのようなものであるかの例です。 "というツールがあります。 フィドラー ウェブサービスをデバッグするのにとても便利です。

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>