iisでwcfアプリケーションをホストし、Androidデバイスからアクセスしてjsonを取得する方法は? iis で wcf アプリケーションをホストし、Android デバイスからアクセスする必要があります。これはどのように行うことができますか?
質問する
406 次
1 に答える
1
これには多くのチュートリアルがあります..私はあなたのためにチュートリアルのリストを書いています..
1) http://romenlaw.blogspot.in/2008/08/using-web-services-from-android.html
2) http://www.kevingao.net/wcf-java-interop
いくつかのスタックオーバーフローの回答からのいくつかのコードスニペット
[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 class LoginService : ILoginService
{
public string Login(string username, string password)
{
// Do something with username, password to get/create sessionId
string sessionId = "12345678";
return sessionId;
}
}
You can host this as a windows service using a ServiceHost, or you can host it in IIS like a normal ASP.NET web (service) application. There are a lot of tutorials out there for both of these.
The WCF service config might look like this:
<?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>
コードプロジェクトにも素敵なチュートリアルがあります
http://www.codeproject.com/Articles/358867/WCF-and-Android-Part-I
WCF 部分を使用した場合、上記のリンクはそれほど役に立たないでしょう。次の部分はかなり役に立ちます。
http://www.codeproject.com/Articles/361107/WCF-and-Android-Part-II
于 2013-10-07T07:38:57.157 に答える