Class HTMLGateway

java.lang.Object
com.saperion.rs.RestService
com.saperion.rs.HTMLGateway

@Path("/htmlgateway") @Singleton public class HTMLGateway extends RestService
This JAX-RS resource represents the HTML gateway used by the Notes Bridge and Oracle Financials. URL: /htmlgateway
Author:
sts
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final com.saperion.common.logging.Logger
    The logger used by this class.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    jakarta.ws.rs.core.Response
    processFile(jakarta.ws.rs.core.UriInfo info, jakarta.servlet.http.HttpServletRequest request)
    Processes calls to the URL /htmlgateway.
    jakarta.ws.rs.core.Response
    processSaIIS(jakarta.ws.rs.core.UriInfo info, jakarta.servlet.http.HttpServletRequest request)
    Processes calls to the URL /htmlgateway/saiis.dll.
    jakarta.ws.rs.core.Response
    processSaIISBig(jakarta.ws.rs.core.UriInfo info, jakarta.servlet.http.HttpServletRequest request)
    Processes calls to the URL /htmlgateway/Saiis.dll.

    Methods inherited from class com.saperion.rs.RestService

    checkConnection, getConnection

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • LOGGER

      public static final com.saperion.common.logging.Logger LOGGER
      The logger used by this class.
  • Constructor Details

    • HTMLGateway

      public HTMLGateway()
  • Method Details

    • processSaIIS

      @GET @Path("saiis.dll") public jakarta.ws.rs.core.Response processSaIIS(@Context jakarta.ws.rs.core.UriInfo info, @Context jakarta.servlet.http.HttpServletRequest request) throws Exception
      Processes calls to the URL /htmlgateway/saiis.dll.
      Parameters:
      info - injected UriInfo
      request - injected HttpServletRequest
      Returns:
      processing dependent Response.
      Throws:
      Exception - if an error occurs.
    • processSaIISBig

      @GET @Path("Saiis.dll") public jakarta.ws.rs.core.Response processSaIISBig(@Context jakarta.ws.rs.core.UriInfo info, @Context jakarta.servlet.http.HttpServletRequest request) throws Exception
      Processes calls to the URL /htmlgateway/Saiis.dll.
      Parameters:
      info - injected UriInfo
      request - injected HttpServletRequest
      Returns:
      processing dependent Response.
      Throws:
      Exception - if an error occurs.
    • processFile

      @GET public jakarta.ws.rs.core.Response processFile(@Context jakarta.ws.rs.core.UriInfo info, @Context jakarta.servlet.http.HttpServletRequest request) throws Exception
      Processes calls to the URL /htmlgateway.
      Parameters:
      info - injected UriInfo
      request - injected HttpServletRequest
      Returns:
      processing dependent Response.
      Throws:
      Exception - if an error occurs.