L
Luft
Is it possible to pass a PDF as a parameter to a server via remoting?
If so is there a resource I can use to learn how?
Thank you.
If so is there a resource I can use to learn how?
Thank you.
Luft said:Thanks Scott. The thing is that the users are now required to save
certain documents by law and once saved they are not allowed access.
So I can't upload them because the user doesn't have write access.
Luft said:What management wants is to have a button on our Word 2007 ribbon.
When the user clicks it, the document that they are working on gets
converted to a PDF file and saved on our document storage server
automatically and all in one step from the user's perspective.
I'm thinking what I need to do is convert the document into a PDF and
save it on their PC. Read the file into a memorystream. Put the
contents of the memory stream into a byte array. Pass the byte array
to the document server via remoting. At the server end copy the
contents of the byte array back into a memorystream. Write the
memorystream to a file. Save the file to the proper location.
Hopefuly I'm on the right track here.