Server returned HTTP response code: 405 for URL

2019-07-25 07:35发布

When I create a new SOAP project in SoapUI 4.6.4, first I have to add initial WSDL url. My initial WSDL URL: http://l:xxxxxxxxxxxxxxx?wsdl.

But I'm getting this error:

Error loading http://lxxxxxxxx?wsdl: org.apache.xmlbeans.XmlException: java.io.IOException: Server returned HTTP response code: 405 for URL: http://lxxxxxxxx?wsdl

So how can I fix this?

标签: java http soapui
2条回答
Emotional °昔
2楼-- · 2019-07-25 07:45

Response Code 405: method Not Allowed one of the Methods GET/POST is disallowed, and you are using one of them check this

查看更多
混吃等死
3楼-- · 2019-07-25 07:56

405 is method not allowed error, this mean you have method that causing problem when its being called. Check if you have duplicate path with method in your wsdl. If no duplicate path try open the http://lxxxxxxxxxxxx?wsdl in your browser if you cant, that`s mean something wrong with your web configuration.

查看更多
登录 后发表回答