We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Something I noticed when running wcf.js when pointed at a java based server.
The "/role" is appended to both addressing types, but it is only valid on the 2004/08. I think this actually comes from ws.js.
Valid (the links happen to work as well): http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous/ http://www.w3.org/2005/08/addressing/anonymous
Not valid: http://www.w3.org/2005/08/addressing/role/anonymous
See https://www.w3.org/TR/2006/REC-ws-addr-core-20060509/ and search for anonymous.
What it caused our java server to do was try to send a request to w3.org thinking it was an asynchronous call. (It thinks it's an external URL)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Something I noticed when running wcf.js when pointed at a java based server.
The "/role" is appended to both addressing types, but it is only valid on the 2004/08. I think this actually comes from ws.js.
Valid (the links happen to work as well):
http://schemas.xmlsoap.org/ws/2004/08/addressing/role/anonymous/
http://www.w3.org/2005/08/addressing/anonymous
Not valid:
http://www.w3.org/2005/08/addressing/role/anonymous
See https://www.w3.org/TR/2006/REC-ws-addr-core-20060509/ and search for anonymous.
What it caused our java server to do was try to send a request to w3.org thinking it was an asynchronous call. (It thinks it's an external URL)
The text was updated successfully, but these errors were encountered: