org.eclipse.californium.core.coap.Request.send()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(7.0k)|赞(0)|评价(0)|浏览(300)

本文整理了Java中org.eclipse.californium.core.coap.Request.send方法的一些代码示例,展示了Request.send的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.send方法的具体详情如下:
包路径:org.eclipse.californium.core.coap.Request
类名称:Request
方法名:send

Request.send介绍

[英]Sends the request over the default endpoint to its destination and expects a response back.
[中]通过默认端点将请求发送到其目标,并期望得到响应。

代码示例

代码示例来源:origin: eclipse/californium

  1. public static void selfTest() {
  2. try {
  3. Request request = Request.newGet();
  4. request.setURI("localhost:5683/benchmark");
  5. request.send();
  6. Response response = request.waitForResponse(1000);
  7. System.out.println("received "+response);
  8. } catch (Exception e) {
  9. e.printStackTrace();
  10. }
  11. }
  12. }

代码示例来源:origin: org.opendaylight.iotdm/onem2m-protocol-coap

  1. @Override
  2. public void sendNotification(String url, String payload) {
  3. Request request = Request.newPost();
  4. request.setURI(url);
  5. request.setPayload(payload);
  6. request.send();
  7. LOG.debug("CoAP: Send notification uri: {}, payload: {}:", url, payload);
  8. }

