summaryrefslogtreecommitdiff
path: root/java
Commit message (Collapse)AuthorAgeFilesLines
* Noted the classes/README.TXT addition.eea11998-01-191-0/+6
|
* This is just a marker so WinZip creates the classes directory on NT.eea11998-01-191-0/+2
|
* Updated the version numbereea11997-12-231-1/+1
|
* This will mark the beginning of the ChangeLog era of Java ACE!eea11997-12-231-0/+10
|
* Changed a constant in LogRecord to be static.eea11997-12-231-1/+1
|
* *** empty log message ***schmidt1997-12-211-17/+0
|
* Small adjustment to codebase, so it works under $ACE_ROOT/javaeea11997-12-191-1/+1
|
* Adjusted project settingseea11997-12-191-304/+304
|
* Adjusted files in the projecteea11997-12-191-8/+8
|
* New version! Woo!eea11997-12-191-1/+1
|
* This should now allow JACE to specify its configuration file internallyeea11997-12-191-1/+0
| | | | | from the codebase. The user can define a new location with an HTML param.
* These are just the simple lines to execute to rebuild the lexereea11997-12-192-0/+6
| | | | | | and parser. People shouldn't have to do this unless they mess with the C++ svc.conf language -- and they definitely shouldn't do that.
* Changed System.err.println statements to ACE.DEBUG statements.eea11997-12-196-14/+13
| | | | Fresh versions of the parser -- no changes, though.
* Added a flush at the end of the send of a GIF.eea11997-12-192-2/+15
| | | | Fixed the configuration file (filter.conf usually) loading code.
* Made this a public classeea11997-12-191-1/+1
|
* Trying to remove dependency on www.cs.wustl.edu's filter.conf file.eea11997-12-191-31/+38
| | | | | This should make it so there is a mandatory configFile param in the HTML. If not, then no filters are loaded.
* Test2eea11997-12-191-1/+1
|
* This adds the authorization to the PUT command. Now the frames foreea11997-12-198-44/+212
| | | | | | saving and loading URLs are different. Once the password is entered, it has to make its way all the way to BlobWriter in JACE -- that's why so many files had to be changed.
* Attempt at removing the dependency on www.cs.wustl.edu!eea11997-12-191-2/+4
|
* Fixed ServiceConfigurator Test. It now includes the correct files.brunsch1997-12-191-1/+5
|
* Included more files so everything is now happy on NT.brunsch1997-12-191-0/+56
|
* More simple changes to remove warnings for NTeea11997-12-192-2/+0
|
* MSVJ++ project file for CUPbrunsch1997-12-192-0/+253
|
* Removed some things that generate warnings on NT:eea11997-12-193-5/+0
| | | | | Package includes of things in the current package Including java.lang.*
* ...removed import of java.langeea11997-12-191-1/+0
|
* Updated the permissions....againeea11997-12-191-1/+0
|
* Changed permissionseea11997-12-191-0/+1
|
* This currently just contains the encoding function for the basiceea11997-12-191-0/+85
| | | | | password encryption specified in the HTTP v1.1 RFC. (It's used by JAWS during the PUT command authentication.)
* Made some small changes so that there won't be warnings on NT wheneea11997-12-1918-26/+46
| | | | | java.lang is imported or stuff is imported from a package that it's already a member of.
* Added a VERSION file for JACEeea11997-11-131-0/+5
|
* Changed the time request string, and moved the client test into theeea11997-11-123-97/+6
| | | | tests/Logger directory.
* A few extra comments, and now the default LogMessageReceiver is in itseea11997-11-126-142/+87
| | | | own file.
* ....remove a debugging statement from remove methodeea11997-11-121-2/+0
|
* Checks in the new additions to the ServiceConfigurator, makes a feweea11997-11-1223-310/+3870
| | | | | | | | | | | | | | | | | | | | | | | | | | | | small adjustments to the sockets, and removes a deprecation problem with a String in BlobReader. Acceptor's socket acceptor was changed to protected rather than private. The new files are broken down as follows: Files that are involved in loading a C++ service config file to load Java ACE network services: Svc_Conf.y parser.java sym.java Yylex.lex ClassNameGenerator.java Files that have to do with the overall restructuring of the Service Configurator such that suspend/resume/remove and the service repository are added: AddServiceObjectNode.java ClassReader.java Extracts the full class name from a .class file SuspendNode.java ResumeNode.java RemoveNode.java ServiceRecord.java Repository wrapper, makes calls via reflection ServiceObjectRecord.java Wrapper for ServiceObjects specifically
* This is a simple client logger test (similar to C++ ACE's direct logger).eea11997-11-122-0/+141
| | | | It sends a Hello World message to the logging server.
* These form a test of the JACE Naming Service, as well as the NameProxyeea11997-11-122-0/+136
| | | | | clients can use to access it. It is compatible with the C++ remote naming service, as well.
* These files form two tests for the Service Configurator:eea11997-11-128-5/+176
| | | | | | | suspendTest loads, suspends, and resumes a TestService using the three suspendTest*.conf files. reloadTest loads and then removes/reloads a TestService
* This file has been replaced by two other tests:eea11997-11-121-56/+0
| | | | suspendTest.java and reloadTest.java
* This is the makefile for the Time Service.eea11997-07-251-0/+1
|
* Makefile for the Time Service.eea11997-07-251-0/+26
|
* This is the first version of the JACE Time Service. Clerk and Servereea11997-07-259-0/+1147
| | | | | | | | | | are drivers in case someone needs to run it without the Service Configurator. It is based on Prashant's earlier test version, but adds support for reconnecting to time servers, etc. The main difference between this and the C++ version is that apps on a machine will have to use sockets to communicate with the time clerk -- you can't use shared memory in Java.
* Makefile for the Server Logging Serviceeea11997-07-251-0/+22
|
* This is the first version of the JACE Server Logging service. Iteea11997-07-255-0/+609
| | | | | | | | | | is based heavily on the example written by Chris Cleeland, and it should be compatible with the C++ ACE version. The Client Logging service isn't necessary in Java since applications have to use sockets to communicate with the services anyway (the C++ version let apps communicate with the middle-man Client Logging Service via named pipes).
* Updated based on Mike MacFaden <mrm@cisco.com>'s suggestionbrunsch1997-07-121-37/+43
|
* Visual J++ Project Filebrunsch1997-07-125-0/+384
|
* Visual J++ Project Filesbrunsch1997-07-1217-0/+1374
|
* Visual J++ Workspace filesbrunsch1997-07-121-0/+257
|
* Visual J++ project filesbrunsch1997-07-124-0/+762
|
* The applet for benchmarking the image filter performance.sbw11997-07-121-0/+622
|
* Improved benchmarking ability and performance for these filters.sbw11997-07-1211-537/+674
|