How to transfer a file using Webservices

  • Thread starter Thread starter Joby
  • Start date Start date
J

Joby

Dear All,
I want to transfer a file from Pocket PC to server. Could you please
explaine me how to transfer a file from PDA to server using
Webservices or do we have any other options.

Thanking you All.

regards
Joby M.Chacko
 
the easiest way is to just transfer it as a byte [].
you will have to base64 encode the file to transfer,
this adds about 30% to the original file size.
the service will then un-base64 to work with the file.

else, you can use DIME.
the server could use WSE 1.0 or WSE 2.0.
the client side piece would use the code from here:
http://www.brains-N-brawn.com/spWSE
you can get the DIME download from there.
it will work against WSE 1.0 and WSE 2.0.
you'll want to download the sample code for how to call it too.

Thanks,
casey

William Ryan eMVP said:
Look to the master himself, Casey Chesnut -
ttp://www.brains-n-brawn.com -
 
Back
Top