Click to See Complete Forum and Search --> : How to transfer BMP file without storing in client machine


Revolution
June 16th, 2008, 02:09 AM
Hi all,

I am newbie to this ASP.net development.

I need some suggesstion / guidance for my requirement.

Here is my architecture

I have an ACTIVEX Control which will be registered in the client machine and used by my VBSCRIPT to process the request. Once the request were processed it will generate an image file which is of BMP format. Now i need to send the BMP file to server

Now the constraint here is I need to sent the BMP file without saving in the client machine. [Note: I knew that, if it is saved in the client machine using file control or ftp method i can transfer it to server, but the file should not be stored in the client machine]

If you need some more information, please let me know

Thanks in Advance

hspc
June 16th, 2008, 02:48 AM
Is this image created in the memory?

You can send an http post request to the server to upload it. Or call a webservice method that accepts the file.

Revolution
June 16th, 2008, 11:15 AM
Yes, you're right, the image is in the memory of the client machine.

can you provide some sample or link which can be helpful to proceed

hspc
June 16th, 2008, 03:31 PM
You can check this library (http://www.codeproject.com/KB/library/lyoulhttpclient.aspx) that supports file uploads.