try something similar to this to read the data from your servlet:

public void readData(URLConnection con) {

    Object anObject = null;
    try {

        ObjectInputStream ois = new ObjectInputStream(con.getInputStream());
        anObject = ois.readObject();
        ois.close();
    } catch (IOException e) {
        System.err.println(e.getMessage());
    }

    // do something with anObject
}

-mw


----- Original Message -----
From: "Kalashnikov D.V." <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, February 20, 2001 11:41 AM
Subject: Applet<->Servlet<->Oracle


> Hi all.
> I'm new in servlet programming, and want to create remote applet to
editing
> Oracle database.
> The user connects to the some servlet and verifies dbuserID and password.
> Then communication
> works by this scheme with another servlet:
>
>
> Client::applet <----------------->  web-server::servlet
>                                                          |
>                                                          | JDBC-ODBC
bridge
>                                                          |
>                                                    Oracle
>
> But I don't know how update data in client applet from servlet?
> And how to make a transfer of recordset from servlet to the applet without
> refreshing html page?
>
> Send me any examples or links to examples.
>
> Thanks in advance.
> Kalashnikov Dmitry.
>
>
___________________________________________________________________________
> To unsubscribe, send email to [EMAIL PROTECTED] and include in the
body
> of the message "signoff SERVLET-INTEREST".
>
> Archives: http://archives.java.sun.com/archives/servlet-interest.html
> Resources: http://java.sun.com/products/servlet/external-resources.html
> LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to