/

//  Web.h

//

//  Created by 현경원 on 10. 2. 25..

//


#import <Foundation/Foundation.h>



@interface Web : NSObject {

    NSMutableData *receivedData;

    NSURLResponse *response;

    NSString *result;

    bool bIsComplete;

}


- (NSString *)requestUrl:(NSString *)url bodyObject:(NSString *)strData;

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)aResponse;

- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data;

- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error;

- (void)connectionDidFinishLoading:(NSURLConnection *)connection;


@property (nonatomic, retain) NSMutableData *receivedData;

@property (nonatomic, retain) NSURLResponse *response;

@property (nonatomic, assign) NSString *result;


@end



//

//  Web.m

//

//  Created by 현경원 on 10. 2. 25..

//


#import "Web.h"


@implementation Web


@synthesize receivedData;

@synthesize response;

@synthesize result;


- (NSString *)requestUrl:(NSString *)url bodyObject:(NSString *)strData

{

    // URL Request 객체 생성

    NSMutableURLRequest *httpRequest = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:url]

                                                           cachePolicy:NSURLRequestUseProtocolCachePolicy

                                                       timeoutInterval:15.0f];

    

    // 통신방식 정의 (POST, GET)

    //[request setHTTPMethod:@"POST"];

    if ( [strData length] > 0 )

    {

        NSString *strDatalength = @"";

        strDatalength = [strDatalength stringByAppendingFormat:@"%d",strData.length];

        [httpRequest setHTTPMethod:@"POST"];

        [httpRequest setValue:@"Mozilla/5.0 (iPod; U; CPU iPhone OS 3_0 like Mac OS X; en-us)     AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16" forHTTPHeaderField:@"User-Agent"];

        [httpRequest setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"];

        [httpRequest setValue:strDatalength forHTTPHeaderField:@"Content-Length"];

        [httpRequest setHTTPBody:[strData dataUsingEncoding:NSUTF8StringEncoding]];  

    }

    else

    {

        [httpRequest setHTTPMethod:@"GET"];

    }

    

    // Request 사용하여 실제 연결을 시도하는 NSURLConnection 인스턴스 생성

    NSURLConnection *connection = [[[NSURLConnection alloc] initWithRequest:httpRequest delegate:self] autorelease];

    

    // 정상적으로 연결이 되었다면

    if(connection)

    {

        // 데이터를 전송받을 멤버 변수 초기화

        receivedData = [[NSMutableData alloc] init];

 

        // bIsComplete 변수가 YES 될때까지 대기 = 동기

        // 주석처리 = 비동기

        bIsComplete = NO;

        while (!bIsComplete)

        {

            [[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:1]];

        }

    }

    

    return result;

}


- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)aResponse

{

    // 데이터를 전송받기 전에 호출되는 메서드, 우선 Response 헤더만을 먼저 받아 온다.

    [receivedData setLength:0];

    self.response = aResponse;

}


- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data

{

    // 데이터를 전송받는 도중에 호출되는 메서드, 여러번에 나누어 호출될 있으므로 appendData 사용한다.

    [receivedData appendData:data];

}


- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error

{

    // 에러가 발생되었을 경우 호출되는 메서드

    NSLog(@"Error: %@", [error localizedDescription]);

}


- (void)connectionDidFinishLoading:(NSURLConnection *)connection

{

    // 데이터 전송이 끝났을 호출되는 메서드, 전송받은 데이터를 NSString형태로 변환한다.

    // 응답헤더의 인코딩 형식으로 데이터를 인코딩

    NSString *strEncoding = [response textEncodingName];

   

    if ( [strEncoding isEqualToString:@"utf-8"] )

    {

        //UTF-8

        result = [[NSString alloc] initWithData:receivedData encoding:NSUTF8StringEncoding];

    }

    

    else

    {

        //EUC-KR

        result = [[NSString alloc] initWithData:receivedData encoding:-2147481280];

    }

 

    bIsComplete = YES;

}


- (void)dealloc

{

    [receivedData release];

    [response release];

    [result release];

    [super dealloc];

}


@end

'개발지식창고 > iOS' 카테고리의 다른 글

[iOS] sqlite3 사용법  (0) 2014.01.16
[iOS] http 통신  (0) 2014.01.15
NSString (유니코드) -> NSString (한글) 값 변환  (0) 2014.01.12
[iOS] Json 파싱  (0) 2014.01.12
[Object c]함수 선언 및 호출 방법 예제  (0) 2014.01.10
Posted by 모과이IT
,