Application freezes when sending a post request to the server

Deniz Yildirim
NSString *post = [NSString stringWithFormat:@"email=%@",_benimEmail]; 
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES]; 
NSString *postLength = [NSString stringWithFormat:@"%d", [postData length]];

NSMutableURLRequest *request = [[NSMutableURLRequest alloc] init]; 
[request setURL:[NSURLURLWithString:@"http://localhost:8888/iphone/msg.php"]]; 
[request setHTTPMethod:@"POST"]; 
[request setValue:postLength forHTTPHeaderField:@"Content-Length"]; 
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-Type"]; 
[request setHTTPBody:postData];

NSError *error; NSURLResponse *response; 
NSData *urlData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error]; 
NSString *veri = [[NSString alloc]initWithData:urlData encoding:NSUTF8StringEncoding]; 
NSLog(@"%@",veri);

This code above is run on a button click, and it will query a web service.

Now, when I click on the button, the application freezes for a while. How can I prevent this from happening?

Nitin Alabur

its because you are using sendSynchronousRequest.

Use sendAsynchronousRequest instead.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

JButton freezes when sending string from server

From Dev

Retrofit: Sending POST request to server in android

From Dev

PHP - Sending post request through my server

From Dev

Retrofit: Sending POST request to server in android

From Dev

Flask hangs when sending a post request to itself

From Dev

Java Unirest sends POST request with empty JSON to server running on localhost but works fine when sending the same request to cloud server?

From Java

Getting Internal Server Error when sending POST request with an image file to database using React JS and Laravel

From Dev

Error when sending http POST request from C# client to python server

From Dev

Invalid JSON when sending request to server

From Dev

Invalid JSON when sending request to server

From Dev

sending POST request to the server with AFNetworking returns internal server error (500)

From Dev

Can not get POST parameters when sending POST request with Retrofit

From Dev

Different behavior when sending POST Request through Java application and Chrome's POSTMAN Extension. How do I debug and find the mistake?

From Dev

java example for sending avro/bytes POST request to server

From Dev

Sending POST request from NODE server to payment gateway

From Dev

Sending an image and JSON data to server using Ajax POST request?

From Dev

Angular2 post request not sending proper data to server

From Dev

500 (Internal Server Error) for sending post request to aspx page

From Dev

Sending a post request behind a proxy server using idHTTP

From Dev

Sending a POST request with PHPUnit

From Dev

Sending POST request to ESB

From Dev

Sending post request in for loop

From Dev

Sending post request with libcurl

From Dev

Sending POST request rails

From Dev

Sending POST request to ESB

From Dev

Sending POST request rails

From Dev

Error on sending POST request

From Dev

Sending post request to shapeshift

From Dev

Swift - Return data from NSURLSession when sending POST request

Related Related

  1. 1

    JButton freezes when sending string from server

  2. 2

    Retrofit: Sending POST request to server in android

  3. 3

    PHP - Sending post request through my server

  4. 4

    Retrofit: Sending POST request to server in android

  5. 5

    Flask hangs when sending a post request to itself

  6. 6

    Java Unirest sends POST request with empty JSON to server running on localhost but works fine when sending the same request to cloud server?

  7. 7

    Getting Internal Server Error when sending POST request with an image file to database using React JS and Laravel

  8. 8

    Error when sending http POST request from C# client to python server

  9. 9

    Invalid JSON when sending request to server

  10. 10

    Invalid JSON when sending request to server

  11. 11

    sending POST request to the server with AFNetworking returns internal server error (500)

  12. 12

    Can not get POST parameters when sending POST request with Retrofit

  13. 13

    Different behavior when sending POST Request through Java application and Chrome's POSTMAN Extension. How do I debug and find the mistake?

  14. 14

    java example for sending avro/bytes POST request to server

  15. 15

    Sending POST request from NODE server to payment gateway

  16. 16

    Sending an image and JSON data to server using Ajax POST request?

  17. 17

    Angular2 post request not sending proper data to server

  18. 18

    500 (Internal Server Error) for sending post request to aspx page

  19. 19

    Sending a post request behind a proxy server using idHTTP

  20. 20

    Sending a POST request with PHPUnit

  21. 21

    Sending POST request to ESB

  22. 22

    Sending post request in for loop

  23. 23

    Sending post request with libcurl

  24. 24

    Sending POST request rails

  25. 25

    Sending POST request to ESB

  26. 26

    Sending POST request rails

  27. 27

    Error on sending POST request

  28. 28

    Sending post request to shapeshift

  29. 29

    Swift - Return data from NSURLSession when sending POST request

HotTag

Archive