Forum Discussion
SmartBear_Suppo
Alumni
12 years agoHi,
You can edit the port number using UI, Click on the service and click the options and change the port number, see the screenshot
http://www.soapui.org/Service-Mocking/mocking-soap-services.html

or
You can add this script in the load script tab, Click on the Project > Overview tab > Load Script
Thanks,
Jeshtha
SmartBear Software
You can edit the port number using UI, Click on the service and click the options and change the port number, see the screenshot
http://www.soapui.org/Service-Mocking/mocking-soap-services.html

or
You can add this script in the load script tab, Click on the Project > Overview tab > Load Script
for( ms in project.mockServiceList )
{
ms.setport(3445)
// open window
def dp = com.eviware.soapui.support.UISupport.showDesktopPanel( ms )
// start mockservice
ms.start()
// minimize window
com.eviware.soapui.SoapUI.desktop.minimize( dp )
}
Thanks,
Jeshtha
SmartBear Software