%20 causing error in R6 Web Application

I have a 4.6 web application that I am migrating to R6 and am running into a URL issue. When I am trying to create a document through the browser I am receiving the following error:

HTTP Web Server: Couldn’t find design note - Project

Here is the URL:

http://server/folder/database.nsf/Project%20Office%20Request?OpenForm

The form name alias is ‘Project Office Request’. If I change the name of the form to not include any spaces (i.e. POR) it works fine. Is something else I can do to allow the URL to contain %20 for the spaces and not have to change the form name (which would then require me to run an agent on the current documents)?

Thanks!

Subject: %20 causing error in R6 Web Application

Try using a “+” symbol instead of the space character.

Subject: RE: %20 causing error in R6 Web Application

Thanks for the suggestion! I was using the javascript escape() function to add the %20 to the URL and now am using the replace() function to replace all instances of a space with the + symbol. It seems to be working now.

Again, I appreciate the assistance!

Dave

Subject: different form

Why not use a form called POR to create a new document then when it is saved change the form name to the one with spaces?

L.