Submitted a form via Jmeter script on Liferay DXP, not getting saved in DB(Postgres)

177 Views Asked by At

Submitted a form via Jmeter script on Liferay DXP,

after submit the values are not getting saved in Postgres DB

Note: Simple form without login authentication token (p_auth) is correlated for each and every request using 'regular expression extractor'.

1

There are 1 best solutions below

1
On

Your question doesn't have enough information to guess the exact reason so here are the most common:

  1. You're simply not authenticated, make sure to be logged in prior attempting to submit a form. Also add HTTP Cookie Manager to your Test Plan - it automatically handles cookies and deals with cookie-based authentication.
  2. Most probably your Liferay deployment uses authentication token (usually p_auth) so you will need to correlate it for each and every request, otherwise it will be rejected. See How to Load Test CSRF-Protected Web Sites article for more information on the topic.

Get used to verifying the integrity of your test plan using View Results Tree listener to inspect request and response details, most probably you will be able to figure out what went wrong from the webpage response.