Results 1 to 7 of 7

Thread: Explanation: Invalid chunk ignored

  1. #1
    Join Date
    Nov 2004
    Posts
    12

    Default Explanation: Invalid chunk ignored

    This error gave me a problem and I spent some time trying to figure out what it was before I was successful. So to save people time here it is.

    When you call 'XT.doAjaxAction' it looks at the form and passes all of the elements along with the request. In doing this, if you don't have a name for all of the fields it will create a query string similar to this:

    Code:
    eName1=&=&eName2=val
    The important part to note about this is the '&=&' or '&=someValue&'. This causes the following error.

    Code:
    Feb 14, 2008 9:45:12 AM org.apache.tomcat.util.http.Parameters ProcessParameters
    
    WARNING: Parameters: Invalid chunk ignored.
    This does not actually stop any processing of the action. It just shows the warning. If you don't want to see the error message be sure to add a value for the 'name' parameter for all of your form elements.

  2. #2
    Join Date
    Jul 2006
    Location
    Rome, Italy
    Posts
    347

    Default

    Quote Originally Posted by cwidhelm View Post
    This error gave me a problem and I spent some time trying to figure out what it was before I was successful. So to save people time here it is.
    Thank you very much for taking the time to write this down and share your knowledge with the community.

    Cheers,

    Sergio B.
    Sergio Bossa
    Spring Modules Team

  3. #3
    Join Date
    Mar 2008
    Posts
    9

    Default Thanks

    Also,
    i have a request url like:
    action.htm?&name1=e&name2=e2

    "?&" will also make this chunk ignored warning..

    Thank you very much for the timely help....

  4. #4
    Join Date
    Mar 2010
    Posts
    6

    Default I am still getting the warning

    The URL is proper.

    Code:
    ScheduleServlet?action=viewASchedule&schedule=4&randval=0.2783348642333
    Then also I am getting this worning and I am unable to view view my data.

    Code:
    Mar 1, 2010 11:52:36 AM org.apache.tomcat.util.http.Parameters processParameters
    WARNING: Parameters: Invalid chunk ignored.
    Last edited by smitashree; Mar 1st, 2010 at 01:07 AM.

  5. #5
    Join Date
    Mar 2008
    Posts
    9

    Default

    did you get any error other than this warning..?

  6. #6
    Join Date
    Mar 2010
    Posts
    6

    Default Invalid chunk ignored

    No, I am not getting any other error. Sometimes it fails while processing the request.

  7. #7
    Join Date
    Oct 2009
    Location
    Milano
    Posts
    49

    Default

    anybody solved this? it's really annoying

    WARN [org.apache.tomcat.util.http.Parameters] (http-***.*.*.*-****-*) Parameters: Invalid chunk ignored.

    (using jboss 5.1, spring-2.5.6)
    2+2=5

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •