vote up 1 vote down star
1

I am generating a file on the server and I do not want to write it to disk but instead return it to the client via a web service. What recommendations would you have to do this?

flag

Do you mean a SOAP-like web service call or just a URL? – Lazarus Aug 14 at 10:16
SOAP based ASMX page service – John Aug 14 at 10:22

1 Answer

vote up 0 vote down check
Response.OutputStream.Write(...)

Or if you have a MemoryStream:

MemoryStream ms = ...;
ms.WriteTo(Response.OutputStream);

Edit:

If it's a SOAP web service, then just return a byte array from your web service method in your asmx.cs file

link|flag
Do you know what I would do with the byte[] on the client side javascript? – John Aug 14 at 10:34
What did you want to do with it? What's in the file? – John Saunders Aug 14 at 10:40
just open the file up in the pdf reader – John Aug 14 at 10:45
Yes, what would you do with a file received by JavaScript? You can't (reliably) embed an image in such a way if that's your bag. If it is an image, there are better options. – joshcomley Aug 14 at 10:45
What PDF reader? If it's some Flash thing I suspect you would point it at a URL as opposed to load in a file manually. If it's an iframe again you should just load a URL! In which case you could use the first part of my answer. – joshcomley Aug 14 at 10:46
show 1 more comment

Your Answer

Get an OpenID
or

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