在.NET框架的Web服务上使用Base64编码

类别:.NET开发 点击:0 评论:0 推荐:

发表日期:23/04/2002 14:43:09
发表人:Robert Chartier
发表人信箱:[email protected] 
本文说明如何创建和使用二进制数据传送的Web服务,这是相当容易的一件事。

=================================================================

在示例中,将从本地磁盘取出图象数据,然后使用SOAP信息将图象传送到调用者手上。
现在开始讨论有关的Web服务,并特别注重数据编码的有关操作。

0.  [WebMethod(Description="Get an Image using Base64 Encoding")]
1.  public byte[] GetImage() {
2.   return getBinaryFile("C:\\Inetpub\\wwwroot\\webservices\\public\\images\\logo.gif");
3.   }
4.  

注意函数返回byte[] (字节数组)。.NET将自动将返回的数据编码成为base64格式。

下面的"getBinaryFile()"函数用文件流从硬盘读取文件,然后将图象文件数据转换为byte[]:

0.  public byte[] getBinaryFile(string filename) {
1.   if(File.Exists(filename)) {
2.    try {
3.     FileStream s=File.OpenRead(filename);
4.     return ConvertStreamToByteBuffer(s);
5.     }
   catch(Exception e) {
6.     return new byte[0];
7.     }
8.    }
  else {
9.    return new byte[0];
10.   }
11.  }
12.  
13.  public byte[] ConvertStreamToByteBuffer(System.IO.Stream theStream) {
14.   int b1;
15.   System.IO.MemoryStream tempStream = new System.IO.MemoryStream();
16.   while((b1=theStream.ReadByte())!=-1) {
17.    tempStream.WriteByte(((byte)b1));
18.    }
19.   return tempStream.ToArray();
20.   }


现在可以在.NET上用C#编写客户端程序,过程如下:
1. 创建C#应用窗体
2. 增加一个Picture Box控件,命名为pct1
3. 增加一个Web引用(Reference)到:http://rob.santra.com/webservices/public/images/index.asmx?wsdl
4. 在程序的事件驱动(Form1_Load, 或其它事件)中写入以下代码:
 0.  com.santra.rob.Images images = new com.santra.rob.Images();
 1.  byte[] image = images.GetImage();
 2.  System.IO.MemoryStream memStream = new System.IO.MemoryStream(image);
 3.  Bitmap bm = new Bitmap(memStream);
 4.  pct1.Image = bm;
 5.  
 6.  

如果是在自己的服务器上创建这种服务,就要改变Web Reference(引用)地址,同时com.santra.rob.Images()对象也要与增加Web Reference(引用)时创建的对象相一致。

在上面的代码中,客户向服务器申请含有图象数据的字节数组,并将该数组转换到内存流(MemoryStream),然后加载到Bitmap对象,最后用pct1图象控件显示得到的图象。

整个过程就是这么简单!

以下是全部代码:

0.  <%@ Webservice Language="C#" class="Images" %>
1.  
2.  using System;
3.  using System.Web.Services;
4.  using System.IO;
5.  
6.  [WebService(Namespace="http://rob.santra.com/webservices/public/images/", Description="Demonstration of using Base64 encoding, in a Web Service using the .NET Framework.")]

7.    public class Images: System.Web.Services.WebService {
8.     [WebMethod(Description="Get an Image using Base64 Encoding")]
9.     public byte[] GetImage() {
10.    return getBinaryFile("C:\\Inetpub\\wwwroot\\webservices\\public\\images\\logo.gif");
11.   }
12.   public byte[] getBinaryFile(string filename) {
13.    if(File.Exists(filename)) {
14.     try {
15.      FileStream s=File.OpenRead(filename);
16.      return ConvertStreamToByteBuffer(s);
17.      }
     catch(Exception e) {
18.       return new byte[0];
19.      }
20.     }
    else {
21.     return new byte[0];
22.     }
23.    }
24.  
25.   public byte[] ConvertStreamToByteBuffer(System.IO.Stream theStream) {
26.    int b1;
27.    System.IO.MemoryStream tempStream = new System.IO.MemoryStream();
28.    while((b1=theStream.ReadByte())!=-1) {
29.     tempStream.WriteByte(((byte)b1));
30.     }
31.    return tempStream.ToArray();
32.    }
33.   }

本文地址:http://com.8s8s.com/it/it46041.htm