I'm using sling:resourceType =
"granite/ui/components/coral/foundation/form" for creating a form. In
this I've mentioned the action = "/bin/servlets/servlet-name". There is
one textfield which has name = "userName". I have not mentioned any
method. When I hit submit button, the GET request is sent to servlet
forming the following url :
http://localhost:4502/bin/servlets/ranosys-osgi-config?.%2FuserName=nikita
. That means the value is passed as the parameter in the requestURL. But
when I add met...