How to send a image or a file using the web service to the server ?
Asked
Active
Viewed 814 times
2
-
i have used nuSoap with text im required to send a image though the webs service `` – Sudantha Apr 28 '11 at 12:05
-
Am I right thinking this is in PHP? If so, the question should be tagged accordingly. – Grzegorz Oledzki May 04 '11 at 18:37
2 Answers
5
Here is a good example of how to send a file using NuSOAP:
http://web.imkrisna.com/june/news/simple-file-transfer-using-nusoap/

Matt Beckman
- 5,022
- 4
- 29
- 42
1
The web service's documentation should specify the necessary format, which will probably involve base64 encoding the image data. You would do whatever encoding the web service requires and then pass it to nuSoap in the same way you already do for text.

Anomie
- 92,546
- 13
- 126
- 145