Giter VIP home page Giter VIP logo

Comments (6)

igr avatar igr commented on May 22, 2024

Hey Paweł, thank you for stopping by again :)

Not in a easy way at the moment, i think. But see #55, I will add support so this kind of things (custom sockets) can be easily added; moreover, I will add support for proxies - just need to do a little refactoring first.

TL;DR

The idea is that you will be able to set a HttpSocketProvider (new class, ex. HttpTransfer) in HttpBrowser with proxy definition, and use that one during the whole session. Something like:

HttpBrowser browser = new HttpBrowser();
browser.setProxy(host, port...);
// the rest is the same

Internal

Internally you would configure the HttpSocketProvider instance stored in HttpBrowser that will be passed to open() method of HttpRequest; so not to use default one.

from jodd.

igr avatar igr commented on May 22, 2024

Ok, I have added basic support for SOCKS proxies (with two latest commits), but without authentication. I will try to add different SocketFactories for different proxies (socks4, socks5 and http), but need a bit more time ;)

from jodd.

igr avatar igr commented on May 22, 2024

One way how to use it:

    HttpBrowser httpBrowser = new HttpBrowser();
    httpBrowser.setProxyInfo(ProxyInfo.httpProxy("192.168.0.106", 808, "user", "password"));

    httpBrowser.sendRequest(HttpRequest.get("google.com"));
    HttpResponse response = httpBrowser.getHttpResponse();
    System.out.println(response);

There is http, socks4 and socks5 implementation. Not for SSL (yet).

Enjoy!

from jodd.

yizhl avatar yizhl commented on May 22, 2024

Now,download the latest version(3.4.10 all (10)) from Maven we can't see this imporvement When can we use it form Maven ?

from jodd.

igr avatar igr commented on May 22, 2024

Yes, its not released yet as Maven artifact. We will release SNAPSHOT during the next weekend.

Meanwhile, you can build it locally and play with it 😄 It is very easy to build it: http://jodd.org/source.html

from jodd.

yizhl avatar yizhl commented on May 22, 2024

thanks O(∩_∩)O~ I think use maven would better to upgrade. I'm happy to hear that new released version is going in plan.

from jodd.

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.