CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Nov 1999
    Location
    Haddonfield, NJ (South Jersey)
    Posts
    84

    Please help! Urgent.. Need to save binary data from an applet on a server side

    Does anyone know how to do that? The applet generates some binary data to an OutputStream. I need to be able to save to a disk on a server size in a subdirectory where the codebase is.

    any hints appreciated.. thanks!
    --maciej



  2. #2
    Join Date
    Dec 2000
    Location
    Belgium
    Posts
    264

    Re: Please help! Urgent.. Need to save binary data from an applet on a server side

    Hi,

    I remember shortly a similar question:
    http://codeguru.earthweb.com/bbs/wt/...a&Number=13934

    I answered:
    http://codeguru.earthweb.com/bbs/wt/...a&Number=13940

    In your position, I would make a socket connection. The output stream would be the socket's output stream. You might use RMI if that's simpler for your.

    About sockets:
    http://java.sun.com/docs/books/tutor...ets/index.html

    About applet communication:
    http://developer.java.sun.com/develo...ack/index.html
    http://developer.java.sun.com/develo.../53/index.html


    Regards,
    Geert Arys

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured