5,781,349 members and growing! (69 online)
Email Password   helpLost your password?
Languages » XML » Web Services     Beginner

Configure DIME with WSE 2.0

By Nirosh

This article focuses on demonstrating the usage of DIME (Direct Internet Message Encapsulation) with Web Services. Here, you will have two applications, one is a Web Serivice that uses DIME technology to send an attachment (of different types) to a client side, other is a Windows Forms application.
C#, XML, HTML, Windows, .NET, .NET 1.1, WinForms, IIS 5, IIS 5.1, IIS 6, VS.NET2003, IE 6.0, IE 5.5, IIS, Visual Studio, IE, Dev

Posted: 27 Oct 2004
Updated: 25 Apr 2005
Views: 100,580
Bookmarked: 27 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
24 votes for this Article.
Popularity: 4.26 Rating: 3.08 out of 5
6 votes, 25.0%
1
1 vote, 4.2%
2
1 vote, 4.2%
3
4 votes, 16.7%
4
12 votes, 50.0%
5

Introduction

SOAP messages are not the best way to send large binary files. As the Web Services emerge, people look for Web services to have more and more functionality. Result was the introduction of Web Services Enhancement (WSE) 2.0. The Web Services Enhancements for Microsoft .NET (WSE) supports attaching files to SOAP messages outside the SOAP envelope; these files are not serialized as XML. This can be beneficial when sending large text or binary files because XML serialization is a very costly process and can result in files much larger than the originals. Direct Internet Message Encapsulation (DIME) is a lightweight, binary message format that WSE uses to encapsulate SOAP messages and their attachments in a DIME message.

Background

  • First, we create a Web service that can read an image file, and return a DIME message that contains a SOAP message and the image file attached.
  • Second, we create a Windows Forms client that can consume the DIME message created by the Web service and display the image.

Requirements

The users who read this article need a basic understanding of Web services and how to create and use them with .NET Framework. Additionally, they need to have the Microsoft Visual Studio .NET 2003 and Web Service Enhancement 2.0 installed.

Web service that generates a DIME message containing image attachments

Note: Because DIME attachments are contained outside of the SOAP envelope, they cannot be signed or encrypted using WSE. It is strongly recommended that all SOAP messages that contain DIME attachments be sent over a secure transport protocol such as HTTPS.

Note: If you send a file as a DIME attachment, you cannot close or delete the file from within the Web method that sent the file. This is because WSE holds a reference to the file until the message is serialized and delivered to the client. To overcome this, override a file stream and delete the file when all references to the file stream are released.

Let's create the Visual Studio ASP/.NET Web service project:

  1. Go to File menu and create a New Project.
  2. In the Project Types pane, select Visual C# Projects.
  3. In the Templates pane, select ASP.NET Web Service.
  4. Fill the Location box with the project name: http://localhost/MyDimeTest.
  5. Click OK button to add the MyDimeTest project to the solution.
  6. Go to Solution Explorer and change the name of Service1.asmx to DimeService.asmx by selecting the Properties of the file.
  7. To be smarter, view the DimeService.asmx and change the class name as well as the constructor name to have the same name, i.e., "DimeService".

    Now the project is done, and now you got to configure the project for WSE 2.0. It is very easy.

  8. In the Solution Explorer, right click on the project name, you will see "WSE 2.0 Settings ..." just below the "Property" menu item.
  9. Select "WSE 2.0 Settings ...".
  10. To configure a Web service project to use WSE 2.0, you got to check both check boxes in the "General" tab.

    • The first check box enables the use of the current project with WSE. This means that the Microsoft.Web.Services2.dll will be added to the project references, and that changes will be made to the Web.config file to add support for the WSE configuration handler. In addition, any Web references that are created from this point on will include WSE 2.0 support in the proxy classes generated.
    • The second check box is only enabled if this is an ASP.NET Web Service project. By selecting it, the WSE Soap Extension is added to the project, which will enable the additional protocol support to work within the ASP.NET Web service HTTP handler (for .ASMX files). This is accomplished by modifying the Web.config file and adding the WSE SOAP Extension to the list of .asmx SOAP Extensions for the virtual directory.
  11. Add using statement to the DimeService.asmx.cs file:
    using Microsoft.Web.Services2.Dime;
    using Microsoft.Web.Services2;
    using System.Net;
  12. Place an image file to be read by the DimeService. In my case, I placed a "test.gif" file in my "c:" drive. So the path of the image file is described as "c:\test.gif".
  13. Write a Web Method that can read the image file and attach it with the SOAP message using DIME technology and transfer it to the client end. Please follow the code below:
    // The CreateDimedImage Web service returns an image in a DIME
    
    // attachment.
    
    [WebMethod]
    public void CreateDimedImage()
    {
        SoapContext respContext = ResponseSoapContext.Current;
        DimeAttachment dimeAttach = new DimeAttachment(
            "image/gif", TypeFormat.MediaType,
            "C:\\test.gif");
        respContext.Attachments.Add(dimeAttach);
    }

    Compile the project. Now you are done with the Web service end.

Windows Forms client that can consume a DIME message containing an image

