Moving the * URL pattern between servlets
The * is a wildcard character that is not used in the URL. * is the default servlet URL pattern that you can replace with another servlet.
Moving the * is optional and is done to change to the default and set up automatic redirection. For example, if one of your teams decides to move the * from default WebStandard to DeltaTeam, all access is automatically redirected from https://deltateam.pega.com to https://deltateam.pega.com/Prweb/deltateam by default.If a request is received that does not match any of the defined URL patterns, then the definition for * is used to determine to what servlet the request is dispatched.
If you access something after /prweb
and the servlet is not found,
you are redirected to the default servlet, where * is
configured as the URL pattern.
If the * URL pattern is not provided, then system becomes inaccessible. * is the minimum servlet requirement for a servlet to be accessible. Without *, the servlet produces a 403 error. The Servlet Management landing page provides a validation to ensure that at least one servlet is in the Enabled state with * as the URL pattern.
- Access the servlet from which you want to move the
* URL pattern:
- In the header of Dev Studio, click .
- Identify the servlet from which you want to remove the * URL pattern, click the More icon on the right side of the window, and then select Configure.
- Under URL patterns, click the delete icon beside the * URL pattern.
- Click Update.
- Add the * URL pattern to the servlet that you want
to update:
- Identify the servlet to which you want to add the * URL pattern, click the More icon on the right side of the window, and then select Configure.
- Under URL patterns, click Add.
- Enter the * URL pattern.
- Click Update.
- Restart your entire environment from My Pega Cloud.
- Adding a servlet
Add a new servlet, without editing the web.xml file, by cloning and modifying existing servlets where necessary.
- Cloning a servlet
Servlet Management is only available for Pega Cloud, and allows you to add, modify, and disable servlet configurations without editing the web.xml file. Clone a servlet to create a new servlet without having to recreate all the parameters.
- Configuring a servlet
Servlet Management is only available for Pega Cloud, and allows you to add, modify, and disable servlet configurations without editing the web.xml file. Create new servlets by cloning existing servlets and modifying where necessary.
- Disabling a servlet
Servlet Management is only available for Pega Cloud, and allows you to add, modify, and disable servlet configurations without editing the web.xml file. If there is a servlet that is not commonly used within the application and that you want to keep in the system, you can disable the servlet.
- Deleting a servlet
Servlet Management is only available for Pega Cloud, and allows you to add, modify, and disable servlet configurations without editing the web.xml file. You can delete user-defined servlets that are no longer used in the system and that you do not need to keep within the system.
Previous topic Deleting a servlet Next topic Filter management