I have an ASP.NET page where i am rendering some HTML markup which includes a barcode image which is generated by another asp.net page

 <div id='divDynamic'>
   <h1>Some content</h1>
   <img src='barcode.aspx?mode=something' />
 </div>

and in the barcode.aspx.cs,i have

 protected void Page_Load(object sender, EventArgs e)
 {
    Response.CacheControl = "no-cache"; 
    Response.AddHeader("Pragma", "no-cache");
    Response.Expires = -1 ; 
    Response.Buffer = false;
    Response.ContentType = "image/JPEG";
    MemoryStream ms = new MemoryStream();    

    System.Drawing.Image objBitmap = GenCode128.Code128Rendering.MakeBarcodeImage(Request.QueryString["mode"] + "", 2,false );
    objBitmap.Save(ms ,ImageFormat.Bmp); 

    Response.BinaryWrite(ms.GetBuffer());
    Response.End();
}

I need to use the same functionality in many similar websites.So now i am trying to convert this to a WCF service where the markup for the div "divDynamic" will be generated and will be sent back to the client(an asp.net website).My service has a method of return type string which will return the HTMLMarkup like the following

 public string GetUSPSLabelMarkup()
 {
        StringBuilder strHtml = new StringBuilder();
        strHtml.Append("<h1>Some content</h1>");
        //How do i have the barcode image here ???

        return strHtml.ToString();

    }

I am wondering How should i have the Image generation part in the above method in my service ? I believe Response.BinaryWrite shouldnt work here.

Any thoughts ? Thanks in advance

link|improve this question

71% accept rate
feedback

2 Answers

If you're sending back HTML, it means the consumer can understand the IMG tag as well, so why don't you send this:

 strHtml.Append("<h1>Some content</h1>");
 strHtml.Append("<img src='barcode.aspx?mode=something' />");

what's the problem with this?

PS: you can simplify your streaming code like this (no need to create a memory stream and a byte array that will slowly kill your server's heap):

protected void Page_Load(object sender, EventArgs e)
 {
    Response.ContentType = "image/JPEG";
    System.Drawing.Image objBitmap = GenCode128.Code128Rendering.MakeBarcodeImage(Request.QueryString["mode"] + "", 2,false );
    objBitmap.Save(Response.OutputStream, ImageFormat.Bmp); 
}

Also, make sure you have consistency between the contentType and the ImageFormat (you declare JPEG on one, and BMP on the other).

link|improve this answer
I dont want to have barcode.aspx in the consumer side anymore.The barcode image generation should be in the WCF service.Not at client side(asp.net app) – Shyju Dec 9 '10 at 15:11
If you're sending HTML, you can only build an IMG SRC tag that will answer HTTP request (what you already have). If you want a WCF service, you won't be servicing HTML. You need to make a choice. HTML or WCF? If it's WCF, then see this SO thread: stackoverflow.com/questions/592505/… – Simon Mourier Dec 9 '10 at 15:14
feedback

I think there's a conceptual mistake in there.

Even in WCF, you will still have two separate calls:

  • Client loads HTML Markup with the <img> reference
  • Client loads binary image data from server

So you'll have two methods on the WCF-Service: string GetUSPSLabelMarkup() and byte() GetUSPSLabelImageData().

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.