filenotfound

opening an html file on localhost in xampp/apache 2.2 using subdirectories under htdocs

I'll try again with a new question, appreciate the help... I have a site directory for html (dreamweaver cs3) with lots of subdirectories that contain html files for a number of drop down menus. They work fine where they are. But, they all have menus that are javascript and could be kept in a separate file. So, I want to use Include. I ...

Spring not finding Hibernate mappings file.

Hey guys, So I am taking Enunciate for a spin and have run into an issue when my servlet starts up. For some reason, despite the file being there, in the classpath, and everything being specified correctly, Spring tells me the following: 09-15@15:36:31 ERROR org.springframework.web.context.ContextLoader - Context initialization failed ...

What does ERROR_FILE_NOT_FOUND mean from SendMessage?

SendMessage returning 0 and GetLastError returning 2 (ERROR_FILE_NOT_FOUND). ERROR_ACCESS_DENIED is documented but not this. Anyone have any idea what this means? ...

Delphi for .NET does not find shared files in the .NET library search directories ("[DCC Error] F1026 File not found)

I have been trying to track down a problem with an installation of RAD Studio 2007 for some time. When compiling an ASP.NET application build with the .NET personability, I get an "[DCC Error] F1026 File not found error, where it reports that it cannot find a particular .dcuil file. The file that is referenced in this error message is ...

Accessing a resource within a jar (working in Netbeans but not on command line)

I have a jar file with bundled resources (language model binary files) that need loading at run time. The directory structure within the jar is tagger/app.class tagger/models/stop/SentDetect.bin.gz where SentDetect.bin.gz is a binary whos path is loaded into a thirdparty class (SentDetector) as a String parameter, i.e. URL url = this...

Where exactly should i add crossdomain.xml file?

Hi everyone... i am trying to create a internet radio.... I use icecast2 for streaming..... edcast plugin with winamp to send the music to icecast... and the xspf web music player (http://musicplayer.sourceforge.net/) to connect the user to the icecast server and play the music.... The setup works great and i can broadcast and receive...

Htaccess Rewrite Not Found

I'm using Mod Rewrite to remove index.php. I do not want to use queries. I want foo.com/bar to be interpreted as foo.com/index.php/bar. It does this fine, but gives me Not Found error. The requested URL /home/foo/www/index.php/bar was not found on this server. Why!! ...

Android - Audio recorder FileNotFound

Hi, I'm trying to record audio this.recorder = new android.media.MediaRecorder(); this.recorder.setAudioSource(android.media.MediaRecorder.AudioSource.MIC); this.recorder.setOutputFormat(android.media.MediaRecorder.OutputFormat.DEFAULT); this.recorder.setAudioEncoder(android.media.MediaRecorder.AudioEncoder.DEFAULT); this.recorder....

Java swing app can't find image

Hello, I'm making a torpedo game for school in java with swing gui, please see the zipped source HERE. I use custom button icons and mouse cursors of images stored in the /bin/resource/graphics/default folder's subfolders, where the root folder is the program's root folder (it will be the root in the final .jar as well I suppose) which...

Excel VBA File not Found

During development of some Excel vba code about every other iteration where I go in and add some code then save the file, the next time I open the thing (it is automatically set to run the code on open) I get a spurious "File not Found" error. To fix it I copy all the code- modules and classes plus the startup code, to a fresh blank exc...

Is it possible to capture a "file not found" from another process and then return a file to that process?

I have a legacy application that looks for files in a directory. It does not handle missing files very well. What I want to do is "capture" the file not found errors, and send another file back to the calling app instead. Similar to how you could handle a 404 error on a webserver and return something based on what the requested URL was...