| org.apache.jmeter.samplers.gui.AbstractSamplerGui org.apache.jmeter.protocol.http.control.gui.WebServiceSamplerGui
WebServiceSamplerGui | public class WebServiceSamplerGui extends AbstractSamplerGui implements java.awt.event.ActionListener(Code) | | This is the GUI for the webservice samplers. It extends AbstractSamplerGui
and is modeled after the SOAP sampler GUI. I've added instructional notes to
the GUI for instructional purposes. XML parsing is pretty heavy weight,
therefore the notes address those situations.
Created on: Jun 26, 2003
|
WebServiceSamplerGui | public WebServiceSamplerGui()(Code) | | |
actionPerformed | public void actionPerformed(ActionEvent event)(Code) | | method from ActionListener
Parameters: event - that occurred |
browseWSDL | public String[] browseWSDL(String url)(Code) | | The method uses WSDLHelper to get the information from the WSDL. Since
the logic for getting the description is isolated to this method, we can
easily replace it with a different WSDL driver later on.
Parameters: url - array of web methods |
clearGui | public void clearGui()(Code) | | Implements JMeterGUIComponent.clearGui
|
configure | public void configure(TestElement el)(Code) | | the implementation loads the URL and the soap action for the request.
|
configureFromWSDL | public void configureFromWSDL()(Code) | | configure the sampler from the WSDL. If the WSDL did not include service
node, it will use the original URL minus the querystring. That may not be
correct, so we should probably add a note. For Microsoft webservices it
will work, since that's how IIS works.
|
|
|