Web services SOAP UI-403错误-您没有权限访问此服务器上的/my webservices/serviceName/

Web services SOAP UI-403错误-您没有权限访问此服务器上的/my webservices/serviceName/,web-services,soap,soapui,Web Services,Soap,Soapui,我使用SOAPUI发送了一个SOAPWebService请求,我得到了这个错误 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html> <head> <title>403 Forbidden</title> </head> <body> <h1>Forbidden</h1> &

我使用SOAPUI发送了一个SOAPWebService请求,我得到了这个错误

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html>
   <head>
      <title>403 Forbidden</title>
   </head>
   <body>
      <h1>Forbidden</h1>
      <p>You don't have permission to access /paga-webservices/businessService/on this server.</p>
  </body>
</html>

问题是:SOAP-UI向URL添加了一个端口号443,如

https://example.com:443/my-webservices/serviceName
因此,用冒号删除端口号:解决了这个问题

https://example.com/my-webservices/serviceName

您确定是soapUI添加了URL,而此端口不在WSDL中吗?