WebService

  • Thread starter Thread starter Daniel P
  • Start date Start date
D

Daniel P

Hi,

How can I use Webservices for transmit huge data to the database?

thanks,
dep
 
First of all, what do you mean by huge data? I use WebServices to transfer binary data of size of up to 300kb and it works perfectly ok. But is 300k huge for you?

The point is that what is important is the timeout of the WebService call (but you can configure it per ASP.Net application).

The other thing is that you will have to use some kind of encoding of the binary data to be represented as character data (Base64 encoding with HTTP/SOAP calls?) which is not very efficient but simple to use.

So, maybe a better solution would be a custom TCP socket server/client or using remoting?

Cezary Nolewajka
mailto:[email protected]
remove all "no-sp-am-eh"s to reply
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top