I'm currently using JSTL tag in a JSP page to import the content of an external page:
<c:import url="http://some.url.com/">
<c:param name="Param1" value="<%= param1 %>" />
...
<c:param name="LongParam1" value="<%= longParam1 %>" />
</c:import>
Unfortunately the parameters are now getting longer. Since they are encoded as GET parameters in the URL, I am now getting "414: Request-URL too Large" error. Is there a way to POST the parameters to the external URL? Maybe using a different tag / tag library?