1 | public void configure(TestElement el) {↵ | | 1 | public void configure(TestElement element) {↵
|
2 | super.configure(el);↵ | | 2 | super.configure(element);↵
|
3 | SoapSampler sampler = (SoapSampler) el;↵ | | 3 | BSFSampler sampler = (BSFSampler) el↵
|
4 | url↵ | | 4 | ement;↵
|
5 | Field.setText(sampler.getURLData());↵ | | 5 | scriptField.setText(sampler.getScript());↵
|
6 | sendSoapAction.setSelected(sampler.getSendSOAPAction());↵ | | 6 | ↵
|
7 | soapAction.setText(sampler.getSOAPAction());↵ | | |
|
8 | soapXml.setText(sampler.getXmlData());↵ | | 7 | langField.setSelectedItem(sampler.getScriptLanguage());↵
|
9 | soapXmlFile.setFilename(sampler.getXmlFile());↵ | | 8 | filename.setText(sampler.getFilename());↵
|
10 | useKeepAlive.setSelected(sampler.getUseKeepAlive());↵ | | 9 | parameters.setText(sampler.getParameters());↵
|
11 | | | 10 |
|