Uploaded image for project: 'Thrift'
  1. Thrift
  2. THRIFT-5085

How do I execute a call to a server that supports multiple versions?

    XMLWordPrintableJSON

Details

    • Question
    • Status: Resolved
    • Major
    • Resolution: Information Provided
    • 0.13.0
    • None
    • Go - Compiler, Go - Library
    • None
    • OS:macOS

      On the client-side, I've got auto-generated code for go
      On the server-side, I've got auto-generated code for java 

    Description

      Hi, my apologies beforehand If I say something strange or weird. I'm still quite new to thrift but I love it so far.

      I have a thrift file that supports two services like so(both services use the same structs):

      service PositionService {
       PositionDTO findPosition(1:PositionInputDTO) throws (1: PositionServiceException e);
       }
      
      service PositionServiceV2 {
       PositionDTO findPosition(1:PositionInputDTO) throws (1: PositionServiceException e),
       OwnerStoresListDTO listPositions(1:ListPositionInputDTO)  throws (1:PositionServiceException e);
       }
       

      What I'm currently trying to do is to call the method {{listPositions from the {{PositionServiceV2 }}but when I execute the call I keep receiving the error message "Invalid method name: listPositions" which makes me think that my call is being directed towards the PositionService even though I'm using the PostionServiceV2Client to make the call for this. Please help I don't know how to make this work. 

       

      Attachments

        Activity

          People

            jensg Jens Geyer
            amartinez Andres Martinez
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: