My ParaView plugin works fine for a C++ class MyClass. However, when I put the class in a namespace mynamescape, ParaView does not recognize it, leading to a crash with the well-known message “This typically means that ParaView does not know about the request class to create an instance of if. Ensure that it has been correctly wrapped using the client-server wrappers and the wrapping has been initialized. Note class names are case-sensitive.”
Can I somehow specify the name of the namespace containing the class in the ServerManagerConfiguration? It would make sense to me to have something like this:
Where can I find the documentation for the ParaView plugin XML file? I would like to know what fields are supported in ProxyGroup, the allowed types, etc.
It was just an example how I would imagine supporting a namespace in the XML file.
I don’t think this concept exists for proxies.
If I cannot use a namespace in the PV plugin wrapping, I can live with it. The problem is that I don’t know the supported keywords and values in the XML file.