[grpc-io] Regarding the compilation of GRPC for libcrypto.a

2016-08-01 Thread Vivek Srivastava
hi I have pulled out the gRPC code from server but i am unable to compile library libcrypto.a and libssl.a , due to which i am getting cipher error. can any one suggest me how to generate these two library ? Regards Vivek Srivastava -- You received this message because you are subscribed to

Re: [grpc-io] grpc from JavaScript in the browser

2016-08-01 Thread kilaka
>From this comment , I conclude that gRPC can be used in a browser for RPC calls - except for streaming. Haven't yet found an example... On Thursday, March 12, 2015 at 9:16:

Re: [grpc-io] grpc from JavaScript in the browser

2016-08-01 Thread 'Eric Anderson' via grpc.io
I think the comment was saying possible in the theoretical sense. Not possible with code available today. On Mon, Aug 1, 2016 at 7:07 AM, wrote: > From this comment > , > I co

Re: [grpc-io] grpc from JavaScript in the browser

2016-08-01 Thread Paul Grosu
I prefer the practical sense :) By empowering users through the addition of documentation for the shared C library and how to properly create a surface API by integrating with it, for sure that will ease your pain of having to create the Jav

[grpc-io] Re: Regarding the compilation of GRPC for libcrypto.a

2016-08-01 Thread Paul Grosu
Hi Vivek, Please elaborate on the steps you took to get to this error (i.e. OS, commands that were run, and console output of the errors). Thanks, Paul On Monday, August 1, 2016 at 6:13:10 AM UTC-4, Vivek Srivastava wrote: > > hi > > I have pulled out the gRPC code from server but i am unable

[grpc-io] golang grpc: question about balancer

2016-08-01 Thread zellyn
Hi folks, A quick question about Go GRPC: if a balancer returns an address that it desires a connection to, and GRPC cannot connect to that address, how does the balancer get notified? Does GRPC call Up() and then down() for that connection? In other words, as a balancer, how do I tell the dif

Re: [grpc-io] Re: [Question] BlockingResponseStream.hasNext blocks forever

2016-08-01 Thread 'Eric Anderson' via grpc.io
It looks like isCancelled() is a bit useless right now, since it's value changes too late . Thanks for bringing this to our attention. Sorry it took so long for me to look at it. On Mon, Jul 25, 2016 at 4:55 PM, ran.bi via grpc.io < grpc-io@googlegrou

Re: [grpc-io] Re: [Question] BlockingResponseStream.hasNext blocks forever

2016-08-01 Thread 'Eric Anderson' via grpc.io
Oops. Sorry. Wrong thread. That response is actually for this issue instead. For your actual issue, I'm still wondering what version of grpc-java you're using. Also, are you using any proxy between the client and server? As a shot-in-the-dark, you m

Re: [grpc-io] German Wikipedia Article

2016-08-01 Thread Jakob Buchgraber
Hello Thomas, thanks for the article! If you are interested, I would be happy to provide some suggestions / corrections for the article and/or collaborate with you in extending it a bit :-). Thanks, Jakob On Wed, Jul 27, 2016 at 5:24 AM Louis Ryan wrote: > +cc Jakob who might be able to fill i

Re: [grpc-io] Re: grpc + appengine? Is this possible?

2016-08-01 Thread nodir via grpc.io
(shameless plug) You may find pRPC useful: basically allows you to run a gRPC service on appengine via HTTP 1. Unlike grpc, does not support streaming, supports making RPCs from the browser. https://godoc.org/github.com/luci/luci-go/grpc/prpc On Saturday, July 30, 2016 at 1:44:45 AM UTC-7, jeff

Re: [grpc-io] Re: grpc + appengine? Is this possible?

2016-08-01 Thread Ernesto Alejo
It is similar to https://github.com/grpc-ecosystem/grpc-gateway isn't it? I can see you have a CLI tool that could be great for testing and some helpers for App Engine though. On Monday, August 1, 2016 at 9:46:53 PM UTC+2, no...@google.com wrote: > > (shameless plug) > You may find pRPC useful:

