WCF streaming on asmx ?
Posted
by phenevo
on Stack Overflow
See other posts from Stack Overflow
or by phenevo
Published on 2010-05-25T08:48:10Z
Indexed on
2010/05/25
8:51 UTC
Read the original article
Hit count: 596
Hi,
I'he 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 ?
© Stack Overflow or respective owner