Re: [grpc-io] Custom Endpoint

2016-10-07 Thread Robert Bielik
Ok, I did "grep -r -i gRPC_SSL_PROVIDER ." but got no hits at all (I'm on tag v1.0.0) ? 2016-10-08 8:04 GMT+02:00 Nicolas Noble : > As I said, you can skip boringssl by setting gRPC_SSL_PROVIDER to none. > > On Fri, Oct 7, 2016 at 11:02 PM, Robert Bielik > wrote: > >> In the boringssl CMakeList

Re: [grpc-io] Custom Endpoint

2016-10-07 Thread Nicolas Noble
As I said, you can skip boringssl by setting gRPC_SSL_PROVIDER to none. On Fri, Oct 7, 2016 at 11:02 PM, Robert Bielik wrote: > In the boringssl CMakeLists.txt file: > > if (NOT GO_EXECUTABLE) > message(FATAL_ERROR "Could not find Go") > endif() > > so, yes, the cmakelists build system require

Re: [grpc-io] Custom Endpoint

2016-10-07 Thread Robert Bielik
In the boringssl CMakeLists.txt file: if (NOT GO_EXECUTABLE) message(FATAL_ERROR "Could not find Go") endif() so, yes, the cmakelists build system requires Go. 2016-10-07 17:43 GMT+02:00 Nicolas Noble : > Wait. The cmakefile itself doesn't require to have go. What's going on > exactly? Is it

Re: [grpc-io] grpc go : how to know in server side, when client closes the connection

2016-10-07 Thread 'Qi Zhao' via grpc.io
On Fri, Oct 7, 2016 at 3:00 AM, wrote: > > i am able to locate the place where connection is removed. the print on > line 504 is printed once per connection (irrespective of number of > operations in it) > > > 498 func (s *Server) removeConn(c io.Closer) { > 499 s.mu.Lock() > 500 defer s.

Re: [grpc-io] Repeated returns empty, Java 8, Maven, NetBeans 8.1

2016-10-07 Thread Tim McManamey
https://gist.github.com/tmcmanameyunl/e3b3a8ec34c35c47ff4d8b378f643ef5 On Friday, October 7, 2016 at 11:05:20 AM UTC-5, Louis Ryan wrote: > > Tim, > > Any chance you can put your code into a PR on Github or a Gist to make it > easier to reivew? > > - Louis > > On Fri, Oct 7, 2016 at 6:11 AM,

Re: [grpc-io] Custom Endpoint

2016-10-07 Thread Robert Bielik
Ok, I'm just beginning to scratch the grpc cmake surface. I have quite a few things to setup for v1.0 I see. Den 7 okt 2016 17:43 skrev "Nicolas Noble" : > Wait. The cmakefile itself doesn't require to have go. What's going on > exactly? Is it the cmakefile of boringssl which requires it? Define

Re: [grpc-io] Repeated returns empty, Java 8, Maven, NetBeans 8.1

2016-10-07 Thread 'Louis Ryan' via grpc.io
Tim, Any chance you can put your code into a PR on Github or a Gist to make it easier to reivew? - Louis On Fri, Oct 7, 2016 at 6:11 AM, Tim McManamey wrote: > Updated code is below. Still doesn't work after calling .addMessage2(str) > > On Thursday, October 6, 2016 at 6:25:57 PM UTC-5, Louis

Re: [grpc-io] Custom Endpoint

2016-10-07 Thread 'Nicolas Noble' via grpc.io
Wait. The cmakefile itself doesn't require to have go. What's going on exactly? Is it the cmakefile of boringssl which requires it? Define gRPC_SSL_PROVIDER to none when calling or cmakefile and we won't include anything. On Oct 7, 2016 07:31, "Robert Bielik" wrote: > Yes, true, but my whole pro

Re: [grpc-io] Re: gRPC on .NET core: how can I help

2016-10-07 Thread 'Jan Tattermusch' via grpc.io
Hi, I am happy to announce that the pre-release version of gRPC packages with CoreCLR support is now available on nuget.org. Feedback is welcome. https://www.nuget.org/packages/Grpc.Core/1.0.1-pre1 On Thu, Oct 6, 2016 at 7:40 AM, Jan Tattermusch wrote: > Hi Alex, > > Andreas is totally right. .

Re: [grpc-io] Custom Endpoint

2016-10-07 Thread Robert Bielik
Yes, true, but my whole project is CMake based and getting the Makefile generated stuff together with the rest in a cross compilation environment is something I'd hoped to avoid... 2016-10-07 16:29 GMT+02:00 Craig Tiller : > With the Makefile it should be fairly trivial to just build the unsecure

Re: [grpc-io] Custom Endpoint

2016-10-07 Thread 'Craig Tiller' via grpc.io
With the Makefile it should be fairly trivial to just build the unsecure libs. On Fri, Oct 7, 2016 at 7:24 AM Robert Bielik wrote: > Yes, I got into trouble fairly quickly. First off is the requirement for > Go. I'm only planning using unsecure transport, is it possible to exclude > boringssl ?

Re: [grpc-io] Custom Endpoint

2016-10-07 Thread Robert Bielik
Yes, I got into trouble fairly quickly. First off is the requirement for Go. I'm only planning using unsecure transport, is it possible to exclude boringssl ? 2016-10-07 16:19 GMT+02:00 Craig Tiller : > Note that CMake is experimental and community supported at this point in > time. > > On Fri, O

Re: [grpc-io] Custom Endpoint

2016-10-07 Thread 'Craig Tiller' via grpc.io
Note that CMake is experimental and community supported at this point in time. On Fri, Oct 7, 2016 at 7:09 AM Robert Bielik wrote: > Now that I see that there is added CMake support in v1.0.0, I'm heading > there straight away!! :D > > > Den fredag 7 oktober 2016 kl. 14:59:51 UTC+2 skrev Craig T

Re: [grpc-io] Custom Endpoint

2016-10-07 Thread Robert Bielik
Now that I see that there is added CMake support in v1.0.0, I'm heading there straight away!! :D Den fredag 7 oktober 2016 kl. 14:59:51 UTC+2 skrev Craig Tiller: > > How long until you can move to 1.0? > > Either way you should be able to squelch this error by setting the channel > arg GRPC_ARG

Re: [grpc-io] Re: InProcess for C#

2016-10-07 Thread Malc
I have a slightly different usecase in mind. We would like to move a legacy system to using gRPC. All new stuff can go there easy; but for the older components it would be useful to migrate first to an in-process separation of interface, and then to pull those out into external services as we g

Re: [grpc-io] Repeated returns empty, Java 8, Maven, NetBeans 8.1

2016-10-07 Thread Tim McManamey
Updated code is below. Still doesn't work after calling .addMessage2(str) On Thursday, October 6, 2016 at 6:25:57 PM UTC-5, Louis Ryan wrote: > > > > On Wed, Oct 5, 2016 at 2:46 PM, Tim McManamey > wrote: > >> I want to return a List of strings using gRPC. In my program it seams to >> add a st

Re: [grpc-io] Repeated returns empty, Java 8, Maven, NetBeans 8.1

2016-10-07 Thread Tim McManamey
No, I did not. I copied the wrong state of my code. I had the add method in there before. I will update my code to be correct. On Thursday, October 6, 2016 at 6:25:57 PM UTC-5, Louis Ryan wrote: > > > > On Wed, Oct 5, 2016 at 2:46 PM, Tim McManamey > wrote: > >> I want to return a List of str

Re: [grpc-io] Custom Endpoint

2016-10-07 Thread 'Craig Tiller' via grpc.io
How long until you can move to 1.0? Either way you should be able to squelch this error by setting the channel arg GRPC_ARG_ALLOW_REUSEPORT to 0. On Fri, Oct 7, 2016, 2:05 AM Robert Bielik wrote: > Hi Nicolas, > > I ran our server with grpc log out, and there is an error: > > E0102 11:50:32.543

Re: [grpc-io] grpc go : how to know in server side, when client closes the connection

2016-10-07 Thread vimal78
hello Qi, Can you have a look at this thread pls. regards, Vimal On Tuesday, 4 October 2016 02:01:56 UTC+5:30, Qi Zhao wrote: > > More info is needed. How do you do per-connection book keeping on the > server side in the first place? The only way I can think of to do > per-connection book keep

Re: [grpc-io] grpc go : how to know in server side, when client closes the connection

2016-10-07 Thread vimal78
i am able to locate the place where connection is removed. the print on line 504 is printed once per connection (irrespective of number of operations in it) 498 func (s *Server) removeConn(c io.Closer) { 499 s.mu.Lock() 500 defer s.mu.Unlock() 501 if s.conns != nil { 502 de

Re: [grpc-io] Custom Endpoint

2016-10-07 Thread Robert Bielik
Hi Nicolas, I ran our server with grpc log out, and there is an error: E0102 11:50:32.543622923 tcp_server_posix.c:147] check for SO_REUSEPORT: {"created":"@129032.543473000","description":"SO_REUSEPORT unavailable on compiling system","file":"/home/osboxes/code/git/test/server/extern

[grpc-io] Re: Building grpc-java on Power8

2016-10-07 Thread nishidha27
Hi, I got it working finally. Please see my comments in this issue on github for the solution. I've also generated a PR for Power specific changes. Thanks, Nishidha On Thursday, 14 July 2016 17:15:24