1 | public void modifyTestElement(TestElement s) {↵ | | |
|
2 | Subscriber↵ | | 1 | if (s instanceof SoapSampler) {↵
|
3 | Sampler sampler = (SubscriberSampler) s;↵ | | 2 | SoapSampler sampler = (SoapSampler) s;↵
|
4 | this.configureTestElement(sampler);↵ | | 3 | ↵
|
5 | sampler.setUseJNDIProperties(String.valueOf(useProperties.isSelected()));↵ | | |
|
6 | sampler.setJNDIIntialContextFactory(jndiICF.getText());↵ | | |
|
7 | sampler.setProviderUrl(urlField.getText());↵ | | 4 | sampler.setURLData(urlField.getText());↵
|
8 | sampler.setConnectionFactory(jndiConnFac.getText());↵ | | 5 | sampler.setXmlData(soapXml.getText());↵
|
9 | sampler.setTopic(jmsTopic.getText());↵ | | |
|
10 | sampler.setUsername(jmsUser.getText());↵ | | |
|
11 | sampler.setPassword(jmsPwd.getText());↵ | | |
|
12 | sampler.setUseAuth(reqAuth.getText());↵ | | |
|
13 | sampler.setIterations(itera↵ | | 6 | sampler.setXmlFile(soapXmlFile.getFilename());↵
|
14 | tions.getText());↵ | | 7 | sampler.setSOAPAction(soapAction.getText());↵
|
15 | sampler.setReadResponse(String.valueOf(readResponse.isSelected()));↵ | | 8 | sampler.setSendSOAPAction(sendSoapAction.isSelected());↵
|
16 | sampler.setClientChoice(clientChoice.getText());↵ | | 9 | sampler.setUseKeepAlive(useKeepAlive.isSelected());↵
|
17 | | | 10 |
|