Here is the background of a product architecture i'm working on.
I am working on product where front-end is in PHP and back-end is in JAVA.
JAVA works as a service and PHP uses curl
library to call java services.
I'm using GET Request to call java services.
It was working perfectly, but i faced an issue when URL is too long (in my case URL is almost 2,00,000 characters long).
i searched about curl and i found that there is no limit for url length in curl.
also when curl is executed i checked curl error number curl_errno()
and it returned 0. curl Returns the error number or 0 (zero) if no error occurred.
so i can't figure out what can be the issue, also it is issue at JAVA side or PHP side ? also how can i increase GET request size limit ?