Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cf-dev] CoAP Proxy unable to resolve localhost address

Dear Californium developers,

We are experiencing an issue where when we have only one network interface with 3 different IPv6 addresses, the HTTP to CoAP proxy doesn't work and prints the following message

Temporary failure in name resolution

We believe the issue is to do with HttpTranslator.java at line 468-472

// TODO check with multihomed hosts
InetAddress localHostAddress = InetAddress.getLocalHost();
coapRequest.setDestination(localHostAddress);

Back to the top