1 | public void configure(TestElement el) {↵ | | 1 | public void modifyTestElement(TestElement s) {↵
|
2 | super.configure(el);↵ | | 2 | this.configure↵
|
3 | SubscriberSampler sampler = (Subscriber↵ | | 3 | TestElement(s);↵
|
4 | Sampler) el;↵ | | 4 | if (s instanceof SoapSampler) {↵
|
5 | useProperties.setSelected(sampler.getUseJNDIPropertiesAsBoolean());↵ | | 5 | ↵
|
6 | jndiICF.setText(↵ | | 6 | SoapSampler sampler = (SoapSampler) s;↵
|
7 | sampler.getJNDIInitialContextFactory());↵ | | 7 | sampler.set↵
|
8 | urlField.setText(sampler.getProviderUrl());↵ | | 8 | URLData(urlField.getText(↵
|
9 | jndiConnFac.setText(sampler.getConnectionFactory());↵ | | |
|
10 | jmsTopic.setText(sampler.getTopic());↵ | | |
|
11 | jmsUser.setText(samp↵ | | 9 | ));↵
|
| | | 10 | sampler.setXmlData(soapXml.getText());↵
|
12 | ler.getUsername());↵ | | 11 | sampler.setXmlFile(soapXmlFile.getFilename());↵
|
13 | jmsPwd.setText(sampler.getPassword());↵ | | 12 | sampler.set↵
|
14 | iterations.setText(sampler.getIterations());↵ | | |
|
15 | reqAuth.setText(↵ | | 13 | SOAPAction(soapAction.getText());↵
|
16 | sampler.getUseAuth());↵ | | 14 | sampler.set↵
|
17 | readResponse.setSelected(↵ | | 15 | SendSOAPAction(sendSoapAction.isSelected());↵
|
18 | sampler.getReadResponseAsBoolean());↵ | | 16 | sampler.set↵
|
19 | clientChoice.setText(sampler.getClientChoice());↵ | | 17 | UseKeepAlive(useKeepAlive.isSelected());↵
|
20 | | | 18 | }↵
|
| | | 19 |
|