Results 1 to 5 of 5

Thread: Possible bug in AbstractValidatingInterceptor?

  1. #1

    Default Possible bug in AbstractValidatingInterceptor?

    in AbstractValidatingInterceptor, line 307 (spring-ws-1.0-m2) :
    Code:
    detailElement.addText(errors[0].getMessage());
    causes the first error message to be repeated. I think it should be
    Code:
    detailElement.addText(errors[i].getMessage());
    (the "0" at the 47th position should be changed to "i").

  2. #2
    Join Date
    Jul 2005
    Location
    Rotterdam, the Netherlands
    Posts
    1,562

    Default

    You're right, that's a bug. Could you create a JIRA issue here: http://opensource.atlassian.com/proj...ing/browse/SWS

    Thanks for spotting this!
    Arjen Poutsma

    Spring Web Services Dev Lead
    Please read the FAQ

  3. #3

  4. #4
    Join Date
    Jul 2005
    Location
    Rotterdam, the Netherlands
    Posts
    1,562

    Default

    Thanks. It might seem like a lot of overhead to create an issue for a simple thing like this, but this way, I can easily keep track of open bugs, and other people can find out about it as well, without going to the forum.
    Arjen Poutsma

    Spring Web Services Dev Lead
    Please read the FAQ

  5. #5

    Default

    I totaly agree

Posting Permissions

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