Sending and Receiving data through SOAP web service in .Net?

SOAP uses the HTTP protocol over the internet. HTTP requests can fail for any reason (hardware, server, software, etc. ), although that happens infrequently. However, unless your data is EXTREMELY large, I don't see any benefit in breaking the requests into multiple "lists".

If anything, the chances of an individual request failing can increase the chance of the overall data transfer failure.

I have never heard of anything like that. If that were a serious problem there'd be a lot of evidence.

I have tried SOAP protocol in transfering and recieveing data from web service and nothing lost but you have to follow the structure of SOAP in sending and recieving to gurantee not losing data. To see the structure of the SOAP request the web service function from the browser and it will show you how to call this function inside web service using SOAP and defining how to send its parameters if exist. Take care don't send or recieve Date type via SOAP because of different formats and also any type that take different formats.

If you data is serilizable then you will not loose anything.

The request size can be configured in in web. Config in the tag. The following references show some examples of setting maximums on request/respose data sizes.

msdn.microsoft.com/en-us/library/aa52882... msdn.microsoft.com/en-us/library/aa52933....

In practice, if you get the well serialized response you will loose nothing. But you can never receive the response or the request may never reach the server. Message queuing is the answer to avoid data losses caused by transport issues.

Instead of sending the request and simply wait for the response, message queuing will keep the request and response in a context that will ensure that each request have its response (or more depending on sofisticated rules). Here is Message Queue over HTTP: Usage Scenarios.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions