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

Upload Fixes #32

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open

Upload Fixes #32

wants to merge 9 commits into from

Commits on Dec 5, 2016

  1. Add sendFax InputStream Methods

    Add methods to the API that implement sendFax using an array of
    InputStreams rather than an array of files.
    evanjpw committed Dec 5, 2016
    Configuration menu
    Copy the full SHA
    d566a08 View commit details
    Browse the repository at this point in the history
  2. Unit tests for sendFax with InputStreams

    These are unit tests to test the added sendFax methods that send a fax
    using input streams
    evanjpw committed Dec 5, 2016
    Configuration menu
    Copy the full SHA
    e07acf1 View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2016

  1. Merge remote-tracking branch 'interfax/master'

    # Conflicts:
    #	src/main/java/net/interfax/rest/client/InterFAX.java
    #	src/main/java/net/interfax/rest/client/impl/DefaultInterFAXClient.java
    evanjpw committed Dec 6, 2016
    Configuration menu
    Copy the full SHA
    76b5ed8 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2016

  1. Configuration menu
    Copy the full SHA
    83dbe69 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2018

  1. Configuration menu
    Copy the full SHA
    e1f05ff View commit details
    Browse the repository at this point in the history
  2. Say 0.14

    evanjpw committed Oct 24, 2018
    Configuration menu
    Copy the full SHA
    d826dca View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2018

  1. Document Errors

    Document upload and send uploaded document were getting a code
    411 because the content length was not being sent. This is because
    Java began filtering content length because it is considered dangerous
    to be settable.
    
    This fix repairs that problem by sending actal zero byte content
    which circumvents the issue.
    evanjpw committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    c67d66c View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2019

  1. Allow 204s

    The current code code of the uploadChunk method allowed
    200 and 202 as valid response codes. However, the server
    also sends 204s and the method incorrectly identified
    this as an error. This commit corrects that.
    evanjpw committed Jan 29, 2019
    Configuration menu
    Copy the full SHA
    21bb5eb View commit details
    Browse the repository at this point in the history
  2. Merge pull request #1 from evanjpw/zp-4597

    Allow 204s
    evanjpw authored Jan 29, 2019
    Configuration menu
    Copy the full SHA
    936f08f View commit details
    Browse the repository at this point in the history