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

Code behaving mysteriously - code snippets are skipped!!!

 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Code behaving mysteriously - code snippets are skipped!!!

Hi,
I've written a code snippet which used JDBC, RMI along with core java APIs to do some processing of an email. The snippet is outlined below : (i'm sorry I cannot paste the actual code here)



However, its been THREE(3) days now and the above code has been executing in a mysterious way. Here is a snippet from my logs, which will shows the strange behavior :

2006-09-25 00:06:56,043;DEBUG;executeServer;processing
2006-09-25 00:06:56,043;INFO ;processFile;Processing file : /mailstore/763/1159105932.M220196P25933
2006-09-25 00:06:56,043;DEBUG;processFile;Creating parser for processing file
2006-09-25 00:06:56,549;DEBUG;processFile;Parser for processing file created

2006-09-25 00:06:56,550;DEBUG;processFile;Connecting to RMI service on : rmi://127.0.0.1:1099/Cache
2006-09-25 00:06:56,551;FATAL;executeServer;Proceeding to next....


As we can see the code snippet after the "Connection to RMI" thing is being skipped completely!!! Also there is no exception OR error inthe code since it is not logging the message from the catch blocks!!!

Please could someone explain this behavior?? Any tools / techniques // previous experiences of such behavior elsewhere would be great resources to look at. Please oblige by redirecting me to them!

Awaiting response eagerly,
Thanks,
 
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Perhaps the line

is raising some form of java.lang.Error?
 
Yes, my master! Here is the tiny ad you asked for:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic