Is the namespace sensitive to SOAP web service?

I tried to deploy a web service that I replaced with a machine, and when I tested one of the web methods, I got an error

"Server did not recognize the value of the HTTP header"

I was looking for a problem a bit and this error occurs when there is a difference in the namespace. I looked at what works in my development environment, and the namespace looks something like this:

https://webservice/ServiceName

and the namespace for the previous web service in production is as follows:

https://webservice/ServiceName

Does the question matter? Should they match exactly?

+3
source share
2 answers

They must exactly match: http://www.w3.org/TR/REC-xml-names/#NSNameComparison/

URI. , :

• http://www.example.org/wine

• http://www.Example.org/wine

• HTTP://www.example.org/Wine

+1

. XML .

+1

Source: https://habr.com/ru/post/1794718/


All Articles