BBjspRequestUtil::getContextRelativePath


Description

In BBj 16.0 and higher this method returns a context-relative path for the BBjspWebRequest.

Syntax

Return Value

Method

String

getContextRelativePath(BBjspWebRequest request)

Parameters

Variable

Description

request

the Request

Return Value

the context-relative path

Remarks

None.

Example

CLASS PUBLIC MyServlet

    REM ===
    REM === You must implement this method as it is the main execution point.
    REM ===
    METHOD PUBLIC void service(BBjspServletContext context!)
        declare BBjspWebRequest request!
        declare BBjspWebResponse response!
        
        request! = context!.getRequest()
        response! = context!.getResponse()
        
        s! = response!.getOutputStream()
        s!.write("<html>")
        s!.write("<body>")
        s!.write("<h1>OK</h1>")
        s!.write(BBjspRequestUtil.getContextRelativePath(request!))
        s!.write("</body>")
        s!.write("</html>")
        
    METHODEND
    
CLASSEND

See Also