hi,
i need to develop a SOAP and xml application on the embedded device.is it possible by using the Qt 4.4.3 opensource toolkit.please give suggestions for other alternatives if present.
thank u in advance
Printable View
hi,
i need to develop a SOAP and xml application on the embedded device.is it possible by using the Qt 4.4.3 opensource toolkit.please give suggestions for other alternatives if present.
thank u in advance
write or convert your xml to send pack it on function like:
If you dont have login & logout search soa on http://doc.trolltech.com/qq/index.html
Code:
void SoaRequest::Login() { qDebug() << "### soa Login ACTION ###################"; Stream = Stream.replace("_PASS_",decodeBase64(setter.value("tijava/pass").toString())); Stream = Stream.replace("_USER_",decodeBase64(setter.value("tijava/user").toString())); ResetSession(); Send(Stream,_URLSYSTEM_,1); } void SoaRequest::Logout() { qDebug() << "### soa Logout ACTION ###################"; Stream = Stream.replace("_SESSION_",WebSessionCurrent); qDebug() << "### soa logout -> " << WebSessionCurrent; Send(Stream,_URLSYSTEM_,0); ResetSession(); }
Debug your xml soa on...
http://www.qt-apps.org/content/show....?content=76432