JSP server to server communications

Sharky Forums


Results 1 to 3 of 3

Thread: JSP server to server communications

  1. #1
    Ursus Arctos Moderatis Grizzly's Avatar
    Join Date
    Sep 2000
    Location
    Providence, RI USA
    Posts
    3,077

    JSP server to server communications

    I've never really had the benefit of working with JSP, but someone I know is wondering where they should start looking for information on negotiating server to server communications via the HTTP protocol in JSP.

    Or in other words, they want a JSP script to open an HTTP request/response with a remote server. Does anyone have experience with this, or can someone help me point him in the right direction?

    My standard googling strategies didn't prove too fruitful this time around

  2. #2
    NullPointerException rock's Avatar
    Join Date
    Sep 2000
    Location
    York, PA
    Posts
    6,203
    Server to server? Usually JSPs are a client/server technology. Regardless, the best place to start is the javax.servlet.http API here. Specifically, the javax.servlet.http package.
    Last edited by rock; 10-21-2003 at 09:33 AM.

    Open Source is free like a puppy is free.

    It's only when you look at an ant through a magnifying glass on a sunny day that you realise how often they burst into flames.

    Understanding Evolution

  3. #3
    Ursus Arctos Moderatis Grizzly's Avatar
    Join Date
    Sep 2000
    Location
    Providence, RI USA
    Posts
    3,077
    Thanks for the input Rock, that wasn't really what I was looking for but you got us pointed in the right direction. I came across this class which appears to be more along the lines of what we're shooting for:

    http://java.sun.com/j2se/1.4.1/docs/...onnection.html

    Thanks again.

Posting Permissions

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