0
我正在使用wcf web服務製作應用程序。如何使用ksoap2從android發送多個參數到wcf服務器
我想發送多個參數,但只有我知道事情是這樣的
request.addProperty("Fahrenheit",txtData.getText().toString());
那麼怎麼辦呢?
下面是我的wcf代碼的一部分。
public string GetFirstName(byte[] source, int height, int width)
{
Bitmap bitmap = ImageTypeConverter.ArrayToImage(source, height, width);
bitmap.Save(Environment.CurrentDirectory + "test" + ".bmp", System.Drawing.Imaging.ImageFormat.Bmp);
return "ImageSaveComplete";
}
正如你所看到的,我想傳遞字節數組和整數值。
請讓我知道答案。
謝謝。我將應用此代碼。 – 2014-11-07 06:43:01