[grpc-io] Re: Communication of grpc streaming between C# and C++

2021-01-20 Thread 'AJ Heller' via grpc.io
Hi Zijian. Basic streaming communications should work fine between 
languages. Can you be more specific about your errors, or produce a minimum 
reproducible example?
On Thursday, January 14, 2021 at 5:59:36 AM UTC-8 Zijian Han wrote:

> Hello, 
>
> I'm developing a grpc service, with image streaming, server in c# and 
> client in c++,
>
> Can i use grpc api to communicate on both side directly?
>
> Because if i write the async streaming server in c# and async client in 
> c++ i found out they cannot be connected.
>
> Is there any solution to solve this?
>
> BR
>
> Zijian
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/6e6ea02d-b6ad-4c28-a4e4-276f6976b88bn%40googlegroups.com.


[grpc-io] gRFC A36: xDS-Enabled Servers

2021-01-20 Thread 'Eric Anderson' via grpc.io
Please review and comment. The gRFC is at
https://github.com/grpc/proposal/pull/214. The gRFC covers new APIs and
their plumbing to allow having xDS-enabled servers. The precise C++/wrapped
language APIs are not covered, but an idea of what they may look like is
covered. Java and Go have their concrete API designs presented.

A36 itself doesn't provide any xDS features, but is the basis for them to
be built without applications needing to make code changes for each added
xDS feature. For an xDS feature, see the related gRFC A29: xDS-Based
Security for gRPC Clients and Servers
.

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/CA%2B4M1oMrUV3PR2zG81roXVJcx9uA7k2ioMrX1qqyZQ-9FtdAFw%40mail.gmail.com.


smime.p7s
Description: S/MIME Cryptographic Signature


Re: [grpc-io] Anyone adding HTTP/3 support for gRPC?

2021-01-20 Thread 'Eric Anderson' via grpc.io
I *think* there have been some HTTP/3 experiments, but nothing actively
being worked on. For mobile though, grpc-java and grpc-objc clients do have
support for Cronet, and Cronet supports HTTP/3. Cronet is basically
Chrome's networking stack built into a library. There's no server support,
but that is generally not a problem because backends would already be
behind a reverse proxy.

On Fri, Jan 15, 2021 at 11:04 AM Jared Bischof  wrote:

> I'm looking for any programming language that has HTTP/3 support for gRPC
> but so far I haven't found anything. Does anyone know if this exists?
> Anyone working on it?
>
> Thanks.
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/grpc-io/7e65f3e0-7547-4f82-b77b-63d94561ea27n%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/CA%2B4M1oMqw9OCddwKruv%3DKVEJ-DisVvOnvhKmo33PnOq3yGngbw%40mail.gmail.com.


smime.p7s
Description: S/MIME Cryptographic Signature


Re: [grpc-io] Re: (grpc-java) Detecting client network disconnect and connect

2021-01-20 Thread 'Eric Gribkoff' via grpc.io
I believe that
https://grpc.github.io/grpc-java/javadoc/io/grpc/ManagedChannel.html#getState-boolean-
and
https://grpc.github.io/grpc-java/javadoc/io/grpc/ManagedChannel.html#notifyWhenStateChanged-io.grpc.ConnectivityState-java.lang.Runnable-
are the APIs that you are looking for.

Thanks,

Eric

On Tue, Jan 19, 2021 at 10:43 PM Sivarama Prasad <
sivaramaprasad1...@gmail.com> wrote:

> Please help in resolving the issue that I am facing.
>
> On Tuesday, January 19, 2021 at 12:21:28 PM UTC+5:30 Sivarama Prasad wrote:
>
>> Greetings,
>>
>> I am working on GRPC java assignment.
>>
>> Short desc abt requirement:
>>
>> multiple client applications and single server.
>>
>> Every time client stores the message in Database and upon successful
>> storage, pass on the message to grpc server and store the message in server
>> database.
>>
>> So, Client database and server database has the same set of database
>> records.
>>
>> Problem stmt:
>> When there is a network disconnect, client is unable to connect the
>> server and hence there is a mismatch in database records(client vs Server)
>>
>> I am looking for a grpc-java flag/status to know disconnect and connect
>> events so that I can pic the disconnect timestamp and push all the messages
>> to server to be in sync the database records.
>>
>> Please provide me code snippet , sample/example to achive this.
>>
>> Thanks in advance.
>> Sivaram
>>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/grpc-io/2324a65e-10f0-4a51-a942-5a92c80be524n%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/CALUXJ7isyWx5t8bzjYFzi5_hnWn_tFL_%2BtmMm12J1A%2BhOLYLMA%40mail.gmail.com.


Re: [grpc-io] gRPC-Java method overloading

2021-01-20 Thread 'Eric Gribkoff' via grpc.io
Assuming that you are asking about overloading the method names defined in
your service's proto file, this StackOverflow question and answer addresses
this issue:
https://stackoverflow.com/questions/65034685/is-it-possible-the-grpc-functions-overloading/65034755#65034755

Thanks,

Eric

On Sat, Jan 16, 2021 at 5:02 AM Anmol Mishra 
wrote:

> Hello,
>
> In gRPC java, Is there any way of method overloading?, How to implement it?
>
> How does gRPC java resolves methods internally?
>
> Thanks for reading so far
> - anmol mishra
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/grpc-io/bb4f3abf-2148-4b72-ab28-2ffdb56a555fn%40googlegroups.com
> 
> .
>

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/grpc-io/CALUXJ7iCn3nwoGsxbYiH9C_S4_wx-mt%2BKa8CtRsofN%2B5i0rAtw%40mail.gmail.com.