Coder Social home page Coder Social logo

Comments (11)

fge avatar fge commented on July 22, 2024

Yes, I left it out voluntarily.

The problem with HTTPS is certificate handling, I can give no guarantee that this or that certificate is recognized by the JRE at all. I hesitated a lot, and decided to leave it out. I was afraid to have bug requests opened because of certificate problems, not lack of support, to say it all.

Adding it is relatively easy, though. You can register a URIDownloader as such:

       final JsonSchemaFactory factory = JsonSchemaFactory.builder()
            .registerScheme("https", new URIDownloader()
            {
                @Override
                public InputStream fetch(final URI source)
                    throws IOException
                {
                    return source.toURL().openStream(); 
                }
            })
            .build();

(example 7 from the code examples explain how to do that)

But you are right, though, the more it goes, the more HTTPS is used, so I guess I should as well support it as a default.

If you want, I can do a 1.5.5 with only this change. And pray that no certificate problem will popup in the issues!

from json-schema-validator.

toverly avatar toverly commented on July 22, 2024

Wow thanks for the super speedy reply. Yea I would totally be grateful for a https support. I understand the "handshake" issues, but hopefully people who are rolling their own certificates will understand that issue. (Hopefully is a big word ;-) )

from json-schema-validator.

fge avatar fge commented on July 22, 2024

OK, 1.5.5 has been released on Maven with this change (via SonaType). I don't know how long this will take until this is available, time to availability sometimes varies very wildly...

Would you mind notifying me when you could get hold of it?

from json-schema-validator.

fge avatar fge commented on July 22, 2024

1.6.0 is out, in fact it is 1.5.5 with the deprecated annotations removed.

Had a chance to fetch either yet?

from json-schema-validator.

toverly avatar toverly commented on July 22, 2024

Yes. I did download. Worked great. Thanks.

from json-schema-validator.

toverly avatar toverly commented on July 22, 2024

1.6.0

from json-schema-validator.

fge avatar fge commented on July 22, 2024

Good! I wondered how fast it could be available.

By the way, you may want to have a look at that:

https://github.com/fge/json-schema-validator/wiki/Roadmap

Shameless plugin, of course, but who knows!

from json-schema-validator.

fge avatar fge commented on July 22, 2024

May I close this issue?

from json-schema-validator.

toverly avatar toverly commented on July 22, 2024

Yes!

from json-schema-validator.

toverly avatar toverly commented on July 22, 2024

Also linked this on our page. https://github.com/spidasoftware/schema

from json-schema-validator.

fge avatar fge commented on July 22, 2024

Thank you!

I hope you will find some use of processors too. Have fun!

from json-schema-validator.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.