- (void) downloadingMessages:(NSString *)fromOpp{
NSString *queryString = [NSString
stringWithFormat:@"http://testing.com/sms_receive.asmx/receive_sms?FromPhone=%@&ToPhone%@",
fromOpp, fromNumber];
NSURL *url = [NSURL URLWithString:queryString];
NSMutableURLRequest *req = [NSMutableURLRequest requestWithURL:url];
[req addValue:@"text/xml; charset=utf-8" forHTTPHeaderField:@"Content-Type"];
[req addValue:0 forHTTPHeaderField:@"Content-Length"];
[req setHTTPMethod:@"GET"];
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:req delegate:self];
if (conn) {
webData = [[NSMutableData data] retain];
}
}