home *** CD-ROM | disk | FTP | other *** search
- unit WebConst;
-
- interface
-
- resourcestring
- sInvalidActionRegistration = 'Invalid Action registration';
- sOnlyOneDataModuleAllowed = 'Only one data module per application';
- sNoDataModulesRegistered = 'No data modules registered';
- sNoDispatcherComponent = 'No dispatcher component found on data module';
- sOnlyOneDispatcher = 'Only one WebDispatcher per form/data module';
- sDuplicateActionName = 'Duplicate action name';
- sTooManyActiveConnections = 'Maximum number of concurrent connections exceeded. ' +
- 'Please try again later';
- sHTTPItemName = 'Name';
- sHTTPItemURI = 'PathInfo';
- sHTTPItemEnabled = 'Enabled';
- sHTTPItemDefault = 'Default';
-
- sInternalServerError = '<html><title>Internal Server Error 500</title>'#13#10 +
- '<h1>Internal Server Error 500</h1><hr>'#13#10 +
- 'Exception: %s<br>'#13#10 +
- 'Message: %s<br></html>'#13#10;
-
- sWindowsSocketError = 'Windows socket error: %s (%d), on API ''%s''';
- sNoAddress = 'No address specified';
- sCannotCreateSocket = 'Can''t create new socket';
- sCannotListenOnOpen = 'Can''t listen on an open socket';
- sSocketAlreadyOpen = 'Socket already open';
- sCantChangeWhileActive = 'Can''t change value while socket is active';
- sMustCreateThread = 'Must create a thread when in Thread blocking mode';
- sSocketMustBeBlocking = 'Socket must be in blocking mode';
- sSocketIOError = '%s error %d, %s';
- sSocketRead = 'Read';
- sSocketWrite = 'Write';
- sAsyncSocketError = 'Asynchronous socket error %d';
-
- sResNotFound = 'Resource %s not found';
-
- sTooManyColumns = 'Too many table columns';
- sFieldNameColumn = 'Field Name';
- sFieldTypeColumn = 'Field Type';
-
- sInvalidMask = '''%s'' is an invalid mask at (%d)';
-
-
- implementation
-
- end.
-
-