I created an api with context MyStudents in wso2 publisher. So the Request URL is MyStudents/v1. When I publish this api, I have resource /Students/{name}. In the wso2 store, when I try out the feature, the URL is http://MyServer.com/MyStudents/v1/Students/foo. If I keep the case as is in the URL, then my api works. If I use any other tool to call and change the case in url to http://MyServerName.com/mystudents/students/foo, then I get a 202 error. Can you please tell me how to make my urls case insensitive in wso2? Thanks.
相关问题
- UrlEncodeUnicode and browser navigation errors
- Improve converting string to readable urls
- Jasper: error opening input stream from url
- what's wrong in my URL validation Regex using
- Yii - Eliminate default controller ID for a module
相关文章
- C# HttpClient.SendAsync always returns 404 but URL
- Prevent $anchorScroll from modifying the url
- How does a browser handle cookie with no path and
- Base64URL decoding via JavaScript?
- Should I url encode a query string parameter that&
- MVC3 URL parameters - avoiding malicious attacks/s
- Call external URL from android and get response
- Regex to validate the index of a website vs. a spe
According to HTTP/1.1 specification, RFC2621 section 3.2.3 (http://tools.ietf.org/html/rfc2616#section-3.2.3) the path in HTTP URLs is case-sensitive. So from my point of view the WSO2 API Manager is handling the API URL correctly.