I’am using the PipelineSourceName property and want our users be able to specifiy a regex that can be used in the renaming process.
I was thinking about setting this regex in the user (or site) settings file but the problem is that this file is read only by the client when the renaming process occurs on the server.
How can i retrive on server side the setting i put in the user settings file?
I saw the DistributeSettings method of the vtkSMSettings class, but it is effective only for batch process…
@mwestphal i added a setting through a plugin as done here: ThemysSettings · main · themys / ThemysServerPlugins · GitLab
This way i can see the settings in the Edit → Settings panel.
Now the question i have is how can i use this settings to initialize a property? As the settings file are read from the client, i suppose i should build a client only plugin that will read this settings and set it as a property through the source proxy?
@mwestphal if i understand well, i have to add this Property with its PropertyLink into my reader xml file.
Thus if i set the setting through the Edit → Settings panel, then this setting is “transmitted” to my reader object.
Am i right or dit i miss something?