• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Web Service Client - Initiate another Service if no Reponse after 60 sec

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a situation where i have to write a Web Service client. I have to wait for 60 seconds to get the response if no response comes because of network error or something, i have to initiate another method of Web Service. How to do this it is urgent for me.
 
vijay gandra
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have used the following code for this

set the TIME_OUT for 6 secounds

after this time if no response comes i got an exception java.net.SocketTimeoutException: Read timed out
so in catch i did like this
reply
    Bookmark Topic Watch Topic
  • New Topic