Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature Request: Add ability to get server capability #45

Open
kurtsansom opened this issue Sep 29, 2021 · 7 comments
Open

Feature Request: Add ability to get server capability #45

kurtsansom opened this issue Sep 29, 2021 · 7 comments

Comments

@kurtsansom
Copy link

e.g.

  def check_server():
    url = SERVER + '/capabilities'
    log('Reading %s' % url, opts)
    res = urlopen(url)
    meta = jsonparse(res, url)
    return meta
@rweigel
Copy link
Collaborator

rweigel commented Sep 29, 2021

I'll have this added for the next release.

@rweigel
Copy link
Collaborator

rweigel commented Sep 29, 2021

I am curious about what this would be used for. If you are adding custom x_ elements, we'd be interested in hearing about it. There is a discussion right now among the spec developers on a related issue.

@kurtsansom
Copy link
Author

My main objective was trying to think of a simple way to do a sanity check (ring the door bell). i.e. make small request to see if I have the right address. this seemed like a convenient way that returns something small, but didn't exist in the client.

It seems like it would be very useful if I wanted to add a compressed output format, and be able to check if it's available? I found hapi yesterday, so it is still new to me.

@rweigel
Copy link
Collaborator

rweigel commented Sep 29, 2021

Thanks. I'll raise this issue with the standards group. It would be useful to have a standard way of doing this.

@rweigel
Copy link
Collaborator

rweigel commented Feb 2, 2023

A full year has elapsed on this ... there has been some progress but probably you have worked around it already.

@jbfaden
Copy link
Contributor

jbfaden commented Feb 2, 2023

Regarding compression, I've always relied on HTTP encoding, where you can let the server (apache for example) transmit the data compressed. See for example https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Encoding .

@rweigel
Copy link
Collaborator

rweigel commented Feb 2, 2023

For compression, I would try what @jbfaden discussed earlier. We don't have a compressed format because the HTTP spec already solves the problem. The server just needs to be configured to send compressed data over the wire. Most client libraries will transparently decompress. Currently, the hapiclient does not tell the server that it can handle compressed content, and that needs to be modified.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants