An XPages "Did you know" factoid
Category xpages
Did you know ... an XPage's name in the URL is case sensitive ?
http://www.YourDomain.com/yourpath/yourdb.nsf/UserProfile.xsp
is not the same as
http://www.YourDomain.com/yourpath/yourdb.nsf/userprofile.xsp
if your XPage is named UserProfile, userprofile.xsp returns a 404 error
Update: Its not consistent. while userprofile.xsp and UserProfile.xsp might work, userprofile-userconfig.xsp and UserProfile-userconfig.xsp may not.
Did you know ... an XPage's name in the URL is case sensitive ?
http://www.YourDomain.com/yourpath/yourdb.nsf/UserProfile.xsp
is not the same as
http://www.YourDomain.com/yourpath/yourdb.nsf/userprofile.xsp
if your XPage is named UserProfile, userprofile.xsp returns a 404 error
Update: Its not consistent. while userprofile.xsp and UserProfile.xsp might work, userprofile-userconfig.xsp and UserProfile-userconfig.xsp may not.














- 
Comments
Posted by mark At 03:23:42 AM On 07/04/2009 | - Website - |
Posted by Jeremy Hodge At 11:26:33 PM On 07/03/2009 | - Website - |
"URLs in general are case-sensitive (with the exception of machine names). There may be URLs, or parts of URLs, where case doesn't matter, but identifying these may not be easy. Users should always consider that URLs are case-sensitive."
{ Link }
Posted by Giuseppe Grasso At 08:18:52 PM On 07/03/2009 | - Website - |