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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.