docsを確認してください。HTTPClientは使用する必要があるものであり、標準です。
最初のステップは、JSON フォーマットを解析する Web サービスをサーバー上に作成することです。必要な作業の大部分は Titanium とは関係ありませんが、Titanium アプリから POST を使用して JSON オブジェクトを Web サービスに送信するコードを次に示します。
var xhr_getstep = Titanium.Network.createHTTPClient();
xhr_getstep.onload = function(e) {
// Do something with the response from the server
var responseBlob = this.responseText;
};
xhr_getstep.onerror = function() {
Ti.API.info('[ERROR] WebService failed.');
};
xhr_getstep.open("POST", 'http://yourwebsite.com/yourwebserviceentry.php');
xhr_getstep.setRequestHeader("Content-Type", "application/json");
// Create your object with info on how to create the PDF
var objSend = {title : 'Amazing Title'};
xhr_getstep.send(obj); // Send it all off