- /
-
- Docs /
- GlideServlet
GlideServlet
A list of all the field attributes that could be found here on the docs.
Last modified 2025-07-10
Jace Benson
GlideServlet aka Processors
GlideScriptedProcessor
| Property/Method | Description |
|---|---|
| redirect | Redirects to the specified URL |
| writeOutput | Writes the contents of the given string to the response |
| writeJSON | Writes a JSON object to the current URL. Note: Works only in scoped apps |
GlideServletRequest
| Property/Method | Description |
|---|---|
| getHeaders | Returns an array of headers as a string |
| getHeaderNames | Returns an array of header names as a string |
| getQueryString | Returns the query string from the request |
| getContentType | Returns the content type |
| getParameterNames | Returns an array of parameter names as a string |
| getHeader | Returns the header |
| getParameter | Returns an object |
GlideServletResponse
| Property/Method | Description |
|---|---|
| setContentType | Sets the MIME type of the response |
| sendRedirect | Sends a temporary redirect to the client |
| setStatus | Sets the status code for the response |
| setHeader | Sets a response header to the specified value |