Hi There,
can i implement a SOAP Service which can deal with delegates/events?? Can i also use Streams with SOAP? How does it look like in C#?
thanks, el
|
1
|
|||
|
|
|
Hello, The SOAP protocol is based on top of HTTP so cannot act as a 'PUSH' service without doing heavy tricks => you cannot easily create an event-based webservice in ASP.NET. You cannot use Streams neither but you can transmit binary content using byte[] parameters or return types. This is how it looks like in C# :
That's it. |
||
|
|