Thank you Travis,
I mean just small tokens, but large data.
For example, a 500MB file.
[ServiceContract]
public interface IStreamingSample
{
[OperationContract]
Stream GetStream(string data);
[OperationContract]
bool UploadStream(Stream stream);
}
I want to know, whether it's possible to have this Web Service with claims-based identity or not.
There are some restrictions for streaming:
"you can use only transport-level security options for streaming and you cannot turn on reliable sessions."
( http://msdn.microsoft.com/en-us/library/ms733742.aspx )