hi,
Read your Pdf as binary and send that as base64 string
File.ReadAllBytes() to load the PDF file
>> convert that bytes to base64 string Convert.ToBase64String(byt
es).
Convert that back into binary and save it as PDF
refer the below link
http://msdn.microsoft.com/en-us/library/aa528822.aspxHope this will work
Deepu