how to decode base64binary back to jpg image?

Home Page Forums BizTalk 2004 – BizTalk 2010 how to decode base64binary back to jpg image?

Viewing 1 reply thread
  • Author
    Posts
    • #14014

      I will receive image through web service, the image is in base64Binary format. How can a pipeline transfer it back to jpg image.

      Do i need to write custom pipeline component?

    • #14015

      You can write a custom pipeline component.
      Is the jpg the only data you wish to keep from the message. If not you will have to create a multi-part message in the pipeline.
      i.e. keep the data part and add a binary jpg image part.
      If you only wish to pass the jpg image, then you can just replace the received data stream with a jpg data stream.

      You could also do this in an orchestration using a custom .Net class

      • #14016

        Thank you. I use custom decoder component, and using file.io to write picture to a location with the excute method.

        Now it works.

Viewing 1 reply thread
  • The forum ‘BizTalk 2004 – BizTalk 2010’ is closed to new topics and replies.