UploadString
| Method signature |
ContentProxy.UploadString(url, requestData, succeededCallback, failedCallback) |
| Input Parameters |
url |
The URL of the target location. |
| |
requestData |
Data to be POSTed |
| |
succeededCallback |
The function that is invoked when the operation succeeds. |
| |
failedCallback |
The function that is invoked if the operation fails. |
| Callback Parameter |
Content of HTTP response as string. |
| Note |
UploadString method performs HTTP POST operation and uploads the raw string to the specified URL. Useful for making SOAP calls. |
|