3

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を使用してコントローラーにデータを送信したいだけですが、最善の解決策は何ですか?

4

1 に答える 1

1

アプリで POST メソッドを使用してデータを送信する場合は、このコードを使用します。それが役立つことを願っています。

ディクショナリ オブジェクトで送信するデータを取得します。データを POST として送信するようにエンコードし、応答を返します (結果を文字列形式にしたい場合は、データを返すときに [[NSString alloc] initWithData:dresponse encoding: NSASCIIStringEncoding]; を使用できます)

-(NSData*) getData:(NSDictionary *) postDataDic{

    NSData *dresponse = [[NSData alloc] init];

    NSURL *nurl = [NSURL URLWithString:url];
    NSDictionary *postDict = [[NSDictionary alloc] initWithDictionary:postDataDic];
    NSData *postData = [self encodeDictionary:postDict];

    // Create the request
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:nurl];
    [request setHTTPMethod:@"POST"]; // define the method type
    [request setValue:[NSString stringWithFormat:@"%d", postData.length] forHTTPHeaderField:@"Content-Length"];
    [request setValue:@"application/x-www-form-urlencoded charset=utf-8" forHTTPHeaderField:@"Content-Type"];
    [request setHTTPBody:postData];

        // Peform the request
        NSURLResponse *response;
        NSError *error = nil;

        dresponse = [NSURLConnection sendSynchronousRequest:request  
                                                     returningResponse:&response
                                                                 error:&error];

    return dresponse;
}

このメソッドは、POST 用の Dictionary データを準備します。

- (NSData*)encodeDictionary:(NSDictionary*)dictionary {
    NSMutableArray *parts = [[NSMutableArray alloc] init];
    for (NSString *key in dictionary) {
        NSString *encodedValue = [[dictionary objectForKey:key] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
        NSString *encodedKey = [key stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]; 
        NSString *part = [NSString stringWithFormat: @"%@=%@", encodedKey, encodedValue];
        [parts addObject:part];
    }
    NSString *encodedDictionary = [parts componentsJoinedByString:@"&"];
    return [encodedDictionary dataUsingEncoding:NSUTF8StringEncoding];
}
于 2013-02-09T21:06:16.047 に答える