SOAP UI - 403 Error - You don't have permission to access /my-webservices/serviceName/ on this server

StackOverflow https://stackoverflow.com/questions/23288639

  •  09-07-2023
  •  | 
  •  

Question

I sent a SOAP webservice request using SOAP UI and I got this error.

<!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>
Was it helpful?

Solution

The issue was: SOAP-UI added a port number (443) to the URL like

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

Hence, removing the port number with the colon (:) solved the issue.

https://example.com/my-webservices/serviceName
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top