rpc icon indicating copy to clipboard operation
rpc copied to clipboard

Package gorilla/rpc is a golang foundation for RPC over HTTP services.

Results 28 rpc issues
Sort by recently updated
recently updated
newest added

**Is your feature request related to a problem? Please describe.** Support for [PAWS](https://datatracker.ietf.org/doc/html/rfc7545#section-6.1) protocol method format `spectrum.paws.methodName` should be added to gorilla. I currently get the following errors when I...

enhancement

> A clear and concise description of what the problem is - e.g. "I'm always frustrated when [...]" LSP has methods like `textDocument/XXX`. Gorilla RPC currently only supports `textDocument.XXX`. You...

enhancement

**Is your feature request related to a problem? Please describe.** > When I send JSON2-RPC (and others), I would like to check if there were any errors, but I do...

enhancement

Hi! This PR gives users the ability to access and change `request.Body` in functions registered with `RegisterInterceptFunc` and `RegisterBeforeFunc`. I've already described it in issue #80. Also, I've added couple...

**Describe the bug** > In v2/server package newCodecRequest is called before interceptFunc and beforeFunc and performs request.Body.Close(), in such way funcs which would be called later can't read or alter...

bug

**Describe the bug** Fresh newbie trying to learn Go, I noticed the "Read the full documentation" link in the [Readme.md](https://github.com/gorilla/rpc/blob/8c377a27c011dc70523d7543809ab3182d2ef2b1/README.md) points to https://www.gorillatoolkit.org/pkg/rpc, but it seems that according to [here](https://groups.google.com/g/gorilla-web/c/aTE-EjcapBs),...

documentation
good-first-issue

**Describe the bug** Unmarshaling arrays items to a request struct for JSON RPC 2 doesn't work. https://github.com/gorilla/rpc/blob/27d3316e212c1acd2a8cb7d0df8a9173d974cbed/v2/json2/server.go#L164 Here since `args` is passed as a pointer it fails to Unmarshall. **Versions**...

bug

Fixes #78 **Summary of Changes** Initialize module to fix go list error when using IDEs like GoLand. The specific error is: go list -m: github.com/gorilla/[email protected]+incompatible: invalid version: +incompatible suffix not...

**Describe the bug** > when i use go mod download,err: > go: finding github.com/gorilla/rpc v1.2.0+incompatible > github.com/gorilla/[email protected]+incompatible: invalid version: +incompatible suffix not allowed: major version v1 is compatible **Versions** >...

bug

I would like to handle method names which are not in a form "Service.Method", whch seems currently imposible. One way to handle this would be to have **(*Server) RegisterFunc** method...

feature request