Andres Camilo Martinez Cano created THRIFT-5085:
---------------------------------------------------

             Summary: How do I execute a call to a server that supports 
multiple versions?
                 Key: THRIFT-5085
                 URL: https://issues.apache.org/jira/browse/THRIFT-5085
             Project: Thrift
          Issue Type: Question
          Components: Go - Compiler, Go - Library
    Affects Versions: 0.13.0
         Environment: 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 
            Reporter: Andres Camilo Martinez Cano
             Fix For: 0.13.0


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.

{{}}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

Reply via email to