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

  • SEARCH
  • Home
  • 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 7781109
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T19:07:18+00:00 2026-06-01T19:07:18+00:00

I am writing a REST based web service. I need to return all the

  • 0

I am writing a REST based web service. I need to return all the responses as JSON format. I have an interceptor to validate my authentication parameters. On authentication failure scenario, I have to return the error response in JSON format.

Currently i am doing

response.setHeader(“Content-Type”,”application/json”);
response.sendError(HttpServletResponse.SC_UNAUTHORIZED, “{\”error\”:\”Missing Authentication Parameters\”}”);

The response body is coming as below.

JBoss Web/2.1.3.GA – Error report

HTTP Status 401 – {"error":"Missing Authentication Parameters"}

type Status report

message {"error":"Missing Authentication Parameters"}

description This request requires HTTP authentication ({"error":"Missing Authentication Parameters"}).

JBoss Web/2.1.3.GA

I need just the JSON string in response. Please help me.

  • 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-01T19:07:19+00:00Added an answer on June 1, 2026 at 7:07 pm

    You should probably be using spring-security for this. If you want to do it by hand, an alternative to using sendError on the response is to use spring MVC’s @ExceptionHandler along with content negotiation to return JSON.

    First define an error class*:

    public class Error {
        public message;
        public exception;
        public Error(String message, Exception ex) {
            this.message = message;
            this.exception = ex;
        }
    }
    

    And an exception:

    public class NotAuthenticatedException extends Exception {
        // ...
    }
    

    Then in your controller you throw an exception at the appropriate time, catch it with @ExceptionHandler and return a ResponseEntity containing an Error instance and the appropriate error code.

    @Controller
    public class SimpleController {
        @RequestMapping(...)
        public String aMethod() {
            // ...
            throw new NotAuthenticatedException("Missing Authentication Parameters");
        }
    
        @ExceptionHandler(NotAuthenticatedException.class)
        public ResponseEntity<Error> handleNotAuthenticatedException(
                NotAuthenticatedException ex, 
                HttpServletRequest request) {
            return new ResponseEntity<Error>(
                new Error(ex.getMessage(), ex), 
                HttpStatus.UNAUTHORIZED
            );
        }
    }
    

    *use getters/setters to please the java convention gods

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a REST based web service, and I'm trying to figure out the
We currently have a SOAP based web service that our in house applications use
I am writing an application that is consuming an in-house WCF-based REST service and
I'm writing a REST service in Erlang and need to verify the received data
I am currently writing a java REST Web Service using Netbeans and Glassfish. The
I'm writing web application that uses Spring MVC to bind Spring beans with REST-like
Some background I am planning to writing a REST service which helps facilitate collaboration
I'm writing a web-service for Android. The client side will be coded in JAVA
I am writing code to work with Amazon query based APIs, which return XML
I'm writing a simple REST service in Node.js (just experimenting), trying to figure out

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.