|
From: <pri...@hu...>
<pri...@hu...> - 2012-12-02 21:30:02
|
Dear all, I am trying to run the coap client as shown in [https://github.com/contiki-os/contiki/tree/master/examples/rest-example]. The example is the [rest-server-example.csc] under the directory [/contiki-2.6/examples/rest-example] I run with the following Makefile configuration: all: rest-server-example coap-client-example ifndef TARGET TARGET=sky endif CONTIKI=../.. WITH_UIP6=1 UIP_CONF_IPV6=1 WITH_COAP = 1 CFLAGS += -DPROJECT_CONF_H=\"project-conf.h\" ifeq ($(WITH_COAP), 1) CFLAGS += -DWITH_COAP APPS += rest-coap else CFLAGS += -DWITH_HTTP APPS += rest-http endif include $(CONTIKI)/Makefile.include $(CONTIKI)/tools/tunslip6: $(CONTIKI)/tools/tunslip6.c (cd $(CONTIKI)/tools && $(MAKE) tunslip6) connect-router: $(CONTIKI)/tools/tunslip6 sudo $(CONTIKI)/tools/tunslip6 aaaa::1/64 connect-router-cooja: $(CONTIKI)/tools/tunslip6 sudo $(CONTIKI)/tools/tunslip6 -a 127.0.0.1 aaaa::1/64 But whenever i run the coap copper client add on for java by hitting this in url the url> coap://[aaaa::0212:7402:0002:0202] or coap://[aaaa::0212:7402:0002:0202]:61616 or any combination shown in [https://github.com/contiki-os/contiki/tree/master/examples/rest-example] , i do not discover any resource in any of the nodes. Where am i wrong? Please guide me. Regards, Priyankar Bhattacharjee |