iOS アプリケーションと Joomla Web サイト間の通信を行うための Web サービスを作成しました。GET メソッドを使用して、モバイル アプリケーションと Web サービス間、および Web サービスとコントローラー間の通信を行いました (PHP ファイルを実行する作業してデータを返す) が、実装を POST メソッドに変換する方法が見つかりませんでした。実際のシステムは次のとおりです。
ws.php : Web サービスです (簡単な例)
<?php
$id = $_GET['id'] ; // get the data from the URL
// here i make testes
// then I redirect to the controller of the Joomla component that receive
// the call of the request the URL is actually the attribute "action" of
// an existing HTML Form that implement the login system, I added a
// parameter called web service to help me to modify the controller
// to make the difference between a normal call and a web service call
header("Location: index.php?option=com_comprofiler&task=login&ws=1&id=1");
?>
Controller.php : Web サービス呼び出しと Web 呼び出し (ブラウザーから) の受信側
<?php
// code added by me, in the existent controller of the component
// it was waiting for a form submitting, so I got to convert my data to POST here
if (isset($_GET['ws'])) // it's a web service call
{
$_POST['id'] = $_GET['id'] ;
// do the task ...
if ($correctLogin) // just an example
echo "1"
else
echo '0';
}
?>
実際の実装は載せませんでした、システムの簡単な例ですが、同じです
携帯から電話
NSURL *url = [[NSURL alloc]initWithString:@"http://localhost/ws.php?id=1"];
NSData *dataUrl= [NSData dataWithContentsOfURL:url];
NSString *str = [[NSString alloc]initWithData:dataUrl
encoding:NSUTF8StringEncoding];
if(![str isEqualToString:@"0"])
NSLog(@"connected");
else
NSLog(@"not connected");
GETメソッドを使用したくないので、POSTを使用してモバイルからデータを受信し、POSTを使用してコントローラーにデータを送信したいだけですが、最善の解決策は何ですか?