On 1/20/06, Dola Woolfe <[EMAIL PROTECTED]> wrote:
> Hi,
>
> This question will reveal how little I know about
> networking or http or something else.
>
> Basically I wrote an applet that sends data to a
> servlet. I do it by forming a url with a query string
> (GET). But this doesn't work when there's too much
> data.
>
> What are my options?
> Is it possible to use POST?
> Or, better yet, is it possible to send a java object
> by creating a socket connection with the servlet?

Creating a socket is the easiest way for you, the only restriction is,
that you can only connect to the server the applet came from (unless
its signed) and have to bypass proxies etc. by yourself. And you need
of course something listening to the socket on the other end...

regards
Leon

>
> Very many thanks in advance!
>
> Dola
>
> __________________________________________________
> Do You Yahoo!?
> Tired of spam?  Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to