Saving a PDF File from client to server in c#
Hi,
I am displaying pdf file on client machine from server using byte array object in visual studio 2005 and after that i want to save a copy of the displayed pdf file on server , pls give any idea or sample code to save the copy on server using c# application
Re: Saving a PDF File from client to server in c#
Quote:
Originally Posted by
meenus
Hi,
I am displaying pdf file on client machine from server using byte array object in visual studio 2005 and after that i want to save a copy of the displayed pdf file on server...
if the server is serving the file, why the file is already on the server, no?
Re: Saving a PDF File from client to server in c#
the pdf contents are edited on client and then i wan to save the edited file on the server
Re: Saving a PDF File from client to server in c#
What king of server is it? HTTP, TCP, WCF, remoting...? If it is WCF, you can send the document via streamed channel.
Re: Saving a PDF File from client to server in c#
Re: Saving a PDF File from client to server in c#
So you can use POST or PUP methods of HTTP protocol.