0

プロジェクト (Winforms と Web サービス プロジェクト) にそれぞれ 2 つのデータベースがあり、プロジェクト 1 からプロジェクト 2 にデータを送信するために Entity Framework を使用してクエリを実行しています。クエリ経由で送信しますか?

これは私のWebサービスコードです:

// Entity Framework
Person sd = new Person(); 
// Method to get data from winforms app
public void GetData(string name,string picture)
{
    sd.name= name;
    sd.picture= ImageToByteArray(picture);
    context.AddToPerson(sd);
    context.SaveChanges();
}

//Method to save the image into database
private Byte[] ImageToByteArray(string source)
{
    FileInfo fInfo = new FileInfo(source);
    long sizeByte = fInfo.Length;
    FileStream fs = new FileStream(source, FileMode.Open, FileAccess.Read);
    BinaryReader br = new BinaryReader(fs);
    byte[] data = br.ReadBytes((int)sizeByte);
    return data;
}

そして、これは私のWinformsコードです:

WebService3SD.Service1SoapClient oService = new WebService3SD.Service1SoapClient();

private void SendData()
{
    Driver dr = context.Drivers.FirstOrDefault(d => d.name == "name1");
    oService.GetData(dr.name,????);//here i have no idea what i have to do ?!
}

そのためには、画像を文字列に変換する方法が必要です。

4

1 に答える 1

0

おそらく、転送用に画像を Base64 としてエンコードする必要があります。現在、コードはサーバー ファイル システムから読み取ろうとしています。次のコードを参照してください。

リクエストを行うアプリで:

private void btnEncode_Click(object sender, EventArgs e)
{
  if (!string.IsNullOrEmpty(txtInFile.Text))
  {
    FileStream fs = new FileStream(txtInFile.Text, 
                                   FileMode.Open, 
                                   FileAccess.Read);
    byte[] filebytes = new byte[fs.Length];
    fs.Read(filebytes, 0, Convert.ToInt32(fs.Length));
    string encodedData = 
        Convert.ToBase64String(filebytes,                 
                               Base64FormattingOptions.InsertLineBreaks);
    txtEncoded.Text = encodedData; 
  }
}

受信側:

private void btnDecode_Click(object sender, EventArgs e)
{
  if (!string.IsNullOrEmpty(txtOutFile.Text))
  {
    byte[] filebytes = Convert.FromBase64String(txtEncoded.Text);
    FileStream fs = new FileStream(txtOutFile.Text, 
                                   FileMode.CreateNew, 
                                   FileAccess.Write, 
                                   FileShare.None);
    fs.Write(filebytes, 0, filebytes.Length);
    fs.Close(); 
  }
}
于 2013-04-04T20:42:26.097 に答える