Search:

Type: Posts; User: Json

Search: Search took 0.08 seconds.

  1. Re: A different sort of POST method im implementing... Im a newbie ,please help.

    To send this on as a post you'd have to open up a URLConnection of some sort or use the Apache HTTPClient to create a POST http client and then issue the post to another url.

    Redirect is a...
  2. Re: A different sort of POST method im implementing... Im a newbie ,please help.

    No, basically you have to think of this somewhat different, the gateway in this case is acting like a web browser. It connects to the server by a url with parameters in it. The server then process...
  3. Re: A different sort of POST method im implementing... Im a newbie ,please help.

    Hello,

    First of all, reading parameter from a URL using Java and HttpServletRequest is done in a different way.



    final String parameter = request.getParameter("parameterName");

    ...
Results 1 to 3 of 3