0

Is there any way to skip request parameters validation in HDIV framework ?

We have many pages in our application with so many parameters and we can't declare all of them as startParameters.

Thanks for your help

kkung
  • 715
  • 4
  • 10
  • 18

1 Answers1

3

You can define startParameter as a Java Pattern. So, you can exclude all parameters from validation, for example:

<hdiv:startParameter>.*</hdiv:startParameter>

In this case you are disabling the integrity validation of all request parameters. Is this what you want to do? And why?

gillarramendi
  • 271
  • 1
  • 8