Failed to create application - ApplicationFactory_impl.cpp - redhawksdr

I am running Redhawk 1.10.2 on a CentOS 6.6 (2.6.32-504) machine. I am getting the following error.
Failed to create application: test_051_103150756 Unable to make connection DDC0 in waveform 'test_051_103150756_1'; error occurred near line:2995 in file:ApplicationFactory_impl.cpp;
IDL:CF/ApplicationFactory/CreateApplicationError:1.0
This waveform was running on a CentOS 6.5 (2.6.32-71) machine with Redhawk 1.10.0. The waveform only has a DataConverter in it.

As pwolfram suggested, it looks as though you had a connection named DDC0. Check your SAD.xml file to see how this connection is defined and it may shed light on the solution. You can also increase the debug level of the domain and device manager to view how the waveform is being brought up and connections made. If you are using the IDE to launch the domain & device manager, use the log level combo boxes to increase the log level. If you are launching via the command line, use the -debug command line option. In the IDE, these debug statements show up in the IDE's console view for the domain and device manager processes.

Related

QXcbConnection: Could not connect to display while launching application

I have a QT application which have multiple widgets and QT graphics. I created a package and application works fine in two machine but when I tried to execute in third machine its throwing error
QXcbConnection: Could not connect to display
Whether I need to install something related to graphics. Anyinput is a great help

Chalkboard fails to launch component

I've recently Installed CentOS 6.6 and installed the x64 rpms from the github site. When I try to drag any component from the Palette to the chalkboard, I get an error like below:
'Launching SigGen_1' has encountered a problem.
Failed to launch SigGent_1
Details:
Timed out waiting for component to start. SigGen_1
java.util.concurrent.TimeoutException
When the IDE launches a component within the Chalkboard environment, it provides the process a reference to the IDE's NamingContext interface for the component to register with once it's up and running. You can see this reference as an IOR in the command line executed by the IDE. Use "ps -ef" to view the command run. When the process does not register with the IDE then the IDE will throw the error you described. If the component dies and returns a non-zero error code the IDE will report that as well
The IDE has a Console View created for each process launched within the Chalkboard. Clicking on the "Display Selected Console" menu will show you a list of consoles including the now terminated SigGen process. This may provide you with some information if the component died during standard execution.
If the process failed to launch, there may not be any information displayed in the console. In this case, using the python sandbox to launch the component may provide additional information as suggested by DrewC.
I had the same issue. Somehow it was related to the proxy sever I was behind. I removed the proxy and it worked.

Kernel debugging in VS 2012

I have a Kernel mode filter driver project. Host: Win8 Pro x64 running VS2012, Target:Win8 Pro x64 VM on the same machine. I was able to provision the VM through VS 2012 over the network. I deployed the package project. When I try to deploy and Install the package from VS, I am not able to succeed. So I manually installed the driver and the driver works fine. After installing the driver manually, I attach to the kernel of the VM and click on Break all. I find the Kd console in the immediate window of VS '12. I type the command "bu !DriverEntry" and then I type the "g" command. I see the message Debuggee is running. When I place break points on my code and press any key in the VM, I don't see the break points getting hit in my code. Need help!!
Use Fltmc command to load and attach your filter to a specific drive
You can put breakpoints directly in VS without the need to type in the console, if your filter is getting loaded after you type fltmc load "filter name" VS should stop at the driver entry function breakpoint, you may also need to attach it.
Dont forget to check if your debugger is working by when you click break all target machine should freeze.
I wasn't able to debug through VS. I went for a work around and this time I used a Win7 VM. Made use of the KdPrint() method and used the DebugView tool to see the messages. This is a lengthy process but atleast I'm able to debug my driver. Hope this helps someone else too

JavaFX crashes X Server

Background/Context:
I'm currently developing a touch screen application which is aimed to run on Linux. As a development framework I chose JavaFX (jdk1.7.0_10) due to its rapid prototyping easiness. I'm using Arch Linux (kernel 3.6.10-1-ARCH) distribution and since JavaFX needs a head-full environment to run, I installed Xorg on top of the base configuration. Even thought I'm able to run my JavaFX application, I have some issues with popup windows that are being displayed in my application.
When trying to display those popup windows, sometimes they don't respond as expected or event worse, they crash my application. The error I get is the following:
The program 'java' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadDrawable (invalid Pixmap or Window parameter)'.
(Details: serial 51101 error_code 9 request_code 62 minor_code 0)
(Note to programmers: normally, X errors are reported asynchronously;
that is, you will receive the error a while after causing it.
To debug your program, run it with the --sync command line
option to change this behavior. You can then get a meaningful
backtrace from your debugger if you break on the gdk_x_error() function.)
By the way, when running the same application on Windows (my development machine), everything works fine.
I also tried to run a composite manager ('xcompmgr') since i was also getting some warnings like
Can't create transparent stage, because your screen doesn't support alpha channel. You need to enable XComposite extension.
but it didn't helped.
Question:
Am i missing some files or configurations in order to run smoothly JavaFX in Linux, or has any one encountered the same challenge? Since my main concern is performance (due to limited hardware specs), I don't want to install a full featured Linux distribution. I only need to run my JavaFX application.
Try running JavaFX in software rendering mode: java -Dprism.order=j2d -jar your.jar
Also note that your platforms seems to be not included into list of supported ones: http://www.oracle.com/technetwork/java/javafx/downloads/supportedconfigurations-1506746.html

how to run J2me emulator

When I run the program in j2me the emulator is not run and show that code what is mean? here the code.
C:\Documents and Settings\admintrator\My Documents\JavaMESDKProjects\MobileApplication4\nbproject\build-impl.xml:629: Execution failed with error code 1.
BUILD FAILED (total time: 2 minutes 1 second)
Seems that you do not have J2ME SDK installed on your computer.
Download it and install on your computer.
After that specify the location of installed J2ME SDK in your Netbeans project "Platform" settings.
Also make sure that Java/bin folder, where javac.exe located is specified in the system PATH environment variable.
I also experiencing this problem using sun wirless toolkit but my solution to this problem is somewhat irrational. When I'm going to run the application I disabling all my network adapter, LAN, WLAN even Bluetooth if you have but still I don't think that it will solve everything. You can try to do this if you wish but not suggesting the best way to do.

Resources