objective c - JSON POST Request on the iPhone (Using HTTP) Problems -
im having problems request asp .net mvc web service. read in thread while ago possible find out server wants the request's content-type etc. no error when compiling when actual request nothing happens , in log of server says (null) (null). there no problem doing request , fethcing objects in list. can please me irritating bug? here code: //----------------get request webservice works fine---------------------------------------- nsmutableurlrequest *request = [[nsmutableurlrequest alloc] initwithurl: url]; [request sethttpmethod: @"get"]; nsdata *response = [nsurlconnection sendsynchronousrequest: request returningresponse: nil error: nil]; nsstring *stringresponse = [[nsstring alloc] initwithdata: response encoding: nsutf8stringencoding]; //nslog(@"stringresponse %@", stringresponse); //-------------------------------------------------------------------------------------------- nsstring *twittertrendsurl=@"http://search.twitter.com/trends.json"; ...