Hi, Can it be true that URL's are case sensative?? I have just created a sample ZClass of type Project, and an instance named FHK. FHK resides in folders Projects. Hence, the URL is http://localhost:8080/Projects/FHK/ which works as expected. But, if i change it to http://localhost:8080/Projects/fhk, i get the following error. Please tell me how to make this case-insensative. Thanks, mark _______________________ Site Error An error was encountered while publishing this resource. Debugging Notice Zope has encountered a problem publishing your object. Cannot locate object at: http://localhost:8080/Projects/fhk
URLs are *always* casesensitive - independant of Zope. - aj ----- Original Message ----- From: "Mark Lilly" <mark.lilly@benova.com> To: <zope@zope.org> Sent: Friday, January 11, 2002 18:50 Subject: [Zope] case sensative url?
Hi, Can it be true that URL's are case sensative??
I have just created a sample ZClass of type Project, and an instance named FHK. FHK resides in folders Projects. Hence, the URL is http://localhost:8080/Projects/FHK/ which works as expected.
But, if i change it to http://localhost:8080/Projects/fhk, i get the following error. Please tell me how to make this case-insensative.
Thanks, mark
_______________________ Site Error An error was encountered while publishing this resource. Debugging Notice Zope has encountered a problem publishing your object. Cannot locate object at: http://localhost:8080/Projects/fhk
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
From: "Mark Lilly" <mark.lilly@benova.com>
Can it be true that URL's are case sensative??
This is usually the case, yes. It's up to the webserver, really. I would expect IIS to be caseinsensitive since Windows filesystems generally is. But it is true that URLS are as a rule case-sensitive, and there is usually not much use in makeing it otherwise.
But, if i change it to http://localhost:8080/Projects/fhk, i get the following error. Please tell me how to make this case-insensative.
Use only lowercase in all your ID's. That way you know that you always should use lower case, and you don't need to bother about case.
participants (3)
-
Andreas Jung -
Lennart Regebro -
Mark Lilly