I have sample code for doing this in C#, Windows Phone 7, Silverlight, and I'm trying to find how to do the equivalent in C++ Qt (I am working in the Blackberry 10 Beta 3 SDK). Can I use QNetworkAccessManager
? Or is there something better for this? I would appreciated some help on how to do this and some sample code if you can. Here is the sample C# code:
var request = new RestRequest(url, Method.POST);
request.AddParamater("example", "example");
request.AddParamater("example2", "example2");
request.AddFile("file", fileData, filename, "image/pjpeg");
RestSharp.RestClient restClient = new RestClient();
restClient.ExecuteAsync(request, (response) =>
{
if (response.StatusCode == HttpStatusCode.OK)
{
//upload successful
}
else
{
//error occured durring upload
}
});
Here is something I have tried:
// postVars is a QByteArray that contains a query string of the arguments
// being passed in then I pass it in to my prepareFileUploadRequest file,
// which appends the data for uploading a file.
void Utils::prepareFileUploadRequest(QMap<QString, QString> *d,
QNetworkRequest &request, QByteArray &postVars, QString path,
QString scriptName, QString filename,
QString stockNum)
{
request.setUrl(QUrl(Utils::ApiUrl));
postVars.append("Content-type: multipart/form-data, ");
postVars.append("boundary='---';\r\n\r\n");
postVars.append("---\r\n");
postVars.append("Content-Disposition: form-data; name='file' );
postVars.append("filename='examplePic.jpg'\r\n");
postVars.append("Content-Type: image/jpg\r\n");
postVars.append("Content-Transfer-Encoding: binary\r\n\r\n");
QFile file(path);
if (!file.open(QIODevice::ReadOnly)) {
return;
}
postVars.append(file.readAll() + "\r\n");
postVars.append('---');
request.
setRawHeader(QString("Content-Type").toAscii(),
QString("multipart/form-data; boundary='---'").toAscii());
request.
setRawHeader(QString("Content-Length").toAscii(),
QString::number(postVars.length()).toAscii());
QNetworkAccessManager *nam = new QNetworkAccessManager(this);
connect(nam, SIGNAL(finished(QNetworkReply *)),
this, SLOT(handleUpload(QNetworkReply *)));
nam->post(request, postVars);
}
I call that function above, and then I get an xml reply - which says I don't have permission - and it doesn't upload any file - so that's probably an issue with the php webservice that is used, but it makes it hard for me to tell if I have taken the right approach, or if I am doing anything wrong. }