iCoAP
iCoAP copied to clipboard
Objective-C Client Implementation of CoAP - RFC 7252
Hi, We are using this library in our app and it works great! However, we are facing following issues while using the library in a multi-threaded environment, when multiple request...
``` - (IBAction)onTapSend:(id)sender { [self.textField resignFirstResponder]; ICoAPMessage *cO = [[ICoAPMessage alloc] initAsRequestConfirmable:YES requestMethod:IC_GET sendToken:YES payload:@""]; [cO addOption:IC_URI_PATH withValue:@"obs-non"]; [cO addOption:IC_OBSERVE withValue:@"0"]; if (!iExchange) { iExchange = [[ICoAPExchange alloc] initAndSendRequestWithCoAPMessage:cO toHost:@"wsncoap.org"...
Hello Stuffrabbit, I am having a file which is having a name with 2 or more special characters. When I send request JSON I don't get the proper response (response...