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 438859
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T20:43:12+00:00 2026-05-12T20:43:12+00:00

I have an interceptor for catching Exceptions and sending emails of this exceptions. All

  • 0

I have an interceptor for catching Exceptions and sending emails of this exceptions.

All my struts actions extend CoreController which implements SerlvetRequestAware.

In mail service class then I have:

CoreController cc = (CoreController)invocation.getAction();
HttpServletRequest request = cc.getRequest();

I want to insert request body to email, if exists. Like so:

StringWriter msg = new StringWriter();
msg.write("Requested URI: " + request.getRequestURI()+NEW_LINE);
msg.write("Requested Query String: " + request.getQueryString()+NEW_LINE);
msg.write("Request method: "+request.getMethod()+NEW_LINE);
try {
 if (request.getReader() != null) {
  msg.write("Request body: "+ request.getReader().readLine()+NEW_LINE);
  request.getReader().close();
 }
} catch (IOException e) {
    e.printStrackTrace();
} catch(IllegalStateException e) {
    e.printStrackTrace();
}

Now it always throws an IllegalStateException, when reader is not null. How could I “revert” reader or how any other way to read the request body?

EDIT
Exception: getInputStream() has already been called for this request

  • 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-05-12T20:43:12+00:00Added an answer on May 12, 2026 at 8:43 pm

    Perhaps you should try using the request’s InputStream rather than its Reader if you receive an IllegalStateException:

    BufferedReader bufferedReader;
    try {
        bufferedReader = request.getReader();
    } catch (IllegalStateException e) {
        InputStream inputStream = request.getInputStream();
    
        // As per BalusC's comment:
        String charsetName = request.getCharacterEncoding();
        if (charsetName == null) {
            charsetName = "UTF-8";
        }
    
        InputStreamReader inputStreamReader = new InputStreamReader(inputStream, charsetName);
        bufferedReader = new BufferedReader(inputStreamReader);
    }
    
    bufferedReader.readLine();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have multiple XML configs. struts.xml <struts> <include file=struts-user.xml /> <package name=baseInterceptors extends=struts-default> <interceptor
I have an interceptor binding, which is parameterized: @InterceptorBinding @Target({ ElementType.METHOD, ElementType.TYPE }) @Retention(RetentionPolicy.RUNTIME)
We have Interceptor, we have custom interceptor where we can do all that we
I have an interceptor that logs the outcome of Spring MVC responses. All my
I have an interceptor which extends the HandlerInterceptorAdapter . When I add an object
Let's say I have an interceptor that looks smth like this: public class AuthorizationInterceptor
I have rest controllers that returns Json response. I have added interceptor which will
I have a Spring Interceptor which attempts to add an HTTP header in the
I have an interceptor in Spring, which autowires two different services. Both services have
Which option is better ? I have an interceptor PermissionInterceptor which needs access to

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.