1 | if (c instanceof CounterConfig) {↵ | | 1 | if (s instanceof ↵
|
2 | CounterConfig config = (CounterConfig↵ | | 2 | SoapSampler) {↵
|
3 | ) c;↵ | | 3 | SoapSampler sampler = (SoapSampler) s;↵
|
4 | config.setStart(startField.getText());↵ | | 4 | ↵
|
5 | // Bug 22820 if (endField.getText().length() > 0)↵ | | |
|
6 | {↵ | | |
|
7 | config.setEnd(endField.getText());↵ | | |
|
8 | }↵ | | |
|
9 | config.setIncrement(incrField.getText());↵ | | |
|
10 | config.setVarName(varNameField.getText());↵ | | |
|
11 | config.setFormat(formatField.getText↵ | | 5 | sampler.setURLData(urlField.getText());↵
|
| | | 6 | sampler.setXmlData(soapXml.getText());↵
|
| | | 7 | sampler.setXmlFile(soapXmlFile.getFilename());↵
|
| | | 8 | sampler.setSOAPAction(soapAction.getText());↵
|
12 | ());↵ | | 9 | sampler.setSendSOAPAction(sendSoapAction.isSelected());↵
|
13 | config.setIsPerUser(perUserField.isSelected());↵ | | 10 | sampler.setUseKeepAlive(useKeepAlive.isSelected());↵
|
14 | | | 11 |
|