• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

RMI exception handling

 
Ranch Hand
Posts: 360
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I'm writing a client/server application using RMI.
The method book ticket calls remote methods.
While testing the application I noticed that if I stop the server and then call this method errors are
displayed on dos prompt instead of displaying message dialog. Is my logic wrong ?
public void bookTickets(int recordNumber, int seats, int operatingMode) {
:
:
try {
:
:
}
catch (DatabaseException e) {
message = "1" + e.getMessage() ;
JOptionPane.showMessageDialog(null, message, "Book Tickets", JOptionPane.INFORMATION_MESSAGE );
}
catch (RemoteException e) {
message = "2" + e.getMessage() ;
JOptionPane.showMessageDialog(null, message, "Book Tickets", JOptionPane.INFORMATION_MESSAGE );
}
catch (Exception e) {
message = "3" + e.getMessage() ;
JOptionPane.showMessageDialog(null, message, "Book Tickets", JOptionPane.INFORMATION_MESSAGE );
}
}
The error displayed on dos prompt on client side is:
java.rmi.ConnectionIOException: Exception creating connection to 123.123.123.94; nested exception is
java.net.SocketException
Thanks
 
reply
    Bookmark Topic Watch Topic
  • New Topic