cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4 LocalStrings.properties

2002-03-08 Thread craigmcc

craigmcc02/03/08 11:23:01

  Modified:coyote/src/java/org/apache/coyote/tomcat4
LocalStrings.properties
  Log:
  Add missing message strings.
  
  Revision  ChangesPath
  1.2   +28 -0 
jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4/LocalStrings.properties
  
  Index: LocalStrings.properties
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4/LocalStrings.properties,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- LocalStrings.properties   8 Mar 2002 05:18:29 -   1.1
  +++ LocalStrings.properties   8 Mar 2002 19:23:01 -   1.2
  @@ -1,3 +1,31 @@
  +coyoteConnector.allAddresses=Opening server socket on all host IP addresses
  +coyoteConnector.alreadyInitialized=Coyote connector has already been initialized
  +coyoteConnector.alreadyStarted=Coyote connector has already been started
  +coyoteConnector.anAddress=Opening server socket on host IP address {0}
  +coyoteConnector.certificateProblem=General certificate error
  +coyoteConnector.initException=Problem during connector initialization
  +coyoteConnector.IOProblem=Input/output exception opening server socket
  +coyoteConnector.keyManagementProblem=Problem in the key management layer
  +coyoteConnector.keystoreAlgorithmProblem=Keystore algorithm not supported
  +coyoteConnector.keystoreProblem=Problem accessing keystore file
  +coyoteConnector.newProcessor=Creating new Coyote processor
  +coyoteConnector.noAddress=No host IP address matching {0}, opening on all addresses
  +coyoteConnector.noProcessor=No processor available, rejecting this connection
  +coyoteConnector.notStarted=Coyote connector has not been started
  +coyoteConnector.securityException=Encountered security exception
  +coyoteConnector.serverSocketReopenFail=IOException reopening server socket
  +coyoteConnector.starting=Starting background thread
  +coyoteConnector.stopException=Exception while stopping background thread
  +coyoteConnector.stopping=Stopping background thread
  +coyoteConnector.unrecoverableKey=Internal keystore problem with the certificate
  +coyoteProcessor.parseHeaders.portNumber=Cannot parse port number from header
  +coyoteProcessor.process=Exception while processing a request
  +coyoteProcessor.processorInitializationFailed=Exception initializing a processor
  +coyoteProcessor.run=Exception while processing a socket
  +coyoteProcessor.alreadyStarted=Coyote processor has already been started
  +coyoteProcessor.notStarted=Coyote processor has not yet been started
  +coyoteProcessor.starting=Starting background thread
  +coyoteProcessor.stopping=Stopping background thread
   coyoteRequest.createCommitted=Cannot create a session after the response has been 
committed
   coyoteResponse.sendError.ise=Cannot call sendError() after the response has been 
committed
   coyoteResponse.sendRedirect.ise=Cannot call sendRedirect() after the response has 
been committed
  
  
  

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




Re: cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4 LocalStrings.properties

2002-03-08 Thread Remy Maucherat

 craigmcc02/03/08 11:23:01

   Modified:coyote/src/java/org/apache/coyote/tomcat4
 LocalStrings.properties
   Log:
   Add missing message strings.

Thanks Craig. I added that bundle because I couldn't run without it. The
contents needed some work, obviously ;-)

There are 3 major unimplemented features:
- cookie parsing
- parameter parsing (breaks the DefaultServlet welcome page redirection)
- session handling (breaks JSP pages which need a session)

I should be able to get all 3 to work soon (as they are just a matter of
porting some code from either TC 3 or TC 4).

Remy


--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]




cvs commit: jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4 LocalStrings.properties OutputBuffer.java

2002-03-07 Thread remm

remm02/03/07 21:18:29

  Modified:coyote/src/java/org/apache/coyote/tomcat4 OutputBuffer.java
  Added:   coyote/src/java/org/apache/coyote/tomcat4
LocalStrings.properties
  Log:
  - Add strings + cosmetic changes.
  
  Revision  ChangesPath
  1.3   +2 -2  
jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4/OutputBuffer.java
  
  Index: OutputBuffer.java
  ===
  RCS file: 
/home/cvs/jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4/OutputBuffer.java,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- OutputBuffer.java 7 Mar 2002 22:43:29 -   1.2
  +++ OutputBuffer.java 8 Mar 2002 05:18:29 -   1.3
  @@ -232,7 +232,7 @@
   throws IOException {
   
   flush();
  -closed =true;
  +closed = true;
   
   }
   
  @@ -293,7 +293,7 @@
   if (state == CHAR_STATE)
   cb.flushBuffer();
   state = BYTE_STATE;
  -writeBytes( b, off, len );
  +writeBytes(b, off, len);
   
   }
   
  
  
  
  1.1  
jakarta-tomcat-connectors/coyote/src/java/org/apache/coyote/tomcat4/LocalStrings.properties
  
  Index: LocalStrings.properties
  ===
  coyoteRequest.createCommitted=Cannot create a session after the response has been 
committed
  coyoteResponse.sendError.ise=Cannot call sendError() after the response has been 
committed
  coyoteResponse.sendRedirect.ise=Cannot call sendRedirect() after the response has 
been committed
  coyoteRequest.getInputStream.ise=getReader() has already been called for this request
  coyoteRequest.getReader.ise=getInputStream() has already been called for this request
  requestStream.close.closed=Cannot close the same input stream twice
  requestStream.close.skip=skip() returned zero bytes skipped
  requestStream.read.closed=This input stream has been closed
  coyoteResponse.getOutputStream.ise=getWriter() has already been called for this 
response
  coyoteResponse.getWriter.ise=getOutputStream() has already been called for this 
response
  coyoteResponse.reset.ise=Cannot reset after response has been committed
  coyoteResponse.resetBuffer.ise=Cannot reset buffer after response has been committed
  coyoteRequest.setAttribute.namenull=Name cannot be null
  coyoteResponse.setBufferSize.ise=Buffer size cannot be changed after data has been 
written
  responseStream.close.closed=This output stream has already been closed
  responseStream.flush.closed=Cannot flush a closed output stream
  responseStream.write.closed=Cannot write to a closed output stream
  responseStream.write.count=Cannot write more bytes than content length to this 
output stream
  
  
  

--
To unsubscribe, e-mail:   mailto:[EMAIL PROTECTED]
For additional commands, e-mail: mailto:[EMAIL PROTECTED]