Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
138 views

Java Runtime.exec(COMMAND) doesnt work in win2K8 R2

I am creating a process using the below 2 lines Runtime rt = Runtime.getRuntime(); Process p = rt.exec(COMMAND); where COMMAND = "program.exe". program.exe is on the system's PATH variable. Now ...
3
votes
1answer
133 views

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 ...
2
votes
0answers
47 views

No such a file or directory in linux bash [migrated]

I installed a program on linux (UBUNTU), I set the environment variables. Unfortunately when I type the command to start the program it gave me the Message: No such a file or directory. I can see ...
2
votes
2answers
414 views

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 ...
1
vote
4answers
118 views

Error: Could not find or load main class- Novice

Hi I am a novice in JAVA. I have been getting this file not found exception inspite of the file existing in the very location I have specified in the path which is Initially I had the issue of file ...
1
vote
1answer
56 views

Running Selenium from eclipse + browser says file not found for base url

I am trying to run Selenium from eclipse. This is the code that I am executing - Selenium selenium = new DefaultSelenium("localhost",4444,"*iexplore","http://www.google.com"); selenium.start(); ...
1
vote
0answers
364 views

Android FileNotFoundException getting thrown from URL.openStream()

I have an application that is connecting to a webservice. I have one user with an LG Optimus T that is getting a FileNotFoundException whenever the app tries to connect to the web service on his ...
1
vote
4answers
131 views

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 ...
1
vote
1answer
837 views

Android - Audio recorder FileNotFound

I'm trying to record audio this.recorder = new android.media.MediaRecorder(); this.recorder.setAudioSource(android.media.MediaRecorder.AudioSource.MIC); ...
1
vote
2answers
153 views

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 ...
1
vote
1answer
639 views

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 ...
1
vote
2answers
1k views

Spring not finding Hibernate mappings file

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, ...
0
votes
0answers
63 views

file not found when using DistributedCache on Hadoop

I have a fileNotFound problem using code below, this is a simple test of distributedCache, I don't know what is the problem? The path of the file is right, but I can not find files on datanode: ...
0
votes
1answer
35 views

Javascript error/WebResource not found on a page with RequiredFieldValidators

A friend on mine is having an issue on one of his webforms, he referrs that everytime he loads one page containing RequiredFieldValidators the page throws the following Javascript/WebResource error: ...
0
votes
0answers
56 views

Opening text file in assets folder throws a FileNotFound exception

I'm currently developing an app where I need to open a text file. I put that file in the assets folder and try to open it with the following code: try { AssetManager manage = ...
0
votes
2answers
80 views

FileNotFoundException

I am getting a FileNotFoundException while trying to execute a function with a try-catch block. I've tried catching a FileNotFoundException, to no avail. Can anyone tell me why it does this? public ...
0
votes
3answers
135 views

Why can't Matlab see my function?

My function is definitely working; it's tested and was at one point being recognized. Here's the function prototype: function [X Y] = calculateEllipse(x, y, a, b, angle) %# Code here end Here's ...
0
votes
1answer
541 views

Java swing app can't find image

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 ...
0
votes
1answer
1k views

Where exactly should i add crossdomain.xml file?

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 ...
0
votes
1answer
290 views

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?
0
votes
1answer
5k views

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 ...
-2
votes
2answers
143 views

Ubuntu - issue with opening a .txt file from terminal

I have built a .cpp program in order to write some content to a .txt file created within the .cpp file. I manage to write the desired content, however, when I am trying to open the created file from ...