Forum Discussion
MMehalso
14 years agoOccasional Contributor
Hey Ole -
I actually went with #1 from above, combined with the fix you made in the nightly build. All I really needed to do was move the list of MockRunner's into the MockServletSoapUICore class:
Do you think that you all can make a similar change for the 4.0 release?
Thanks,
Matt
I actually went with #1 from above, combined with the fix you made in the nightly build. All I really needed to do was move the list of MockRunner's into the MockServletSoapUICore class:
....(start snippet)....
//Move from here:
//private List<MockRunner> mockRunners = new ArrayList<MockRunner>();
class MockServletSoapUICore extends DefaultSoapUICore implements MockEngine
{
private final ServletContext servletContext;
//To here:
private List<MockRunner> mockRunners = new ArrayList<MockRunner>();
....(end snippet)....
Do you think that you all can make a similar change for the 4.0 release?
Thanks,
Matt