• 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

Error loading *.bin file

 
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i have a certain requirement like if plugin1 is down plugin2 has to be called,both plugin1 and plugin2 uses same 3rd party api for plugin implementation.But when my plugin1 is down i am getting error with plugin2 like
"Error loading resource file: challenge.bin"
This challenge.bin is in 3rd party api used for plugin1 and plugin2 implementation.

Error loading resource file: challenge.bin
java.lang.NullPointerException
at java.io.FilterInputStream.available(Unknown Source)
at ymsg.network.ChallengeResponseV10.<clinit>(ChallengeResponseV10.java:71)
at ymsg.network.Session.receiveAuth(Session.java:1331)
at ymsg.network.Session$InputThread.process(Session.java:2839)
at ymsg.network.Session$InputThread.run(Session.java:2797)

Did anybody had such problem earlier loding *.bin files .
[ June 26, 2006: Message edited by: raj hyd ]
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to JavaRanch.

It's hard to advise without knowing what's going on, and what role that file has. Can you verify whether that file is available and readable by whichever process is trying to access it?
 
raj hyd
Greenhorn
Posts: 9
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have an application which uses a API provided by the third party and my appllication uses a file Challenge.bin.
My Requirement is that when my first application is not working then my second application(which is replica of first application)should work.

But my second application is giving the error like error loading the resource file: Challenge.bin
Where as when my fisrt application is using this API and it is successfully loading Challenge.bin for it.But for second application it is not loading.
Can anybody suggest some solution for this.
 
Ulf Dittmer
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Well, to repeat myself:

Can you verify whether that file is available and readable by whichever process is trying to access it?

 
reply
    Bookmark Topic Watch Topic
  • New Topic