Is there a way of sending the current HTML document and an extra parameter to a servlet not using forms? Or sending a a large parameter list with stringvalues etc describing the above.
I thought of sending the data as a fixed URL (/servlet?param=...) and receive it in the servlet with the doGet() method. But as I know of one can only send 255 characters using doGet(). doPost() would maybe fix this, but how do you send data to doPost() without forms.
I'm really stuck here and have no ideas of what to do. Can anybody give me some directions?
I thought of sending the data as a fixed URL (/servlet?param=...) and receive it in the servlet with the doGet() method. But as I know of one can only send 255 characters using doGet(). doPost() would maybe fix this, but how do you send data to doPost() without forms.
I'm really stuck here and have no ideas of what to do. Can anybody give me some directions?