shri-arunraj opened a new issue, #158:
URL: https://github.com/apache/servicecomb-mesher/issues/158

   I have java chassis SDK based `serviceA` talks to mesher acting as sidecar 
proxy for the python based `serviceB`.
   When I call serviceB operations via mesher with restclient like this
   
   ```
                 RestTemplate restTemplate = RestTemplateBuilder.create();
            String result =
                    
restTemplate.getForObject("cse://testApp:shippingservice/shippingservice/bmi?height={height}&weight={weight}"
                                , null, 
String.class,request.getHeight(),request.getWeight());
   
   ```
   
   I am always ended up in `Message Not Found` Error.
   
   
   Then I realised that mesher would not know about the schema/operations 
supported by the sidecar main microservice which it proxies.
   
   So the question is how to register the schema in mesher with the operations 
supported in the microservice in `serviceB`
   I have tried creating schema `yaml` file and put it under `mesher/conf` 
folder. But it does not work. The schemas are not getting uploaded or 
registered in the service center.
   
   Please suggest how to make intercommunication from serviceA to serviceB 
through mesher?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@servicecomb.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to