TGeppert
10 years agoOccasional Contributor
ResponseEditor plugins are added twice to the SoapUI Pro Panel
Hallo,
there is a bug in the soapui core adding EditorViewFactory(s) twice to the EditorViewFactoryRegistry. This results in double instantiation of ResponseEditor plugins (and Tabs in the Gui).
See class SwingSoapUICore in method afterStartup first 3 lines:
for (EditorViewFactory factory : SoapUI.getFactoryRegistry().getFactories(EditorViewFactory.class))
{ EditorViewFactoryRegistry.getInstance().addFactory(factory); }
but this is also done previously in the Constructor of EditorViewFactoryRegistry also with exactly the same 3 lines.
Best regards,
Agnieszka
It seems we've fixed this issue in 1.4.0 release. Could you check it with 1.4?