Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6922633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T10:25:54+00:00 2026-05-27T10:25:54+00:00

I have a WCF Rest Service project set up serving JSON datastructures. I have

  • 0

I have a WCF Rest Service project set up serving JSON datastructures. I have defined a contract in an interface file like:

[OperationContract]
[WebInvoke(Method = "GET",
    ResponseFormat = WebMessageFormat.Json,
    BodyStyle = WebMessageBodyStyle.Bare,
    UriTemplate = "location/{id}")]
Location GetLocation(string id);

Now the WebService needs to return multimedia (images, PDF documents) documents like a standard Web Server does. The WCF WebMessageFormat of the ResponseFormat only support JSON or XML. How do i define the method in the interface to return a file ?

Something like:

[OperationContract]
[WebInvoke(Method="GET",
    ResponseFormat = ?????
    BodyStyle = WebMessageBodyStyle.Bare,
    UriTemplate = "multimedia/{id}")]
???? GetMultimedia(string id);

So that: wget http://example.com/multimedia/10 returns the PDF document with id 10.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T10:25:55+00:00Added an answer on May 27, 2026 at 10:25 am

    You can get a file from your RESTful service as shown below:

    [WebGet(UriTemplate = "file")]
            public Stream GetFile()
            {
                WebOperationContext.Current.OutgoingResponse.ContentType = "application/txt";
                FileStream f = new FileStream("C:\\Test.txt", FileMode.Open);
                int length = (int)f.Length;
                WebOperationContext.Current.OutgoingResponse.ContentLength = length;
                byte[] buffer = new byte[length];
                int sum = 0;
                int count;
                while((count = f.Read(buffer, sum , length - sum)) > 0 )
                {
                    sum += count;
                }
                f.Close();
                return new MemoryStream(buffer); 
            }
    

    When you browse to the service in IE it should show a open save dialog for the response.

    NOTE: You should set the appropriate content type of the file your service returns. In the above example it return a text file.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a WCF REST Service which accepts a JSON string One of the
I have created a WCF REST style service in my project. In development I
I have a WCF REST service. I verified Webconfig file and all config items
I have a WCF REST 4.0 project based on the the WCF REST Service
I have a WCF rest service using webHttpBinding that returns JSON result. The problem
I have a C# WCF REST Service which allows the addition of a bookmark,
I have a REST service consumed by a .Net WCF client. When an error
I have WCF endpoint exposed as defined bellow, <service name=MyApp.Server.Endpoint.Orange behaviorConfiguration=MyTio.Server.Endpoint.OrangeBehavior> <endpoint address= binding=basicHttpBinding
I have a WCF-REST service with one method which returns a string: [ServiceContract] public
I have a WCF REST service which needs to invoke a URL (could be

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.