14
votes

I tried to post my textFiled data to Server.but when posting I got this error:

Error: Error Domain=kCFErrorDomainCFNetwork Code=303 "The operation couldn’t be completed. (kCFErrorDomainCFNetwork error 303.)" UserInfo=0x13786c60 {NSErrorFailingURLKey=http://192.168.3.125:8090/SaveDollar/rest/deals/add, NSErrorFailingURLStringKey=http://192.168.3.125:8090/SaveDollar/rest/deals/add}

I do not understand this error.

2
what you set in HTTPMethod ?iBhavin
@iBhavin [request setHTTPMethod:@"GET"];user3839375
just set it to POST .iBhavin
@iBhavin k but i need get responce alsouser3839375
@iBhavin i have given request method GET in Servicesuser3839375

2 Answers

7
votes

Is a parsing error from the server, when its response can't be parsed. You can look up the error codes in the CFNetworkErrors reference.

Make sure you set HTTPMethod to POST

6
votes