3

WCF web serviceからの呼び出しに問題がありAndroid applicationます。以下の URL を呼び出すと"http://10.0.2.2:80/WebService/WebServiceImpl.svc"responseが返さ"200 OK"れますが、サービス内で関数を呼び出そうとすると"http://10.0.2.2:80/WebService/WebServiceImpl.svc/Test"、 response が返され"400 Bad request"ます。

誰か助けてくれませんか?

namespace WebService
{
    public class WebServiceImpl : IWebServiceImpl
    {
        #region IRestServiceImpl Members
        public string Test()
        {
            return "Test pass";
        }

        #endregion
    }
}

namespace WebService
{
    [ServiceContract]
    public interface IWebServiceImpl
    {
     [OperationContract]
        [WebInvoke(
            Method = "GET")]
        string Test();
    }
}

Android アクティビティ:

    public void onClick(View v)
    {
        // TODO Auto-generated method stub
        HttpClient  client = new DefaultHttpClient();
        String SERVER_HOST="10.0.2.2";
        int SERVER_PORT = 80;
        String URL = "http://10.0.2.2:80/WebService/WebServiceImpl.svc/Test";
        HttpHost target = new HttpHost(SERVER_HOST, SERVER_PORT, "http");
        HttpGet request = new HttpGet(URL);
        try
        {
            HttpResponse response = client.execute(target,request);
            HttpEntity entity = response.getEntity();
            MessageBox(response.getStatusLine().toString());
        }
        catch(Exception e)
        {
            MessageBox("excepton");
            MessageBox(e.toString());
        }
    }

    public void MessageBox(String message){
        Toast.makeText(this,message,Toast.LENGTH_LONG).show();
    }
4

2 に答える 2

2

「SoapObject」を使用して解決します

コードの一部:

public static final String NAMESPACE = "http://tempuri.org/";
public static final String URL = "http://10.0.2.2:80/MyFirstPublishedWebService/WebServiceImpl.svc?wsdl";  
public static final String SOAP_ACTION = "http://tempuri.org/IWebServiceImpl/Login";
public static final String METHOD_NAME = "Login";

SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
SoapSerializationEnvelope envelope = 
    new SoapSerializationEnvelope(SoapEnvelope.VER11); 

envelope .dotNet = true;

envelope.setOutputSoapObject(request);
HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);

try {
    androidHttpTransport.call(SOAP_ACTION, envelope);
}
catch (Exception e) {

}

アレックス、答えてくれてありがとう!

于 2012-08-10T15:15:27.637 に答える
1

まず、ブラウザでこのURLをテストします。同じ問題が発生する場合は、マニフェストでサービスのWebアクセスを有効にしてください。

お使いの携帯電話からIP10.0.2.2にアクセスできるかどうかを二次チェックします。

于 2012-08-07T11:58:46.820 に答える