发表日期: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"
11\.
22\. using System;
33\. using System.Web.Services;
44\. using System.IO;
55\.
66\. [WebService(Namespace=" http://rob.santra.com/webservices/public/images/ ", Description="Demonstration of using Base64 encoding, in a Web Service using the .NET Framework.")]
7
87\. public class Images: System.Web.Services.WebService {
98\. [WebMethod(Description="Get an Image using Base64 Encoding")]
109\. public byte[] GetImage() {
1110\. return getBinaryFile("C:\\\Inetpub\\\wwwroot\\\webservices\\\public\\\images\\\logo.gif");
1211\. }
1312\. public byte[] getBinaryFile(string filename) {
1413\. if(File.Exists(filename)) {
1514\. try {
1615\. FileStream s=File.OpenRead(filename);
1716\. return ConvertStreamToByteBuffer(s);
1817\. }
19catch(Exception e) {
2018\. return new byte[0];
2119\. }
2220\. }
23else {
2421\. return new byte[0];
2522\. }
2623\. }
2724\.
2825\. public byte[] ConvertStreamToByteBuffer(System.IO.Stream theStream) {
2926\. int b1;
3027\. System.IO.MemoryStream tempStream = new System.IO.MemoryStream();
3128\. while((b1=theStream.ReadByte())!=-1) {
3229\. tempStream.WriteByte(((byte)b1));
3330\. }
3431\. return tempStream.ToArray();
3532\. }
3633\. }