Re: [grpc-io] Re: grpc + appengine? Is this possible?

2016-08-01 Thread 'Nodir Turakulov' via grpc.io
yeah, looks similar there is also UI for making RPCs with docs-from-comments and request autocompletion

[grpc-io] gRPC, proto3, and HTTP/2

2016-08-01 Thread jdover997
If I understand it correctly, by default, gRPC will encode messages using the proto3 protocol and will transmit them via HTTP/2. Is that assessment correct? TIA -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group and sto

Re: [grpc-io] gRPC, proto3, and HTTP/2

2016-08-01 Thread 'Christian Svensson' via grpc.io
Messages are serialized via Protobuf v3 and transmitted over HTTP/2 protocol by default, yes. On Mon, Aug 1, 2016 at 10:24 PM, wrote: > If I understand it correctly, by default, gRPC will encode messages using > the proto3 protocol and will transmit them via HTTP/2. > > Is that assessment correc

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

2016-08-01 Thread Caleb Epstein
What are some suggested techniques for integrating GRPC server-side processing (i.e. CompletionQueue.Next) with another library's event model? For example, can I get e.g. an eventfd on Linux that I can pass to epoll/select/etc to know when that a call to cq.Next will not block? I'm interested i

[grpc-io] How to set custom headers on a request

2016-08-01 Thread jdover997
If I wanted to add a custom header to a gRPC request, can I do that? For example, say I wanted to know which user is making the request, I'd like to add a header called "user" when making the client request. I might also want to add a header called "password" in case I wanted to authenticate th

Re: [grpc-io] bazel rules_protobuf (java)

2016-08-01 Thread 'Eric Anderson' via grpc.io
On Sun, Jul 31, 2016 at 6:26 PM, Paul Johnston wrote: > If you are new to http://bazel.io, this might be a good way to try it > out. As it will automatically install the protoc and protoc-gen-grpc-java > binaries into your workspace, it requires no configuration and may be one > of the easier wa

[grpc-io] Re: gRPC Python: Can the gRPC server be run in a per-fork worker model?

2016-08-01 Thread ssaasen
Thanks Ken for the swift reply. Much appreciated. On Saturday, July 30, 2016 at 3:11:13 AM UTC+10, Ken Payson wrote: > > Hi Stefan, > > Currently process pools are not supported. There is definitely interest > in supporting it, but the c-core extension code breaks with calls to > fork(), so im

[grpc-io] Limit max number of connections

2016-08-01 Thread Chaitanya Gangwar
Hi, Is there any way to limit maximum number of connections in grpc server ? I want to limit number of connections till 8 and after that server should reject any more new client connections. Thanks Chaitanya -- You received this message because you are subscribed to the Google Groups "grpc.

Re: [grpc-io] Re: grpc + appengine? Is this possible?

2016-08-01 Thread Jeff Kusi
Haha Nodir, So funny enough, I watched your tech talk after asking the question on here. I'm definitely going to use it :) 2016-08-01 13:13 GMT-07:00 Nodir Turakulov : > yeah, looks similar > there is also UI for making RPCs with docs-from-comments and request > autocompletion >

Re: [grpc-io] Re: grpc + appengine? Is this possible?

2016-08-01 Thread Ankur Chauhan
Do you have a link to the tech talk. I would be very interested in something like that. On Mon, Aug 1, 2016 at 9:53 PM Jeff Kusi wrote: > Haha Nodir, > > So funny enough, I watched your tech talk after asking the question on > here. > I'm definitely going to use it :) > > 2016-08-01 13:13 GMT-07

Re: [grpc-io] Re: grpc + appengine? Is this possible?

2016-08-01 Thread 'Nodir Turakulov' via grpc.io
a blog post and the tech talk: http://nodir.io/post/138899670556/prpc On Mon, Aug 1, 2016 at 11:19 PM Ankur Chauhan wrote: > Do you have a link to the tech talk. I would be very interested in > something like that. > > On Mon, Aug 1, 2016 at 9:53 PM Jeff Kusi wrote: > >> Haha Nodir, >> >> So fu