Re: Thrift Java Client in Windows

2019-01-30 Thread Keerthi N
Thank you so much. That's helpful. -Keerthi On Tue, Jan 29, 2019 at 6:03 PM James E. King III wrote: > If you use gradle to build your project you could add this to make it pull > in the most recent version: > > from: > https://mvnrepository.com/artifact/org.apache.thrift/libthrift/0.12.0 > (gr

Re: Thrift Java Client in Windows

2019-01-29 Thread James E. King III
If you use gradle to build your project you could add this to make it pull in the most recent version: from: https://mvnrepository.com/artifact/org.apache.thrift/libthrift/0.12.0 (gradle tab): compile group: 'org.apache.thrift', name: 'libthrift', version: '0.12.0' or if you want to use ant and

Re: Thrift Java Client in Windows

2019-01-29 Thread Randy Abernethy
Windows dev tools are not famous for being Java friendly. I think you'd have a lot better luck and certainly less friction with netbeans, IntelliJ or eclipse, all of which run well on Windows. There's a simple example maven POM based project that will work on Windows with all of the above here: htt

Thrift Java Client in Windows

2019-01-29 Thread Keerthi N
Hello, I'm trying to execute Java server and client for thrift. I'm currently using windows so I downloaded thrift.exe file from thrifit offical website and I'm able to successfully gen java code. I have written desired Java server and client code in visual studio code and tried 3 options here s