Re: [grpc-io] Re: Windows Linker Errors after release-0_15_1

2016-08-26 Thread 'Nicolas Noble' via grpc.io
The master branch doesn't have the fix yet. We will upmerge shortly. I would advise against using master anyway, unless you want to alpha test some of the new features there. On Fri, Aug 26, 2016, 18:40 John Coffey wrote: > Thanks, I notice that shortly after I switched over

[grpc-io] Re: Windows Linker Errors after release-0_15_1

2016-08-26 Thread John Coffey
Thanks, I notice that shortly after I switched over to the master build and the problem went away, however its back again on the master build. Did you come up with a workaround - I build with Visual Studio 2015 John On Thursday, August 25, 2016 at 7:01:00 AM UTC-4, sta...@gmail.com wrote: > >

Re: [grpc-io] Get google's from grpc C++

2016-08-26 Thread Paul Grosu
Dear Manh, I have never worked with the Speech APIs, but after downloading, compiling the googleapis on GitHub for the Speech API - and studying the proto-generated code - I was able to put together and compile the following client.cc code with no

Re: [grpc-io] Re: how does grpc handle DNS address changes?

2016-08-26 Thread Yaz Saito
Sorry for delay. I just checked the behavior with grpc-1.0.0, and the things are working as expected. On Thu, Aug 18, 2016 at 5:19 PM, Abhishek Parmar wrote: > This one is c++. > > On Thu, Aug 18, 2016 at 5:16 PM, 'Craig Tiller' via grpc.io < > grpc-io@googlegroups.com>

Re: [grpc-io] pubsub examples?

2016-08-26 Thread 'Varun Talwar' via grpc.io
hi mark, message queuing patterns usually involve a broker. For your use case, sounds like point to point will suffice. If that is true, gRPC should work well for mentioned languages. On Fri, Aug 26, 2016 at 3:13 AM, Mark NS wrote: > Hi, > > I'm looking into using

Re: [grpc-io] Re: Strategy for distributing protobuf APIs

2016-08-26 Thread Nicolas Noble
The grpc API is stable now since 1.0, so distributing generated sources, while not recommended, sound work. But you should consider distributing the proto alongside anyway. Maybe someone wants to communicate with your service in another language than Java? On Aug 26, 2016 08:10, "Paul Johnston"

[grpc-io] Strategy for distributing protobuf APIs

2016-08-26 Thread Mario Steinhoff
Hey everyone, I have two Java services A and B. A provides RPC services via gRPC and contains a proto file with service and message definitions. Now in B, I want to call services from A. Currently, I am not distributing the proto file but compile the proto file into Java classes and create a JAR

Re: [grpc-io] Re: Integration of CompletionQueue with 3rd Party Event Loop

2016-08-26 Thread Nicolas Noble
We do have some plans to expose this in the future, as part of the public API, but since our internal API changed and evolved much over time, and still does, we didn't want to freeze it just yet, as we don't want to force ourselves to commit to something that could still be improved. When we are

[grpc-io] Re: Link error on boringssl when trying to build grpc for C++. Cannot open sha1-586.obj

2016-08-26 Thread joestaines1
Hmm i only thought this was the only linker error as i was building from incredibuild. But there is actually 900+ linker errors. Clearly something has gone terribly wrong On Thursday, August 25, 2016 at 11:27:00 AM UTC+1, joest...@gmail.com wrote: > > LINK : fatal error LNK1181: cannot open

[grpc-io] pubsub examples?

2016-08-26 Thread Mark NS
Hi, I'm looking into using gRPC for a line-of-business app with 10-100 users. Python server side, C# client side. The server side application is stateful, and clients will have both request-response and streaming communications. I was previously working with ZeroMQ (changing to gRPC for

Re: [grpc-io] Get google's access token from google cloud

2016-08-26 Thread Manh Tran
Dear Yang, I've created the channel with GoogleDefaultCredentials() as the following code and streaming audio to google cloud speech. But google cloud not response. *..* *using google::cloud::speech::v1beta1::Speech;* *class GoogleClient {* * public:* * GoogleClient(std::shared_ptr channel)*

Re: [grpc-io] Get google's from grpc C++

2016-08-26 Thread Manh Tran
Dear Paul, I've got JSON file from Google console. I've also export GOOGLE_APPLICATION_CREDENTIALS and use the code following to connect google cloud speech to recognize streaming audio. But it seem google cloud not response. *..using google::cloud::speech::v1beta1::Speech;class

Re: [grpc-io] Get google's from grpc C++

2016-08-26 Thread Manh Tran
Dear Paul, The my credentials-key.json have format: *{* * "type": "service_account",* * "project_id": "",* * "private_key_id": "",* * "private_key": "",* * "client_email": "",* * "client_id": "",* * "auth_uri": "https://accounts.google.com/o/oauth2/auth",* * "token_uri":

Re: [grpc-io] Re: Windows Linker Errors after release-0_15_1

2016-08-26 Thread Nicolas Noble
If that's the case, this solves it: https://github.com/grpc/grpc/pull/7828 On Thu, Aug 25, 2016 at 4:00 AM, wrote: > Hi there, > > I have the same problem. Link C++ library built from 1.0.0 tag by Visual > Studio project, show unresolved reference error to Channel and Server