[grpc-io] Sumonchowdury2041gmail.com

2017-06-19 Thread Sumom Chowdury
Sent from my iPhone -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group and stop receiving emails from it, send an email to grpc-io+unsubscr...@googlegroups.com. To post to this group, send email to grpc-io@googlegroups.

[grpc-io] FYI: Managed HTTP/2 implementation for C#

2017-06-19 Thread matthias.einwag via grpc.io
Hi everyone, this is only partly related to grpc, but nevertheless I thought it might be interesting, so I thought I just post it here. Over the last month a built a fully managed HTTP/2 library for .NET [standard], which can be found here: https://github.com/Matthias247/http2dotnet It could e

[grpc-io] Re: Java client streaming api questions

2017-06-19 Thread cr22rc
Hi Thanks for the reply- I was under the initial assumption that separate streaming stubs would create separate connections .. but the connection is on the managed channel so at the moment I've moved to just creating one per thread call. On Monday, June 19, 2017 at 2:44:39 PM UTC-4, spenc...@g

[grpc-io] Re: Java client streaming api questions

2017-06-19 Thread spencerfang via grpc.io
StreamObserver is not thread safe, so if multiple threads are producing data, you must synchronize the calls. You can find more details here: http://www.grpc.io/grpc-java/javadoc/io/grpc/stub/StreamObserver.html Can you elaborate on your use and why multiple threads are writing on this streaming

[grpc-io] Is there a way to intercept the https socket connection to get hold of the server TLS cert?

2017-06-19 Thread jimthematrix
In our node.js client we have a need to obtain the server certificate that the server sent during TLS handshake. Is there a way to do this? It seems with https connections the https client has hooks to allow the application to tap into the handshake process. such as this post: http://hassansin.

[grpc-io] AW: Message Size exceeds despit set maxlength parameters - solved

2017-06-19 Thread Florian Otto [M.A.i]
Hi there, seems like the unlimited option (-1) is not valid on the server side. Setting an explicit value solved my problem. Cheers Florian Mit freundlichen Grüßen | Best regards Florian Otto Softwareentwicklung M.A.i GmbH & Co. KG Hummendorfer Straße 74 96317 Kronach - Neuses Deutsch

[grpc-io] Message Size exceeds despit set maxlength parameters

2017-06-19 Thread Florian Otto [M.A.i]
Hi @all, got a little problem with message sizes in grpc. Atow we're running grpc-version 1.2.5 on windows 32bit runtime. We now have the problem that a method returns a status like the following: status = {code_=INVALID_ARGUMENT (3) details_="Received message larger than max (7690900 vs. 41

Re: [grpc-io] gRPC build for Windows using Mingw(C++)

2017-06-19 Thread Mario Emmenlauer
If you want to learn a bit how MSYS2 packages are usually built, maybe read about the ARCH Linux build system here first: https://wiki.archlinux.org/index.php/makepkg MSYS2 adapted this build system with pacman to Windows. So if you use makepkg-mingw it will download the sources, make the build,

Re: [grpc-io] gRPC build for Windows using Mingw(C++)

2017-06-19 Thread Mario Emmenlauer
Hi, do you need to build a newer version? Otherwise I highly recommend to use the mingw-w64-grpc folder from https://github.com/Alexpux/MINGW-packages/tree/master/mingw-w64-grpc and build the package with "makepkg-mingw". You can sue something like: makepkg-mingw --skippgpcheck --syncdeps --

Re: [grpc-io] gRPC build for Windows using Mingw(C++)

2017-06-19 Thread maach6569
Mario, Can you tell how you build the gRPC for Windows. On Monday, 19 June 2017 15:35:18 UTC+5:30, maac...@gmail.com wrote: > > yes i am trying with " mingw32-make" from grpc masters folder . which i > kept inside MSYS "/home/username" path. > > the output which i got > > *$ mingw32-make* >

Re: [grpc-io] gRPC build for Windows using Mingw(C++)

2017-06-19 Thread maach6569
yes i am trying with " mingw32-make" from grpc masters folder . which i kept inside MSYS "/home/username" path. the output which i got *$ mingw32-make* *Package libcares was not found in the pkg-config search path.* *Perhaps you should add the directory containing `libcares.pc'* *to the PKG_CON

Re: [grpc-io] gRPC build for Windows using Mingw(C++)

2017-06-19 Thread Mario Emmenlauer
Hi! Can you post exactly how you try to build the package and the logs you get? I assume you are not using the MSYS2 makepkg build script, are you? Did you modify the PKGBUILD? I do not get this error so its hard for me to be certain. But it looks like you would be missing libcares. Try installi

Re: [grpc-io] gRPC build for Windows using Mingw(C++)

2017-06-19 Thread maach6569
Thank you Mario, I am also using the MSYS only , but while building the gRPC source i am receiving the that error . So how can i make up the build and use that grpc package in windows by solving the above those error. On Monday, 19 June 2017 13:41:06 UTC+5:30, Mario Emmenlauer wrote: > > >

Re: [grpc-io] gRPC build for Windows using Mingw(C++)

2017-06-19 Thread Mario Emmenlauer
Hi, do you know the MSYS2 distribution for Windows? I built a grpc package using their Mingw compiler there: https://github.com/Alexpux/MINGW-packages/tree/master/mingw-w64-grpc Personally I find this the easiest way to use grpc on Windows. You can also get protobuf and lots of other packages.

[grpc-io] Server dosn't receive request from client after iterations

2017-06-19 Thread carylorrk
### What version of gRPC and what language are you using? 1.3.2 (c80d3321d0f77bef8cfff8b32490a07c1e90a5ad) ### What operating system (Linux, Windows, …) and version? Ubuntu Linux 16.04 ### What runtime / compiler are you using (e.g. python version or version of gcc) g++5.4.0 ### What did y