2012-09-10 210 views
0

無法連接android客戶端與wcf服務。這是我的代碼。WCF與Android客戶端連接,無法連接Android客戶端與WCF服務。這裏是我的代碼

@Override 
    public void onClick(View v) 
    { 
     switch(v.getId()) 
     { 
      case R.id.btnLogin: 
       String userName=txtUserName.getText().toString(); 
       String password=txtPassword.getText().toString(); 
       if(verifyLogin(userName,password)) 
       { 
        lblStatus.setText("Login Successful"); 
       } 
       else 
       { 
        //lblStatus.setText("Login Failed"); 
        lblStatus.setText("Login Failed"); 
       } 
       break; 
     } 
    } 





public static String convertStreamToString(InputStream is) 
    { 
     BufferedReader reader = new BufferedReader(new InputStreamReader(is)); 
     StringBuilder sb = new StringBuilder(); 

     String line = null; 
     try { 
      while ((line = reader.readLine()) != null) { 
       sb.append(line + "\n"); 
      } 
     } 
     catch (IOException e) { 
      e.printStackTrace(); 
     } 
     finally { 
      try { 
       is.close(); 
      } catch (IOException e) { 
       e.printStackTrace(); 
      } 
     } 
     return sb.toString(); 
    } 

    public static boolean verifyLogin(String UserName,String Password) 
    { 
     try 
     { 
      DefaultHttpClient httpClient=new DefaultHttpClient(); 


HttpGet httpGet=new HttpGet("http://1.1.1.1/JSONSample/Service1.svc/checkLogin?name="+UserName+"&pass="+Password); 


HttpResponse httpResponse = httpClient.execute(httpGet); 
      HttpEntity httpEntity = httpResponse.getEntity(); 
      InputStream stream=httpEntity.getContent(); 

      String result= convertStreamToString(stream); 

      if(result.charAt(1)=='1') 
      { 
       return true; 
      } 
      else 
      { 
       return false; 
      } 
     } 
     catch(Exception e) 
     { 
      return false; 
     } 

    } 


Also added internet permission. 

Below is my wcf service: 

IService1.cs 

[OperationContract] 
     [WebInvoke(Method = "GET", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, UriTemplate = "checkLogin?name={name}&pass={pass}")] 
     string checkLogin(string name, string pass); 


Service1.svc.cs 

public string checkLogin(string name, string pass) 
     { 
      DataAccess dataAccess = new DataAccess(); 
      return dataAccess.checkLogin(name, pass); 
     } 


DataAccess class : 

public class DataAccess 
    { 
     SqlConnection con; 
     public DataAccess() 
     { 
      con = new SqlConnection("Data Source=RILSWDIND105\\DEVELOPER;Initial Catalog=JSONSampleDB;user id=sa;[email protected]"); 
     } 

     public string checkLogin(string userName, string password) 
     { 
      if (con.State == ConnectionState.Closed) 
      { 
       con.Open(); 
      } 
      SqlCommand command = new SqlCommand("SELECT * FROM UserLogins where UserName='" + userName + "' AND Password='" + password + "'", con); 
      SqlDataReader reader = command.ExecuteReader(); 

      if (reader.Read()) 
      { 
       return "1"; 
      } 
      else 
      { 
       return "0"; 
      } 
     } 

    } 

Web.Config 

<system.serviceModel> 

    <behaviors> 
     <serviceBehaviors> 

     <behavior> 
      <serviceMetadata httpGetEnabled="true" /> 
      <serviceDebug includeExceptionDetailInFaults="false" /> 
     </behavior> 
     </serviceBehaviors> 

    </behaviors> 
    <serviceHostingEnvironment multipleSiteBindingsEnabled="true" aspNetCompatibilityEnabled="true" minFreeMemoryPercentageToActivateService="0"/> 
    </system.serviceModel> 
<system.webServer> 
     <directoryBrowse enabled="true" /> 
    <modules runAllManagedModulesForAllRequests="true"/> 
    </system.webServer> 

WCF工作正常,當我測試與asp.net客戶端是相同的,它是按照參數返回0 & 1。

當我運行我的android客戶端時,它只是說,試圖連接服務,但沒有任何反應。

請幫助解決相同的問題。

回答

1

您是否正確使用端點?

這些鏈接將幫助您 Part1 Part2

+0

您好師先生,我已經使用我們的代碼而已,我需要指定終點是什麼:這樣行嗎? <服務名稱= 「JSONSample.Service1」 behaviorConfiguration = 「JSONSample.Service1Behavior」> <端點地址= 「」 結合= 「的WebHttpBinding」 合同= 「JSONSample.IService1」 behaviorConfiguration = 「網絡」> <端點地址= 「MEX」 綁定= 「mexHttpBinding」 合同= 「IMetadataExchange接口」/> user1559414

+0

之後,你必須設置行爲 HTTP:// guruparan.blog.com/files/2012/03/4.png –

+0

yess我做了完全一樣的...服務得到編譯,但在對話框(測試客戶端)中沒有添加服務。如果可能的話,我可以讓你的郵件編號發送給我你的代碼...可能會有總和愚蠢的錯誤,我無法指出它。 PLS。 – user1559414