Uses of Class
php.java.bridge.http.HeaderParser

Packages that use HeaderParser
php.java.bridge.http Internal fast socket and pipe context runners for VM Bridge J2EE backends. 
php.java.script Internal PHP script engine implementation.
Applications should use the JSR 223 API instead. 
php.java.script.servlet Internal PHP script engine implementation for servlets.
Applications should use the JSR 223 API instead. 
 

Uses of HeaderParser in php.java.bridge.http
 

Subclasses of HeaderParser in php.java.bridge.http
 class SimpleHeaderParser
          A procedure class which can be used to capture the HTTP header strings.
 

Fields in php.java.bridge.http declared as HeaderParser
static HeaderParser HeaderParser.DEFAULT_HEADER_PARSER
          The default CGI header parser.
 

Methods in php.java.bridge.http with parameters of type HeaderParser
static void HeaderParser.parseBody(byte[] buf, java.io.InputStream natIn, OutputStreamFactory out, HeaderParser parser)
          Discards all header fields from a HTTP connection and write the body to the OutputStream
 

Uses of HeaderParser in php.java.script
 

Methods in php.java.script with parameters of type HeaderParser
 Continuation PhpScriptContextDecorator.createContinuation(java.io.Reader reader, java.util.Map env, java.io.OutputStream out, java.io.OutputStream err, HeaderParser headerParser, ResultProxy result, ILogger logger, boolean isCompiled)
          Create a continuation
 Continuation PhpCompiledScriptContext.createContinuation(java.io.Reader reader, java.util.Map env, java.io.OutputStream out, java.io.OutputStream err, HeaderParser headerParser, ResultProxy result, ILogger logger, boolean isCompiled)
          Create a continuation
 Continuation PhpScriptContext.createContinuation(java.io.Reader reader, java.util.Map env, java.io.OutputStream out, java.io.OutputStream err, HeaderParser headerParser, ResultProxy result, ILogger logger, boolean isCompiled)
          Create a continuation
 Continuation IPhpScriptContext.createContinuation(java.io.Reader reader, java.util.Map env, java.io.OutputStream out, java.io.OutputStream err, HeaderParser headerParser, ResultProxy result, ILogger logger, boolean isCompiled)
          Create a continuation
 void URLReader.read(java.util.Map env, java.io.OutputStream out, HeaderParser headerParser)
           
 void IScriptReader.read(java.util.Map env, java.io.OutputStream out, HeaderParser headerParser)
          Read from the URL and write the data to out.
 

Constructors in php.java.script with parameters of type HeaderParser
FastCGIProxy(java.io.Reader reader, java.util.Map env, java.io.OutputStream out, java.io.OutputStream err, HeaderParser headerParser, ResultProxy resultProxy, ILogger logger)
           
HttpProxy(java.io.Reader reader, java.util.Map env, java.io.OutputStream out, java.io.OutputStream err, HeaderParser headerParser, ResultProxy resultProxy, ILogger logger)
          Create a HTTP proxy which can be used to allocate a php script from a HTTP server
 

Uses of HeaderParser in php.java.script.servlet
 

Methods in php.java.script.servlet with parameters of type HeaderParser
 Continuation PhpHttpScriptContext.createContinuation(java.io.Reader reader, java.util.Map env, java.io.OutputStream out, java.io.OutputStream err, HeaderParser headerParser, ResultProxy result, ILogger logger, boolean isCompiled)
          Create a continuation
 

Constructors in php.java.script.servlet with parameters of type HeaderParser
HttpFastCGIProxy(java.util.Map env, java.io.OutputStream out, java.io.OutputStream err, HeaderParser headerParser, ResultProxy resultProxy, FCGIConnectionPool fcgiConnectionPool)