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
I am sending a URL which is automatilly encoded when the request is hit from robotframework
http://192.168.1.5/myapi/component/persn000000000001045:(itemList)
It converts it into this when I see it using wire shark
http://192.168.1.5/myapi/component/persn000000000001045:%28itemList%29
After some troubleshooting, I found that in webob/request.py, there is a methods "blank" which contains line like this: obj = cls(env, **kw)
URL is encoded by that cls. Not sure what that cls() method does. Any help is appreciated here.
-Vinay
The text was updated successfully, but these errors were encountered:
Is anyone looking into this?
Sorry, something went wrong.
Anyone got chance to check this?
No branches or pull requests
I am sending a URL which is automatilly encoded when the request is hit from robotframework
http://192.168.1.5/myapi/component/persn000000000001045:(itemList)
It converts it into this when I see it using wire shark
http://192.168.1.5/myapi/component/persn000000000001045:%28itemList%29
After some troubleshooting, I found that in webob/request.py, there is a methods "blank" which contains line like this:
obj = cls(env, **kw)
URL is encoded by that cls. Not sure what that cls() method does. Any help is appreciated here.
-Vinay
The text was updated successfully, but these errors were encountered: