Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WCF streaming on asmx?

Tags:

c#

wcf

asmx

I've got wcf service for wcf straming. I works. But I must integrate it with our webserice.

is there any way, to have webmethod like this:

[webmethod]
public Stream GetStream(string path)
{
  return Iservice.GetStream(path);
}

I service is a class which I copy from WCF service to my asmx.

And is there any way to integrate App.config from wcf with web.config ?

like image 340
user278618 Avatar asked May 25 '10 08:05

user278618


1 Answers

Sorry, no, ASMX web services don't support streaming.

like image 136
John Saunders Avatar answered Oct 31 '22 14:10

John Saunders