2

I have .Net client that sends files.

How can i use PHP web service to get those files and return them after some changes back to client??

I didn't found code to GET those files, maybe someone have a code example...

Oleg
  • 381
  • 1
  • 5
  • 15

1 Answers1

0

You can send the file data encoded in Base64 from the client to your PHP web service, and handle them with the $_FILES superglobal. There is a similar topic here : PHP SOAP Transfering Files

Community
  • 1
  • 1
Epoc
  • 7,208
  • 8
  • 62
  • 66