Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8513605
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T04:37:15+00:00 2026-06-11T04:37:15+00:00

A 3rd party service is using HttpClient (3.1) to GET a url that I’m

  • 0

A 3rd party service is using HttpClient (3.1) to GET a url that I’m serving through Jersey (on tomcat). It is throwing the error in the subject.

This is how I serve the URL:

@Path("somepath")
@GET
@Produces(MediaType.APPLICATION_OCTET_STREAM)
public Response download(@Context UriInfo uriInfo)  {
    try {
        URL url = // find the actual URL (a file)
        InputStream stream = url.openStream();
        return Response.ok(stream).build();
    } catch (IOException e) {
        return Responses.notFound().build();
    }
}

Is there a way to work around this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T04:37:17+00:00Added an answer on June 11, 2026 at 4:37 am

    I ended up doing something like this:

    if (url.getScheme().equalsIgnoreCase("file")) {
      File file = new File(url.toURI());
      return Response.ok(file).header("Content-Length", file.length()).build();
    } else {
      return Response.seeOther(url);
    }
    

    Which works for my use case.

    Some notes:

    • Just returning the file object works if the size of the file is small (somewhere around 2G), but fails for larger files. I assume that somehow chunked length encoding breaks due to integer overflow.
    • Trying to return StreamingOutput (suggested in another question) doesn’t work for large files either.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

A 3rd party service that I'm using returns the users to a url like
We're using a 3rd party XML messaging service that requires an embedded PDF file
I have a Grails service that sends out e-mails using a 3rd-party service by
i am creating a web service using 3rd party wsdl that helps me in
I'm using a 3rd party SMTP service for sending my newsletters. Because of that,
We are using a 3rd party email relay service to send mass emails to
I am building a web service that involves parsing of 3rd party RSS feeds.
I have a WCF service which references a 3rd party DLL. That DLL looks
I'm using a 3rd party service to process images and they provide a handy
I'm using FoxyCart. I need to feed each order to a 3rd party service

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.