2009-05-12 10:48:21 +00:00
|
|
|
{
|
|
|
|
This file is part of the Web Service Toolkit
|
|
|
|
Copyright (c) 2009 by Inoussa OUEDRAOGO
|
|
|
|
|
|
|
|
This file is provide under modified LGPL licence
|
|
|
|
( the files COPYING.modifiedLGPL and COPYING.LGPL).
|
|
|
|
|
2009-05-06 16:53:48 +00:00
|
|
|
|
2009-05-12 10:48:21 +00:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
}
|
|
|
|
{$INCLUDE wst_global.inc}
|
|
|
|
|
|
|
|
unit wst_consts;
|
2009-05-06 16:53:48 +00:00
|
|
|
|
|
|
|
interface
|
|
|
|
|
2009-07-09 14:10:58 +00:00
|
|
|
resourcestring
|
|
|
|
SERR_CannotMakeInternalSymbolName ='Unable to make an internal symbol Name from "%s".';
|
|
|
|
SERR_CannotResolveNamespace = 'Unable to resolve this namespace : "%s".';
|
|
|
|
SERR_DuplicateBindingName = 'Duplicated binding : "%s".';
|
|
|
|
SERR_ExpectingRemotableObjectClass = 'Expecting remotable object class but found "%s".';
|
|
|
|
SERR_HeaderNotUnderstood = 'Header "%s" not Understood.';
|
|
|
|
SERR_IllegalChar = 'Illegal character for that encoding : "%s".';
|
|
|
|
SERR_IndexOutOfBound = 'Index out of bound : %d.';
|
|
|
|
SERR_IncompleteParamTypeRegistration = 'Incomplete type registration for the type of this parameter : "%s".';
|
|
|
|
SERR_InnerScopeMustBeSimpleType = 'Inner Scope value must be a "simple type" value.';
|
2009-07-02 10:57:58 +00:00
|
|
|
SERR_InsupportedOperation = 'Insupported operation : "%s".';
|
2009-07-09 14:10:58 +00:00
|
|
|
SERR_InvalidArrayBounds = 'Invalid array bounds.';
|
2009-06-26 12:32:45 +00:00
|
|
|
SERR_InvalidArrayLength = 'Invalid array length : %d.';
|
|
|
|
SERR_InvalidCollectionLength = 'Invalid collection length : %d.';
|
2009-07-09 14:10:58 +00:00
|
|
|
SERR_InvalidDataTypeInContext = 'Invalid data type in this context : "%s".';
|
|
|
|
SERR_InvalidEncodedData = 'Invalid encoded data.';
|
2009-05-06 16:53:48 +00:00
|
|
|
SERR_InvalidHourOffetValue = '"%d" is not a valid hour offset value.';
|
|
|
|
SERR_InvalidMinuteOffetValue = '"%d" is not a valid minute offset value.';
|
2009-07-09 14:10:58 +00:00
|
|
|
SERR_InvalidEmbeddedScopeOperation = 'Invalid opération on scope, their are no embedded scope.';
|
2009-06-29 01:57:44 +00:00
|
|
|
SERR_InvalidParameter = 'Invalid parameter : "%s".';
|
2009-07-09 14:10:58 +00:00
|
|
|
SERR_InvalidParameterProc = 'Invalid parameter : "%s"; Procedure = "%s".';
|
|
|
|
SERR_InvalidParameters = 'Invalid parameters.';
|
|
|
|
SERR_InvalidPoolParametersArgs = 'Invalid pool arguments Min = %d; Max = %d .';
|
|
|
|
SERR_IsNotAFieldOf = '"%s" is not a field of "%s".';
|
|
|
|
SERR_NodeNotFoundByID = 'Node not found with this ID in the document : "%s".';
|
|
|
|
SERR_NoHandlerForThatVerb = 'No handler for that verb : "%s".';
|
2009-06-29 01:57:44 +00:00
|
|
|
SERR_NoReaderProc = 'No reader proc for that type, Prop : "(%s : %s)".';
|
2009-07-09 14:10:58 +00:00
|
|
|
SERR_NoScope = 'There is no scope.';
|
2009-06-29 01:57:44 +00:00
|
|
|
SERR_NoSerializerFoThisType = 'No serializer for this type : "%s".';
|
2009-07-09 14:10:58 +00:00
|
|
|
SERRE_ObjectCreationTimeOut = 'Unable to create the object : Timeout expired.';
|
|
|
|
SERR_OperationNotAllowedOnActivePool = 'Operation not allowed on an active pool.';
|
2009-06-29 01:57:44 +00:00
|
|
|
SERR_ParamaterNotFound = 'Parameter non found : "%s".';
|
2009-07-09 14:10:58 +00:00
|
|
|
SERR_RecordExtendedRttiNotFound = 'Record extended RTTI informations not found in type registry : "%s".';
|
|
|
|
SERR_RootObjectCannotBeNIL = 'The root object cannot be NIL.';
|
2009-06-29 01:57:44 +00:00
|
|
|
SERR_SerializerInitializationException = 'Unable to initialize the serializer of that type : "%s".';
|
2009-07-09 14:10:58 +00:00
|
|
|
SERR_ServiceNotFound = 'Service not found : "%s".';
|
|
|
|
SERR_ScopeNotFound = 'Scope not found : "%s".';
|
|
|
|
SERR_TypeNotRegistered = 'Type not registered : "%s".';
|
|
|
|
SERR_UnexpectedEndOfData = 'Unexpected end of data.';
|
|
|
|
|
2009-05-06 16:53:48 +00:00
|
|
|
implementation
|
|
|
|
|
|
|
|
end.
|
|
|
|
|