Re: [Paraview] Not a valid QT plugin on windows

2010-02-02 Thread Eric Nodwell
Following this thread: http://markmail.org/message/f25hi3bl6ldptzav , I'd just like to add that I get exactly the same error. Namely, we have a number of plugins that compile and load on Linux and on OS-X, but on Windows XP we get a is not a valid Qt plugin error when we attempt to load them.

Re: [Paraview] Not a valid QT plugin on windows

2010-02-02 Thread Dave Partyka
I think you get this error if you're missing a dll at runtime? If you place your plugin in the bin dir of your build and load it from there does it work? On Tue, Feb 2, 2010 at 12:44 PM, Eric Nodwell enodw...@ucalgary.ca wrote: Following this thread: http://markmail.org/message/f25hi3bl6ldptzav

Re: [Paraview] Not a valid QT plugin on windows

2010-02-02 Thread Utkarsh Ayachit
As a side note, I attempted to set the environment variable PV_PLUGIN_DEBUG as described at http://paraview.org/Wiki/Plugin_HowTo#Debugging_Plugins in order to obtain more information, but it didn't seem to have any effect.  There was no additional output in either the Output Messages window

Re: [Paraview] Not a valid QT plugin on windows

2010-02-02 Thread Eric Nodwell
Thanks. I've added a note to that effect in the wiki. Eric. On 2010-02-02, at 11:22 AM, Utkarsh Ayachit wrote: As a side note, I attempted to set the environment variable PV_PLUGIN_DEBUG as described at http://paraview.org/Wiki/Plugin_HowTo#Debugging_Plugins in order to obtain more

Re: [Paraview] Not a valid QT plugin on windows

2010-02-02 Thread Eric Nodwell
Dave, That did indeed fix the problem. It was an obvious fix in hindsight. (The PATH variable was set, but slightly incorrectly it turns out.) I've added an entry to the Pitfalls section of the wiki: http://paraview.org/Wiki/Plugin_HowTo#.22Is_not_a_valid_Qt_plugin.22_in_Windows . Thanks,

Re: [Paraview] Not a valid QT plugin on windows

2009-01-06 Thread Jérôme
-Original Message- From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org] On Behalf Of Berk Geveci Sent: 18 December 2008 14:16 To: Jacques Papper Cc: paraview@paraview.org Subject: Re: [Paraview] Not a valid QT plugin on windows Hi Jacques, I can't be of much help but I

Re: [Paraview] Not a valid QT plugin on windows

2009-01-06 Thread Berk Geveci
in ParaView 3.2 should work in 3.4 right ? JAcques -Original Message- From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org] On Behalf Of Berk Geveci Sent: 18 December 2008 14:16 To: Jacques Papper Cc: paraview@paraview.org Subject: Re: [Paraview] Not a valid QT plugin

Re: [Paraview] Not a valid QT plugin on windows

2008-12-19 Thread Jacques Papper
work in 3.4 right ? JAcques -Original Message- From: paraview-boun...@paraview.org [mailto:paraview-boun...@paraview.org] On Behalf Of Berk Geveci Sent: 18 December 2008 14:16 To: Jacques Papper Cc: paraview@paraview.org Subject: Re: [Paraview] Not a valid QT plugin on windows Hi Jacques

Re: [Paraview] Not a valid QT plugin on windows

2008-12-17 Thread Jacques Papper
Ok, I removed the EXPORTS macro in my header, and it produces the same as setting the flag vtkIO_EXPORTS. The library is still not loaded though. So now I'm looking at the dependencies and the Initialize function. Kenneth, how do I go about making sure that the server manager initialization

Re: [Paraview] Not a valid QT plugin on windows

2008-12-17 Thread Moreland, Kenneth
The depends command (provided by MSVC) provides information on one dll both about the other libraries it depends on and the symbols (variables and functions) that it exports. I believe the information is at the right at a bit below center in the GUI. For a ParaView plugin, there are typically

[Paraview] Not a valid QT plugin on windows

2008-12-16 Thread Jacques Papper
Hi all, I have two plugins for Paraview that used to work fine with ParaView 3.2 under linux (I used to build them at the same time as ParaView.) Now I am using Visual Studio and have compiled the plugins outside of paraview. I am able to generate dll for both the server and client plugins. (I

Re: [Paraview] Not a valid QT plugin on windows

2008-12-16 Thread Moreland, Kenneth
Odd that only one of the two plugins get loaded. Perhaps the server plugin is missing some symbols. Try running the depends program on it and make sure it can find all of the dependent dlls. Also make sure that the server manager initialization function is properly exported (I think it's