WeblogsNotificatinProxy.cs :  » Bloggers » SubText » Subtext » Framework » Tracking » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Bloggers » SubText 
SubText » Subtext » Framework » Tracking » WeblogsNotificatinProxy.cs
#region Disclaimer/Info

///////////////////////////////////////////////////////////////////////////////////////////////////
// Subtext WebLog
// 
// Subtext is an open source weblog system that is a fork of the .TEXT
// weblog system.
//
// For updated news and information please visit http://subtextproject.com/
// Subtext is hosted at Google Code at http://code.google.com/p/subtext/
// The development mailing list is at subtext@googlegroups.com 
//
// This project is licensed under the BSD license.  See the License.txt file for more information.
///////////////////////////////////////////////////////////////////////////////////////////////////

#endregion

#region Notes

///////////////////////////////////////////////////////////////////////////////////////////////////
// The code in this file is freely distributable.
// 
// ASPNetWeblog isnot responsible for, shall have no liability for 
// and disclaims all warranties whatsoever, expressed or implied, related to this code,
// including without limitation any warranties related to performance, security, stability,
// or non-infringement of title of the control.
// 
// If you have any questions, comments or concerns, please contact
// Scott Watermasysk, Scott@TripleASP.Net.
// 
// For more information on this code, updates, and other tools to integrate blogging 
// into your existing applications, please visit, http://aspnetweblog.com
// 
///////////////////////////////////////////////////////////////////////////////////////////////////

#endregion

using System;
using CookComputing.XmlRpc;
using Subtext.Framework.Logging;

namespace Subtext.Framework.Tracking{
    /// <summary>
    /// Summary description for WeblogsNotificatinProxy.
    /// </summary>
    [XmlRpcUrl("http://rpc.weblogs.com/RPC2")]
    public class WeblogsNotificatinProxy : XmlRpcClientProtocol
    {
        static readonly Log Log = new Log();

        private string _errorMessage = "No Error";

        public string ErrorMessage
        {
            get { return _errorMessage; }
        }

        public bool Ping(string name, string url)
        {
            bool result = false;
            try
            {
                XmlRpcStruct rpcstruct = Notifiy(name, url);
                if(rpcstruct.ContainsKey("flerror"))
                {
                    //Weblogs.com return false if there is no error
                    //I want to return true, indicating a successful notification
                    result = !(bool)rpcstruct["flerror"];
                    if(!result)
                    {
                        if(rpcstruct.ContainsKey("message"))
                        {
                            _errorMessage = (string)rpcstruct["message"];
                        }
                        else
                        {
                            _errorMessage = "Unknown Error";
                        }
                    }
                }
            }
            catch(Exception ex)
            {
                Log.Warn("Error while Ping: " + ex.Message);
                _errorMessage = "Error: " + ex.Message;
            }
            return result;
        }

        [XmlRpcMethod("weblogUpdates.ping")]
        public XmlRpcStruct Notifiy(string name, string url)
        {
            //TODO: IS this really supposed to be misspelled?
            return (XmlRpcStruct)Invoke("Notifiy", new object[] {name, url});
        }
    }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.