1 | public void modifyTestElement(TestElement s) {↵ | | 1 | public void modifyTestElement(TestElement s) {↵
|
2 | WebServiceSampler sampler = (WebServiceSampler) s;↵ | | 2 | PublisherSampler sampler = (PublisherSampler) s;↵
|
3 | this.configureTestElement(sampler);↵ | | 3 | this.configureTestElement(sampler);↵
|
4 | sampler.setDomain(domain.getText());↵ | | 4 | sampler.setUseJNDIProperties(String.valueOf(useProperties.isSelected()));↵
|
5 | sampler.setProperty(HTTPSamplerBase.PORT,port.getText());↵ | | 5 | sampler.setJNDIIntialContextFactory(jndiICF.getText());↵
|
6 | sampler.setProtocol(protocol.getText());↵ | | 6 | sampler.setProviderUrl(urlField.getText());↵
|
7 | sampler.setPath(path.getText());↵ | | 7 | sampler.setConnectionFactory(jndiConnFac.getText());↵
|
8 | sampler.setWsdlURL(wsdlField.getText());↵ | | 8 | sampler.setTopic(jmsTopic.getText());↵
|
9 | sampler.setMethod(HTTPSamplerBase.POST);↵ | | 9 | sampler.set↵
|
10 | sampler.setSoapAction(soapAction↵ | | 10 | Username(jmsUser.getText());↵
|
11 | .getText());↵ | | 11 | sampler.setPassword(jmsPwd.getText());↵
|
12 | sampler.setXmlData(soapXml.getText());↵ | | 12 | sampler.setTextMessage(textMessage.getText());↵
|
13 | sampler.setXmlFile(soapXmlFile.getFilename());↵ | | 13 | sampler.setInputFile(messageFile.getFilename());↵
|
14 | sampler.setXmlPathLoc(randomXmlFile.getText());↵ | | 14 | sampler.setRandomPath(randomFile.get↵
|
15 | sampler.setTimeout(connectTimeout.getText());↵ | | |
|
16 | sampler.setMemoryCache(memCache.isSelected());↵ | | |
|
17 | sampler.setReadResponse(readResponse.isSelected());↵ | | |
|
18 | sampler.setUseProxy(useProxy.isSelected());↵ | | |
|
19 | sampler.setProxyHost(proxyHost↵ | | 15 | Filename());↵
|
| | | 16 | sampler.setConfigChoice(configChoice.getText());↵
|
| | | 17 | sampler.setMessageChoice(msgChoice.getText());↵
|
20 | .getText());↵ | | 18 | sampler.setIterations(iterations.getText());↵
|
21 | sampler.setProxyPort(proxyPort.getText());↵ | | 19 | sampler.setUseAuth(reqAuth.getText());↵
|
22 | | | 20 |
|