I am very new to ColdFusion with Linux environment. Can anyone help me how I can run the shared object file in my application? Earlier we had a Windows server where we were executing a ddl file with the help of an executable file by using <cfexecute>
Related
My teacher asked to install the oracle instant client with the instruction to run the setup.exe. However, I just couldn't find the setup.exe file after extract the zipped file. Here is all the files I got and another is the instruction.
the instruction to run the setup.exe
all the files I got
There's no setup.exe for instant client. You just unzip it to a directory, put that directory into PATH and off you go.
Instant Client Installation for Microsoft Windows 64-bit (presuming you're on MS Windows).
Screenshot you posted refers to Oracle client, NOT instant client! - these are two separate pieces of software.
Why can't I run my C++ code by creating another folder. The moment I store my c++ file in a folder , the complier states no such file is in directory. But i can run my java file from other folders. Anyone ?
This is the error I get running from the run configuration
But the same file can be compiled and run through the terminal.
the program can be run through the terminal
I am writing a Microsoft Service in C++. This service should dynamically load at runtime a .dll library located in a subfolder in the same folder as the executable. However, as someone told me, the actual working directory of the service is not the same as the executable directory, therefore the library is not found and not loaded.
As proof of this fact, I am able to load the library if I start the service executable as an application.
The folder structure of the application is as follows:
FOLDER\Service.exe
FOLDER\SUBFOLDER\library.dll
How would you access it as a service?
You can extract the directory from the current module path. You can use GetModuleFileName to retrieve file path of the current executable
I am developing a C++ application using Netbeans remote development platform. I don't know how to specify the libraries that are on the remote server, in my local Netbeans IDE. If I go through the normal procedure of specifying them in the project properties, I am getting only the local files and not remote files. please help.
It's the first time that I heard such a "requirement". Why should you want to access files over the internet during development? Why don't you install the needed libraries on your local machine, develop your software and then build a proper installer with all the needed files?
Here is the scenario.
I have a C++ application using CMake that has been setup on Ubuntu server machine. I have setup a remote development interface to it using Netbeans 6.9 on client machine, and I have been able to build it.
The problem is that (as per the setup of CMake script) the executables from the program are going to another directory in the server. When I try to run the program, Netbeans asks me for executables which I can't spot out on client machine (as they are residing on server machine).
Is there a way I can get the executables on local machine OR have a way to give their location to my Netbeans application.
Thanks for your help.