Let's create the Windows Forms Project:

  1. Go to File menu and create a New Project.
  2. In the Project Types pane, select Visual C# Projects.
  3. In the Templates pane, select Windows Application.
  4. Fill the Name box with the project name: DimeClient.
  5. Click OK button to add the DimeClient project to the solution.
  6. In Solution Explorer, select View Designer for DimeClient Windows Form.
  7. Add a PictureBox control to the form from the Tool Bar.
  8. Double click on the DimeClient Form to add the Form_Load event.

    Now the client project is done, and now you got to configure the project for WSE 2.0. It is very easy.

  9. In the Solution Explorer, right click on the project name, you will see "WSE 2.0 Settings ..." just below the "Property" menu item.
  10. Select "WSE 2.0 Settings ...".
  11. To configure a Web service project to use WSE 2.0, you got to check the first check box in the "General" tab. (I.e., enable this project for Web Service enhancements.) This will add all necessary references as well as it will edit the Web.Config for you.
  12. In Solution Explorer, right-click References, and then select Add Web Reference.
  13. In the address window, enter http://localhost/MyDimeTest/DimeService.asmx, and then click the arrow icon.
  14. Name your proxy class as "pxy" and click Add Reference.
  15. Insert the code below in the "Form_Load" method of the "DimeClient.cs".
    private void Form1_Load(object sender, System.EventArgs e)
    {
        pxy.DimeServiceWse lobjProxy = new pxy.DimeServiceWse();
        lobjProxy.CreateDimedImage();
        if (lobjProxy.ResponseSoapContext.Attachments.Count == 1)
        {
            this.pictureBox1.Image = new Bitmap(
                        lobjProxy.ResponseSoapContext.Attachments[0].Stream);
        }
        else
        {
            MessageBox.Show("No Attachment Found");
        }
    }

DIME Defaults

By default, DIME/ WSE 2.0 doesn't allow adding/sending attachments larger than 4096 KB of size. If you intend to send larger files, which are over the 4 MB limit (including the SOAP message), you need to add some tags to the web.config file of the service as well as, remember, of the receiver (client) end. You need to add values to override the values of the maxRequestLengths.

<httpRuntime> Settings

This configures the ASP.NET HTTP runtime settings. This section can be declared at the machine, site, application, and subdirectory levels:

<httpRuntime useFullyQualifiedRedirectUrl="true|false"
  maxRequestLength="size in kbytes"
  executionTimeout="seconds" />

Example

This example demonstrates a instant of sending an attachment of size 8 MB and the timeout is set to 45 seconds:

<configuration>
   <system.web>
      <httpRuntime maxRequestLength="8000"
                   useFullyQualifiedRedirectUrl="true"
                   executionTimeout="45" />
    </system.web>
</configuration>

<microsoft.web.services2> Settings

<microsoft.web.services2>
    <messaging>
      <maxRequestLength>"size in kbytes"</maxRequestLength>
    </messaging>
    <diagnostics />
</microsoft.web.services2>

Example

<configuration>
  <microsoft.web.services2>
    <messaging>
      <maxRequestLength>8000</maxRequestLength>
    </messaging>
    <diagnostics />
  </microsoft.web.services2>
</configuration>

Last Updated

The article was updated on 19th of April 2005.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Nirosh


In-depth coverage of Microsoft .Net Technologies.

- If it is good for both good and bad people then it is bad for a good society..

Contact Nirosh via c_nir*o*sh@hotmail.com (Remove * to use)
View Nirosh's profile on Linked-In
Occupation: Architect
Location: Sri Lanka Sri Lanka

Other popular XML articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 72 (Total in Forum: 72) (Refresh)FirstPrevNext
Generalweb service consumermember20:27 13 Feb '07  
GeneralRe: web service consumermemberNirosh21:39 13 Feb '07  
GeneralRe: web service consumermemberluthor_22:32 13 Feb '07  
GeneralRe: web service consumermemberNirosh22:45 13 Feb '07  
GeneralRe: web service consumermemberluthor_1:03 14 Feb '07  
GeneralRe: web service consumermemberNirosh1:15 14 Feb '07  
Generalemail with Attachmentmembersharmankit9:42 30 Jan '07  
GeneralRe: email with AttachmentmemberNirosh17:26 30 Jan '07  
QuestionProblems installing WSE 2.0 SP1 and SP2memberJRINC10:39 9 Jan '07  
AnswerRe: Problems installing WSE 2.0 SP1 and SP2memberNirosh3:09 10 Jan '07  
Generalthis was useful to me - thanksmemberCP Student18:57 31 Oct '06  
GeneralRe: this was useful to me - thanksmemberNirosh23:02 9 Nov '06  
GeneralUpload errormemberRicardo Mendes4:07 27 Oct '06  
GeneralRe: Upload errormemberGermyan4:14 27 Oct '06  
GeneralRe: Upload errormemberRicardo Mendes5:32 27 Oct '06  
GeneralRe: Upload errormemberNirosh17:57 29 Oct '06  
GeneralRe: Upload errormemberSamual A.18:40 29 Oct '06  
QuestionError: Object reference not set to an instance of an object.memberschwartz_ken4:09 22 Aug '06  
AnswerRe: Error: Object reference not set to an instance of an object.memberNirosh18:59 22 Aug '06  
GeneralRe: Error: Object reference not set to an instance of an object.memberNirosh19:08 22 Aug '06  
GeneralI want to send a file as dime attachment from client to Web Servicememberlolokisu6:17 14 Aug '06  
GeneralRe: I want to send a file as dime attachment from client to Web ServicememberNirosh1:13 18 Aug '06  
QuestionRegarding creating the proxymemberVenkat_831:42 20 Jun '06  
QuestionRe: Regarding creating the proxymemberVenkat_832:19 20 Jun '06  
AnswerRe: Regarding creating the proxymemberNirosh1:19 18 Aug '06  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 25 Apr 2005
Editor: Smitha Vijayan
Copyright 2004 by Nirosh
Everything else Copyright © CodeProject, 1999-2009
Java | Advertise on the Code Project