Deprecated API


Contents
Deprecated Methods
php.java.servlet.HttpContext.getRealPathInternal(String, ServletContext)
          Use ServletUtil.getRealPath(ServletContext, String) 
php.java.bridge.http.Context.getRedirectString()
            
php.java.bridge.http.IContext.getRedirectString()
          Use IContext.getRedirectURL(String) 
php.java.script.PhpScriptContextDecorator.getRedirectString()
            
php.java.script.PhpScriptContext.getRedirectString()
            
php.java.script.servlet.PhpHttpScriptContext.getRedirectString()
            
php.java.servlet.HttpContext.getRedirectString()
            
php.java.bridge.http.Context.getRedirectString(String)
            
php.java.bridge.http.IContext.getRedirectString(String)
          Use IContext.getRedirectURL(String) 
php.java.script.PhpScriptContextDecorator.getRedirectString(String)
            
php.java.script.PhpScriptContext.getRedirectString(String)
            
php.java.script.servlet.PhpHttpScriptContext.getRedirectString(String)
            
php.java.servlet.HttpContext.getRedirectString(String)
            
php.java.bridge.JavaBridge.handleRequests(InputStream, OutputStream, ILogger)
          Example:
protected void doPut (HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
  IContextFactory ctx = new RemoteHttpServletContextFactory(this, getServletContext(), req, req, resr);
  res.setHeader("X_JAVABRIDGE_CONTEXT", ctx.getId());
  res.setHeader("Pragma", "no-cache");
  res.setHeader("Cache-Control", "no-cache");
  try { ctx.getBridge().handleRequests(req.getInputStream(), res.getOutputStream(), myLogge); } finally { ctx.destroy(); }
}