aspose file tools
The moose likes Sockets and Internet Protocols and the fly likes After which method java send real request to server? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Sockets and Internet Protocols
Reply Bookmark "After which method java send real request to server?" Watch "After which method java send real request to server?" New topic
Author

After which method java send real request to server?

Ivan Franko
Ranch Hand

Joined: May 30, 2011
Posts: 44
for example, I have next java code:


And I cant understand, in which moment (after call what method) java send real request to the server?
Steve Luke
Bartender

Joined: Jan 28, 2003
Posts: 3090
    
    5

The connection / request isn't made until the connect() method is called. The connect() method is called implicitly in the getInputStream() method. So in your call the HTTP request is made when you call the getInputStream() method.


Steve
Ivan Franko
Ranch Hand

Joined: May 30, 2011
Posts: 44
Brilliant! Thank you!
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: After which method java send real request to server?
 
Similar Threads
What is difference between RequestDispatcher() and sendRedirect()?
How to send the request and retrieve response
Java Network Question, pls help
Post Does not Return new Values
Differences Between doGet(),doPost(),service()