gwtproject/gwt-http

Name: gwt-http

Owner: GWT

Description: null

Created: 2017-11-09 14:02:12.0

Updated: 2018-04-12 18:18:54.0

Pushed: 2018-01-22 08:34:33.0

Homepage: null

Size: 136

Language: Java

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

GWT HTTP

A future-proof port of the com.google.gwt.http.HTTP GWT module, with no dependency on gwt-user (besides the Java Runtime Emulation), to prepare for GWT 3 / J2Cl.

Browser compatibility

The code should be compatible with all evergreen browsers, and Internet Explorer 10 and 11.

Migrating from c.g.g.http.HTTP
  1. Add the dependency to your build.

    For Maven:

    endency>
    oupId>org.gwtproject.http</groupId>
    tifactId>gwt-http</artifactId>
    rsion>${gwtHttpVersion}</version>
    pendency>
    

    For Gradle:

    ile "org.gwtproject.http:gwt-http:${gwtHttpVersion}"
    
  2. Update your GWT module to use

    erits name="org.gwtproject.http.HTTP" />
    

    (either change from com.google.gwt.http.HTTP, or add it if you inherited it transitively from another GWT module)

  3. Change your imports in your Java source files:

    rt org.gwtproject.http.client.RequestBuilder;
    rt org.gwtproject.http.client.URL;
    rt org.gwtproject.http.client.UrlBuilder;
    

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.