2016-10-19 11 views
1

私は入力パラメータとしてカスタムクラスを受け取る 'wcf' restサービスを持っています。私はアンドロイドのプラットフォームを介してこのクラスのオブジェクトデータを送信したい。私はhttpUrlConnectionを使用しました。私はいつもレスポンスコード500を受け取ります。しかし、サービスはWindowsフォームアプリケーションで正しく機能しました。アンドロイドで私のコードはここにある:アンドロイドからwcfへのオブジェクトとしてjsonを送信

 HttpURLConnection urlConnection = null; 
     String jsonString = ""; 
     JSONObject jsonObject = new JSONObject(); 
     JSONObject jsonObject2 = new JSONObject(); 
     try { 

      jsonObject.put("A","rtrt"); 
      jsonObject2.put("c",jsonObject); 
       } catch (JSONException e) { 
       e.printStackTrace(); 
       } 


     try{ 
      URL url = new URL("http://.../Service1.svc/GetTestData"); 
      urlConnection = (HttpURLConnection) url.openConnection(); 
      urlConnection.setDoOutput(true); 
      urlConnection.setDoInput(true); 
      urlConnection.setRequestMethod("POST"); 
       urlConnection.setRequestProperty("ContentType","applicaiton/json"); 


      urlConnection.setUseCaches(false); 

     urlConnection.connect(); 

      OutputStream outputStream = new BufferedOutputStream(urlConnection.getOutputStream()); 
      BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(outputStream, "utf-8")); 
      writer.write(jsonObject2.toString()); 
      writer.flush(); 
      writer.close(); 
      outputStream.close(); 

     int statusCode = urlConnection.getResponseCode(); 

      // Log.d("TRAFFIC", "err: " + urlConnection.getErrorStream().toString()); 

答えて

0

WCFは、SOAP型データ

使用Ksoap2ライブラリ

public class ksop2test extends Activity { 
/** Called when the activity is first created. */ 


private static final String METHOD_NAME = "HelloWorldRequest"; 
// private static final String METHOD_NAME = "HelloWorld"; 

private static final String NAMESPACE = "http://tempuri.org/"; 
// private static final String NAMESPACE = "http://tempuri.org"; 

private static final String URL ="http://192.168.0.2:8080/HelloWCF/Service1.svc"; 
// private static final String URL = "http://192.168.0.2:8080/webservice1 /Service1.asmx"; 

final String SOAP_ACTION = "http://tempuri.org/IService1/HelloWorld"; 
// final String SOAP_ACTION = "http://tempuri.org/HelloWorld"; 
TextView tv; 
StringBuilder sb; 
private XmlSerializer writer; 



@Override 
public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    tv = new TextView(this); 
    sb = new StringBuilder(); 
    call(); 
    tv.setText(sb.toString()); 
    setContentView(tv); 
} 

public void call() { 
try { 

    SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME); 

    request.addProperty("Name", "Qing"); 

    SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(
      SoapEnvelope.VER11); 
    envelope.dotNet = true; 
    envelope.setOutputSoapObject(request); 


    HttpTransportSE androidHttpTransport = new HttpTransportSE(URL); 
    androidHttpTransport.call(SOAP_ACTION, envelope); 
    SoapPrimitive result = (SoapPrimitive)envelope.getResponse(); 

    //to get the data 
    String resultData = result.toString(); 
    // 0 is the first object of data 


    sb.append(resultData + "\n"); 
    } catch (Exception e) { 
    sb.append("Error:\n" + e.getMessage() + "\n"); 
    } 

} 

} 

全チュートリアル利用可能here

+0

これは間違っています。バインディングを変更してwebhttpbindingに設定すると、Wcfサポートが休止します。 –

+0

私はAndroidやAndroidの開発者ですが、この問題に長年かかわっており、Ksoap2は解決策です。 –

0

やっと見つけ答えを受け入れます。 HttpUrlConnectionでは、入力ストリームを読み取る出力ストリームを閉じてはいけません。そこで、すべての出力ストリームの終了を取り除きました。

関連する問題