Skip to main content
1-Visitor
February 10, 2022
Question

How to get response of one service into another service

  • February 10, 2022
  • 1 reply
  • 1337 views

Hello,

 

 

 

I have created two things

 

1 Device

 

2 Databasecontroller

 

 

 

1. In first thing(Device) I have written below code in service.

 

    let result = jsonmessage;

 

2. In second thing(DatabaseController) I want response of Device thing service using below code

 

    var serviceName = "ConvertData";
    let result=Things["Device"][serviceName]();

 

 

 

it is returning blank data.

1 reply

22-Sapphire I
February 10, 2022

You can call the first service from the second service.

1-Visitor
February 11, 2022

Hi,

 How to pass one service data(response) to another service?

22-Sapphire I
February 14, 2022

A service has a return, so in the second service set whatever you want to output as the result and set the output to the proper base type.