----------------------------------------------------------------
BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
WHEN YOU POST, include all relevant version numbers, log files,
and configuration files. Don't make us guess your problem!!!
----------------------------------------------------------------
Methinks that I pharsed the problem very badly.
I have a static (ECS) generated page with say 3 images in it. Each of these
images have say 3000 data points in them. Each image is generated from the data
passed to them. Basically can I do a get with 3000 variables without problems or
is data of that size left for post (I know it is a bit of an elementry question).
John
"M. Greenblatt" wrote:
> John-
>
> If you read the HTTP/1.0 specification you will find that POST request
> headers are formatted in the following manner:
>
> Header: Value
> Header: Value
> [newline]
> [newline]
> var1=val1&var2=val2...etc
>
> Knowing this information you can format the POST request in the applet
> and send it to your server-side app. I dont remember the exact headers
> but HTTP specification info is available at:
>
> http://www.w3.org/Protocols/
>
> - MG
>
> > HI,
> >
> > If you don't want to use forms (or forms-post is not an option), the only
> > way I think you can do is to write an applet which can easily make post
> > calls to the image servlet. Essentially the applet is the image renderer,
> > which will display the dynamically generated image.
> >
> > Again, you might get away with sticking to the forms option.
> >
> > cheers
> > Gangmeng
> > The University of Melbourne
> >
> > >This is probably a small bit offtopic, my apologies if it is.
> > >
> > >Problem. I have a image generating servlet which works fine with Get
> > >data
> > >[<IMG
> > >SRC="/example/TestGif?width=100&height=100&values=1&values=2&.....">]
> > >but I want to pass a shit load of data to it (and Get is probably not
> > >the best canidate for this).
> > >
> > >Any suggestions for this, as I have a feeling that it is impossible to
> > >actually do this.
> > >
> > >Fortuatly the data is coming off a db so I can get the data that way but
> > >it would result in needless calls to the db and would make my image
> > >drawing less generic and increase the coupling.
> > >
> > >John
--
==============================================================================
Beta may be a state of mind
But Alpha is the state of being
==============================================================================
--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Archives and Other: <http://java.apache.org/main/mail.html>
Problems?: [EMAIL PROTECTED]