I am calling 2 sequence inside iterator. But if any of the sequence is failing with HTTP status code 404 then control is going to fault sequence and other sequences are not being executed. Is there a way i can handle this issue and my all sequences should run and iterator should be executed as there is no issue in any sequence. I wrote custom error handler sequence to handle 404 status code.
Basically how to handle HTTP status code 404 response and ignore that 404 code. Set some custom error message and continue other sequences in the flow.
Thanks, Vipin
You can use axis2 property HTTP_SC and the SWITCH mediator to handle the HTTP status of the response. Here is a sample API. It has three GET resources, one /exists just returns 200, /test404 emulates call to not existent Uri, and /testnot404 - calls the /exist URI. The message processing in both methods is the same - they use switch mediator to handle HTTP_SC axis2 property.