[grpc-io] Re: Servers in PHP?

2020-04-30 Thread moniydv
Please share the library. I cant find solution to use gRPC on php server. Thanks !! On Monday, 26 March 2018 12:15:16 UTC-4, maur...@freedamedia.com wrote: > > This lib works quite well, thanks a lot! I hope it can be included in the > official documentation. > > Il giorno venerdì 24 marzo 2017

[grpc-io] Re: Servers in PHP?

2019-06-05 Thread 'Carl Mastrangelo' via grpc.io
There isn't support for running a PHP gRPC server (and nothing on the roadmap either).You might be able to convert an HTTP/2 request to an HTTP/1.1 request and forward that to the PHP server, but I am not sure how the server can respond with trailers. The spec for gRPC is here:

[grpc-io] Re: Servers in PHP?

2019-05-24 Thread andrew . howden
>From a naive, first principles thought given that gRPC is implemented over HTTP/2 is it possible to implement a server in PHP mediated by a proxy such as NGINX or with mod_php? Might only be possible with Unary RPC, but that's as much as REST provides us now anyways On Wednesday, January 27,

[grpc-io] Re: Servers in PHP?

2018-10-25 Thread 'Carl Mastrangelo' via grpc.io
It may not be the same thing, but this was posted to twitter recently: https://github.com/spiral/php-grpc On Thursday, October 25, 2018 at 1:28:12 AM UTC-7, klingenbe...@gmail.com wrote: > > What is this lib you mention? I can't find anything in this thread > actually mentioning where one can

[grpc-io] Re: Servers in PHP?

2018-10-25 Thread klingenberg . magnus
What is this lib you mention? I can't find anything in this thread actually mentioning where one can find it. I would be very interested in trying this out. -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group and stop

[grpc-io] Re: Servers in PHP?

2018-03-26 Thread mauro . foti
This lib works quite well, thanks a lot! I hope it can be included in the official documentation. Il giorno venerdì 24 marzo 2017 13:12:56 UTC+1, scott molinari ha scritto: > > Not sure if this will help, but this might be of use. > > https://github.com/amphp/aerys > > It supports HTTP/2. > >

[grpc-io] Re: Servers in PHP?

2017-07-05 Thread lscgzwd
The php extension : swoole, which support tcp/websocket/http2/http , can be used to implements php grpc server. 在 2016年1月28日星期四 UTC+8上午6:23:26,stephen...@bigcommerce.com写道: > > Hey all— > > It appears as of right now you can only create CLIENTS in PHP, but not > servers. I was wondering what