I just wrote a simple servlet which outputs an jpg-image.
In my html-page i have this :
<img src="servlet/myservlet" />
Now i want to pass a large string which is the input to generate my
image. I tried with <img src="servlet/myservlet?largestring" /> but
i get only a part of the string.
Is there a possibility to send a large string as parameter to my
servlet from within a html-page ?