⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xml-rpc-weblogs.cpp

📁 linux下简单对象应用协议的开发库
💻 CPP
字号:
/*XML-RPC weblogUpdates.ping example in C++See http://xmlrpc.scripting.com/weblogsCom for more details.Requires xml-rpc.h and xml-rpc.cppCompile:soapcpp2 xml-rpc.hcc xml-rpc-weblogs.cpp xml-rpc.cpp xml-rpc-io.cpp stdsoap2.cpp soapC.cpp--------------------------------------------------------------------------------gSOAP XML Web services toolsCopyright (C) 2001-2004, Robert van Engelen, Genivia, Inc. All Rights Reserved.This software is released under one of the following two licenses:GPL or Genivia's license for commercial use.--------------------------------------------------------------------------------GPL license.This program is free software; you can redistribute it and/or modify it underthe terms of the GNU General Public License as published by the Free SoftwareFoundation; either version 2 of the License, or (at your option) any laterversion.This program is distributed in the hope that it will be useful, but WITHOUT ANYWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR APARTICULAR PURPOSE. See the GNU General Public License for more details.You should have received a copy of the GNU General Public License along withthis program; if not, write to the Free Software Foundation, Inc., 59 TemplePlace, Suite 330, Boston, MA 02111-1307 USAAuthor contact information:engelen@genivia.com / engelen@acm.org--------------------------------------------------------------------------------A commercial use license is available from Genivia, Inc., contact@genivia.com--------------------------------------------------------------------------------*/#include "soapH.h"#include "xml-rpc-io.h"using namespace std;#define ENDPOINT "http://rpc.weblogs.com/RPC2"int main(){ soap *ctx = soap_new();  // define the weblogsUpdates.ping method  methodCall ping(ctx, ENDPOINT, "weblogsUpdates.ping");  // define and set the two parameters of the method  params input(ctx);  input[0] = "Scripting News";  input[1] = "http://www.scripting.com/";  // make the call  params output = ping(input);  // error?  if (ping.error())    soap_print_fault(ctx, stderr);  else if (output.empty())    cout << ping.fault() << endl;  else  { if (output[0].is_struct())    { if (output[0]["flerror"].is_false())        cout << "Success: ";      else        cout << "Failure: ";      cout << output[0]["message"] << endl;    }    else      cout << "Message format error:" << endl << output[0] << endl;  }  soap_end(ctx);  soap_done(ctx);  free(ctx);  return 0;}/* Don't need a namespace table. We put an empty one here to avoid link errors */struct Namespace namespaces[] = { {NULL, NULL} };

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -