Package com.eviware.soapui.support.components.MetricsPanel

Examples of com.eviware.soapui.support.components.MetricsPanel.MetricsSection.addMetric()


        MetricsSection section = metrics.addSection("WSDL Definition");

        try {
            section.addMetric("WSDL URL", MetricType.URL).set(iface.getDefinition());
            section.addMetric("Namespace").set(iface.getBindingName().getNamespaceURI());
            section.addMetric("Binding").set(iface.getBindingName().getLocalPart());
            section.addMetric("SOAP Version").set(iface.getSoapVersion().toString());
            section.addMetric("Style").set(iface.getStyle());
            section.addMetric("WS-A version").set(iface.getWsaVersion());
        } catch (Exception e) {
            UISupport.showErrorMessage(e);
View Full Code Here


        try {
            section.addMetric("WSDL URL", MetricType.URL).set(iface.getDefinition());
            section.addMetric("Namespace").set(iface.getBindingName().getNamespaceURI());
            section.addMetric("Binding").set(iface.getBindingName().getLocalPart());
            section.addMetric("SOAP Version").set(iface.getSoapVersion().toString());
            section.addMetric("Style").set(iface.getStyle());
            section.addMetric("WS-A version").set(iface.getWsaVersion());
        } catch (Exception e) {
            UISupport.showErrorMessage(e);
        }
View Full Code Here

        try {
            section.addMetric("WSDL URL", MetricType.URL).set(iface.getDefinition());
            section.addMetric("Namespace").set(iface.getBindingName().getNamespaceURI());
            section.addMetric("Binding").set(iface.getBindingName().getLocalPart());
            section.addMetric("SOAP Version").set(iface.getSoapVersion().toString());
            section.addMetric("Style").set(iface.getStyle());
            section.addMetric("WS-A version").set(iface.getWsaVersion());
        } catch (Exception e) {
            UISupport.showErrorMessage(e);
        }
View Full Code Here

            section.addMetric("WSDL URL", MetricType.URL).set(iface.getDefinition());
            section.addMetric("Namespace").set(iface.getBindingName().getNamespaceURI());
            section.addMetric("Binding").set(iface.getBindingName().getLocalPart());
            section.addMetric("SOAP Version").set(iface.getSoapVersion().toString());
            section.addMetric("Style").set(iface.getStyle());
            section.addMetric("WS-A version").set(iface.getWsaVersion());
        } catch (Exception e) {
            UISupport.showErrorMessage(e);
        }

        section.finish();
View Full Code Here

    private Component buildServiceOverviewTab() {
        metrics = new MetricsPanel();
        MetricsSection section = metrics.addSection("WSDL Definition");

        try {
            section.addMetric("WADL URL", MetricType.URL).set(
                    restService.getWadlUrl() + (restService.isGenerated() ? " - generated" : ""));

            // section.addMetric( "Namespace" ).set(
            // iface.getBindingName().getNamespaceURI() );
            // section.addMetric( "Binding" ).set(
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.