Package com.eviware.soapui.impl.wsdl.panels.monitor

Examples of com.eviware.soapui.impl.wsdl.panels.monitor.SoapMonitorDesktopPanel


  protected void openSoapMonitor( WsdlProject target, int listenPort, String incomingRequestWss,
      String incomingResponseWss, boolean setAsProxy, String sslEndpoint )
  {
    if( sslEndpoint == null )
    {
      UISupport.showDesktopPanel( new SoapMonitorDesktopPanel( target, listenPort, incomingRequestWss,
          incomingResponseWss, setAsProxy, null ) );
    }
    else
    {
      String ssl = validate( sslEndpoint );
      if( ssl == null )
      {
        UISupport.showErrorMessage( "SSL Monitor needs endpoint." );
      }
      else
      {
        UISupport.showDesktopPanel( new SoapMonitorDesktopPanel( target, listenPort, incomingRequestWss,
            incomingResponseWss, setAsProxy, ssl ) );
      }
    }
  }
View Full Code Here


        }
        return desktopPanel != null ? ((SoapMonitorContainer) desktopPanel).getSoapMonitor() : null;
    }

    protected DesktopPanel createDesktopPanel(WsdlProject target, int listenPort, String incomingRequestWss, String incomingResponseWss, boolean setAsProxy, String ssl) {
        return new SoapMonitorDesktopPanel(target, listenPort, incomingRequestWss,
                incomingResponseWss, setAsProxy, ssl);
    }
View Full Code Here

TOP

Related Classes of com.eviware.soapui.impl.wsdl.panels.monitor.SoapMonitorDesktopPanel

Copyright © 2018 www.massapicom. 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.