From f95b6081cba084d1b067acea99c0effa2b3bf42c Mon Sep 17 00:00:00 2001
From: MW
Date: Thu, 24 May 2007 12:35:32 +0000
Subject: Renamed the new Directories. (removed the "-Source" from the end of
them)
---
Common/XmlRpcCS/XmlRpcErrorCodes.cs | 51 +++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
create mode 100644 Common/XmlRpcCS/XmlRpcErrorCodes.cs
(limited to 'Common/XmlRpcCS/XmlRpcErrorCodes.cs')
diff --git a/Common/XmlRpcCS/XmlRpcErrorCodes.cs b/Common/XmlRpcCS/XmlRpcErrorCodes.cs
new file mode 100644
index 0000000..6dec57d
--- /dev/null
+++ b/Common/XmlRpcCS/XmlRpcErrorCodes.cs
@@ -0,0 +1,51 @@
+namespace Nwc.XmlRpc
+{
+ using System;
+
+ /// Standard XML-RPC error codes.
+ public class XmlRpcErrorCodes
+ {
+ ///
+ public const int PARSE_ERROR_MALFORMED = -32700;
+ ///
+ public const String PARSE_ERROR_MALFORMED_MSG = "Parse Error, not well formed";
+
+ ///
+ public const int PARSE_ERROR_ENCODING = -32701;
+ ///
+ public const String PARSE_ERROR_ENCODING_MSG = "Parse Error, unsupported encoding";
+
+ //
+ // -32702 ---> parse error. invalid character for encoding
+ // -32600 ---> server error. invalid xml-rpc. not conforming to spec.
+ //
+
+ ///
+ public const int SERVER_ERROR_METHOD = -32601;
+ ///
+ public const String SERVER_ERROR_METHOD_MSG = "Server Error, requested method not found";
+
+ ///
+ public const int SERVER_ERROR_PARAMS = -32602;
+ ///
+ public const String SERVER_ERROR_PARAMS_MSG = "Server Error, invalid method parameters";
+
+ //
+ // -32603 ---> server error. internal xml-rpc error
+ //
+
+ ///
+ public const int APPLICATION_ERROR = -32500;
+ ///
+ public const String APPLICATION_ERROR_MSG = "Application Error";
+
+ //
+ // -32400 ---> system error
+ //
+
+ ///
+ public const int TRANSPORT_ERROR = -32300;
+ ///
+ public const String TRANSPORT_ERROR_MSG = "Transport Layer Error";
+ }
+}
--
cgit v1.1