代码示例来源:origin: eclipse/californium

  1. request.send();
  2. if (sync) {
  3. request.waitForResponse(5000);

代码示例来源:origin: eclipse/californium

  1. private static boolean ping(String address) {
  2. try {
  3. Request request = new Request(null);
  4. request.setType(Type.CON);
  5. request.setToken(new byte[0]);
  6. request.setURI(address);
  7. System.out.println("++++++ Sending Ping ++++++");
  8. request.send().waitForResponse(5000);
  9. return request.isRejected();
  10. } catch (Exception e) {
  11. e.printStackTrace();
  12. return false;
  13. }
  14. }

代码示例来源:origin: eclipse/californium

  1. boolean success = true;
  2. request.send();

代码示例来源:origin: eclipse/californium

  1. outgoingRequest.send();

代码示例来源:origin: org.eclipse.californium/californium-proxy

  1. outgoingRequest.send();

代码示例来源:origin: eclipse/californium

  1. request.send();
  2. response = request.waitForResponse(6000);
  3. request.send();
  4. response = request.waitForResponse(6000);

代码示例来源:origin: org.eclipse.leshan/leshan-server-cf

  1. postSecurity.setPayload(encoded.array());
  2. postSecurity.send(e).addMessageObserver(new MessageObserver() {

代码示例来源:origin: org.eclipse.leshan/leshan-server-cf

  1. postServer.setDestinationPort(targetPort);
  2. postServer.setPayload(encoded.array());
  3. postServer.send(e).addMessageObserver(new MessageObserver() {
  4. @Override
  5. public void onTimeout() {

代码示例来源:origin: eclipse/californium

  1. private void sendRequestAndExpect(String expected) throws Exception {
  2. System.out.println();
  3. Thread.sleep(100);
  4. Request request = Request.newGet();
  5. request.setURI("localhost:"+serverPort+"/res");
  6. String response = request.send().waitForResponse(1000).getPayloadString();
  7. Assert.assertEquals(expected, response);
  8. }

代码示例来源:origin: org.opendaylight.iotdm/onem2m-protocol-coap

  1. coapRequest.send();
  2. Response coapResponse = coapRequest.waitForResponse();
  3. if (null == coapResponse) {

代码示例来源:origin: eclipse/californium

  1. /**
  2. * Verifies that the server cleans up all exchanges after serving a NON GET.
  3. *
  4. * @throws Exception if the test fails.
  5. */
  6. @Test
  7. public void testSimpleNONGet() throws Exception {
  8. String uri = uriOf(URI);
  9. LOGGER.log(Level.FINE, "Test simple NON GET to {0}", uri);
  10. String currentResponseText = "simple NON GET";
  11. resource.setResponse(currentResponseText, Mode.PIGGY_BACKED_RESPONSE);
  12. Request request = Request.newGet();
  13. request.setURI(uri);
  14. request.setType(Type.NON);
  15. Response response = request.send(clientEndpoint).waitForResponse(ACK_TIMEOUT);
  16. assertThat("Client did not receive response to NON request in time", response, is(notNullValue()));
  17. LOGGER.log(Level.FINE, "Client received response [{0}] with msg type [{1}]", new Object[]{response.getPayloadString(), response.getType()});
  18. assertThat(response.getPayloadString(), is(currentResponseText));
  19. assertThat(response.getType(), is(Type.NON));
  20. }

代码示例来源:origin: eclipse/californium

  1. @Test
  2. public void testNonconfirmable() throws Exception {
  3. createSimpleServer();
  4. // send request
  5. Request request = new Request(CoAP.Code.POST);
  6. request.setConfirmable(false);
  7. request.setDestination(InetAddress.getLoopbackAddress());
  8. request.setDestinationPort(serverPort);
  9. request.setPayload("client says hi");
  10. request.send();
  11. System.out.println("client sent request");
  12. // receive response and check
  13. Response response = request.waitForResponse(1000);
  14. assertNotNull("Client received no response", response);
  15. System.out.println("client received response");
  16. assertEquals(response.getPayloadString(), SERVER_RESPONSE);
  17. }

代码示例来源:origin: eclipse/californium

  1. String resp1 = Request.newGet().setURI(base+NAME_1).send().waitForResponse(1000).getPayloadString();
  2. Assert.assertEquals(PAYLOAD, resp1);
  3. String resp2 = Request.newGet().setURI(base+NAME_1+"/"+CHILD).send().waitForResponse(1000).getPayloadString();
  4. Assert.assertEquals(CHILD_PAYLOAD, resp2);
  5. String resp3 = Request.newGet().setURI(base+NAME_2).send().waitForResponse(1000).getPayloadString();
  6. Assert.assertEquals(PAYLOAD, resp3);
  7. String resp4 = Request.newGet().setURI(base+NAME_2+"/"+CHILD).send().waitForResponse(1000).getPayloadString();
  8. Assert.assertEquals(CHILD_PAYLOAD, resp4);
  9. ResponseCode code1 = Request.newGet().setURI(base+NAME_1).send().waitForResponse(1000).getCode();
  10. Assert.assertEquals(ResponseCode.NOT_FOUND, code1);
  11. ResponseCode code2 = Request.newGet().setURI(base+NAME_1+"/"+CHILD).send().waitForResponse(1000).getCode();
  12. Assert.assertEquals(ResponseCode.NOT_FOUND, code2);

代码示例来源:origin: org.eclipse.leshan/leshan-server-cf

  1. deleteAll.setDestinationPort(exchange.getSourcePort());
  2. deleteAll.send(e).addMessageObserver(new MessageObserver() {

代码示例来源:origin: eclipse/californium

  1. @Test
  2. public void testConfirmable() throws Exception {
  3. // send request
  4. Request req2acc = new Request(Code.POST);
  5. req2acc.setConfirmable(true);
  6. req2acc.setURI(getUri(ACC_RESOURCE));
  7. req2acc.setPayload("client says hi");
  8. req2acc.send();
  9. // receive response and check
  10. Response response = req2acc.waitForResponse(1000);
  11. assertPayloadIsOfCorrectType(response, SERVER_RESPONSE, Type.CON);
  12. Request req2noacc = new Request(Code.POST);
  13. req2noacc.setConfirmable(true);
  14. req2noacc.setURI(getUri(NO_ACC_RESOURCE));
  15. req2noacc.setPayload("client says hi");
  16. req2noacc.send();
  17. // receive response and check
  18. response = req2noacc.waitForResponse(1000);
  19. assertPayloadIsOfCorrectType(response, SERVER_RESPONSE, Type.ACK);
  20. }

代码示例来源:origin: eclipse/californium

  1. @Test
  2. public void testNonConfirmable() throws Exception {
  3. // send request
  4. Request req2acc = new Request(Code.POST);
  5. req2acc.setConfirmable(false);
  6. req2acc.setURI(getUri(ACC_RESOURCE));
  7. req2acc.setPayload("client says hi");
  8. req2acc.send();
  9. // receive response and check
  10. Response response = req2acc.waitForResponse(1000);
  11. assertPayloadIsOfCorrectType(response, SERVER_RESPONSE, Type.NON);
  12. Request req2noacc = new Request(Code.POST);
  13. req2noacc.setConfirmable(false);
  14. req2noacc.setURI(getUri(NO_ACC_RESOURCE));
  15. req2noacc.setPayload("client says hi");
  16. req2noacc.send();
  17. // receive response and check
  18. response = req2noacc.waitForResponse(1000);
  19. assertPayloadIsOfCorrectType(response, SERVER_RESPONSE, Type.NON);
  20. }

代码示例来源:origin: eclipse/californium

  1. requestA.setURI(uriX);
  2. requestA.setObserve();
  3. requestA.send();
  4. requestB.send();

代码示例来源:origin: eclipse/californium

  1. request.getOptions().setBlock2(szx, false, num);
  2. Response response = request.send().waitForResponse(1000);
  3. Assert.assertNotNull("Client received no response", response);
  4. Assert.assertEquals(expectations[i], response.getPayloadString());

相关文章