Posts

Showing posts from 2011

QT: Connect to SOAP Webservice

H ello Friends, Here, I hereby trying to show an example for How to send SOAP Post request through QT?. To create a Qt client application that connects to a SOAP/WSDL web service, I have used QT 4.7 XML packet: <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xmlns:xsd="http://www.w3.org/2001/XMLSchema"  xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <GetFullDetails xmlns="http://core-1.doubleu.mobi/MecaniqueWS"> </GetFullDetails> </soap:Body> </soap:Envelope>   QString XMLData = <Your XML Packet> MyClass obj; QString returnData = obj.httpcall(XMLData);

Android: Apply Image Share on your own app

Image
Here I am representing the code, through which user can send image which is stored in File storage or taken from camera to any remote server. To do that I wanted to add the application to the list of the choices which appear when an user click on the “share” button when view an image using the default Gallery application. I had added couple of tags to Androidmanifest.xml and it was done.... < ?xml version = "1.0" encoding = "utf-8" ?> <manifest xmlns:android = "http://schemas.android.com/apk/res/android"     package = "com.fipl.app.unlock" android:versionCode = "1"     android:versionName = "1.0" >     <application android:icon = "@drawable/icon" android:label = "@string/app_name"       android:debuggable = "true" >       <activity android:name = ".MainActivity" android:label = "@string/app_name"           android:theme = "@andr...