Poco SendHttpRequest PocoServer 2021-03-31

PocoServer

// PocoHttpServer.cpp : 定义控制台应用程序的入口点。
//#include "stdafx.h"
#include <Poco/Net/HTTPRequestHandler.h>
#include <Poco/Net/HTTPRequestHandlerFactory.h>
#include <Poco/Net/HTTPServerRequest.h>
#include <Poco/Net/HTTPServerResponse.h>
#include <Poco/Net/HTTPResponse.h>
#include <Poco/Net/HTTPServer.h>
#include <Poco/StreamCopier.h>
#include <Poco/Util/ServerApplication.h>using Poco::Net::HTTPRequestHandler;
using Poco::Net::HTTPServerRequest;
using Poco::Net::HTTPServerResponse;
using Poco::Net::HTTPResponse;
using Poco::Net::HTTPRequestHandlerFactory;
using namespace Poco::Net;
using Poco::Util::ServerApplication;// ANSI ==> UTF8
bool ANSI_to_UTF8(const std::string &sAnsi, std::string &sUtf8)
{if (sAnsi.empty())return true;std::wstring wsAnsi;int nLen = ::MultiByteToWideChar(CP_ACP, NULL, sAnsi.c_str(), -1, NULL, 0);wchar_t *buf1 = new wchar_t[nLen];int nWrited = ::MultiByteToWideChar(CP_ACP, NULL, sAnsi.c_str(), -1, buf1, nLen);wsAnsi = buf1;delete[] buf1;if (nWrited != nLen)return false;nLen = ::WideCharToMultiByte(CP_UTF8, NULL, wsAnsi.c_str(), -1, NULL, 0, NULL, NULL);char* buf2 = new char[nLen];nWrited = ::WideCharToMultiByte(CP_UTF8, NULL, wsAnsi.c_str(), -1, buf2, nLen, NULL, NULL);sUtf8 = buf2;delete[] buf2;return (nWrited == nLen) ? true : false;
}/ Poco的HTTP服务端 /
class MyRequestHandler : public HTTPRequestHandler
{
public:virtual void handleRequest(HTTPServerRequest &req, HTTPServerResponse &resp){std::string sUtf8;ANSI_to_UTF8("成功", sUtf8);std::istream& istr = req.stream();std::string sRequest;Poco::StreamCopier::copyToString(istr, sRequest);//获取请求内容resp.setStatus(HTTPResponse::HTTP_OK);resp.setContentType("application/x-www-form-urlencoded\r\n");ostream& out = resp.send();				//返回一个回复的流引用		out << "<h1>Hello world!</h1>" << "\r\n\r\n"<< "<p>Count: " << ++count		<< "</p>" << "\r\n\r\n"<< "<p>Host: " << req.getHost()	<< "</p>" << "\r\n\r\n"<< "<p>Method: " << req.getMethod() << "</p>" << "\r\n\r\n"<< "<p>URI: " << req.getURI() << "</p>" << "\r\n\r\n"<< "<p>ContentRequest: " << sRequest << "</p>" << "\r\n\r\n"<< sUtf8;out.flush();						//将这个信息会送到客户端	}
private:static int count;
};int MyRequestHandler::count = 0;class MyRequestHandlerFactory : public HTTPRequestHandlerFactory
{
public:virtual HTTPRequestHandler* createRequestHandler(const HTTPServerRequest &){return new MyRequestHandler;		//这个地方直接就对所有的请求授以相同的处理	}
};class MyServerApp : public ServerApplication
{
protected:int main(const vector<string> &)		//run函数里面调用这个mian()函数	{HTTPServer s(new MyRequestHandlerFactory, ServerSocket(9090), new HTTPServerParams);//创建一个具有多线程特性的服务器类,其实这个类才是这个程序的核心,它接受参数“工厂”,以及制定服务器端口 		s.start();cout << endl << "Server started" << endl;waitForTerminationRequest();  							//等待用户点击关闭按钮,此时一直运行着,阻塞在此 		cout << endl << "Shutting down..." << endl;s.stop();return Application::EXIT_OK;}
};int _tmain(int argc, _TCHAR* argv[])
{MyServerApp app;return app.run(argc, argv);			//让服务器运行起来
}

PocoClient

// PocoHttpClient.cpp : 定义控制台应用程序的入口点。
//#include "stdafx.h"
#include <Poco/Net/HTTPClientSession.h>
#include <Poco/URI.h>
#include <Poco/Net/HTTPRequest.h>
#include <Poco/Net/HTTPResponse.h>
#include <Poco/Util/PropertyFileConfiguration.h>
#include <Poco/AutoPtr.h>
using Poco::AutoPtr;
using Poco::Util::PropertyFileConfiguration;// 获取当前exe所在目录,不包括最后的"\"
CString GetExeDir();
bool IsPathExist(const CString& sPath);
BOOL SendHttpRequest();int _tmain(int argc, _TCHAR* argv[])
{CString str = GetExeDir();bool b = IsPathExist(_T("E:\\111"));`PocoServer`();system("pause");return 0;
}BOOL SendHttpRequest()
{/ Poco的HTTP客户端 //try{//std::string sInputXml("发送的内容。。。");//std::string sUrl("http://127.0.0.1:9090");AutoPtr<PropertyFileConfiguration> pfc = new PropertyFileConfiguration("Config/PocoHttpClient.properties");std::string sInputXml = pfc->getString("PocoHttpClient.ContentSended");std::string sUrl = pfc->getString("PocoHttpClient.Url");Poco::URI uri(sUrl);std::string path(uri.getPathAndQuery());path = uri.getPath();path = uri.getPathAndQuery();path = sUrl;Poco::Net::HTTPClientSession session(uri.getHost(), uri.getPort());int nTimeout = 20;Poco::Timespan pocoTimeSpan(nTimeout, 0);session.setTimeout(pocoTimeSpan);Poco::Net::HTTPRequest req(Poco::Net::HTTPRequest::HTTP_POST, path, Poco::Net::HTTPMessage::HTTP_1_1);//		Poco::Net::HTTPRequest req(Poco::Net::HTTPRequest::HTTP_POST);req.setChunkedTransferEncoding(false);req.setContentType("application/xml");//application/jsonreq.setContentLength(sInputXml.length());session.sendRequest(req) << sInputXml;Poco::Net::HTTPResponse res;std::istream &is = session.receiveResponse(res);int nHttpStatus = res.getStatus();if (Poco::Net::HTTPResponse::HTTPStatus::HTTP_OK != nHttpStatus)return FALSE;std::istreambuf_iterator<char> eos;std::string sRes(std::istreambuf_iterator<char>(is), eos);cout << sRes << endl;return TRUE;}catch (Poco::TimeoutException e){//CString strError;//strError.Format(_T("超时连接服务异常。Url:%s\r\n异常信息:%s"), strUrl, CString(CStringA(e.what())));//AfxMessageBox(strError, MB_ICONERROR);std::string s = e.what();s += " : " + e.message();}catch (Poco::Exception e){//strError.Format(_T("连接服务异常。Url:%s\r\n异常信息:%s"), strUrl, CString(CStringA(e.what())));//AfxMessageBox(strError, MB_ICONERROR);std::string s = e.what();s += " : " + e.message();}return FALSE;
}bool IsPathExist(const CString& strPath)
{return (-1 != _taccess(strPath, 0));
}// 获取当前exe所在目录,不包括最后的"\"
CString GetExeDir()
{//extern int __argc;          /* count of cmd line args *///extern char ** __argv;      /* pointer to table of cmd line args *///extern wchar_t ** __wargv;  /* pointer to table of wide cmd line args */TCHAR exeDir[_MAX_PATH] = { 0 };
#ifdef _UNICODE_tcscpy(exeDir, __wargv[0]);
#else_tcscpy(exeDir, __argv[0]);
#endif_tcsrchr(exeDir, '\\')[0] = '\0';return CString(exeDir);
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/230401.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

面试题:vue3获取dom的方式

在 Vue 3 中&#xff0c;可以通过以下几种方式来获取 DOM 元素&#xff1a; 使用 ref&#xff1a;ref 是 Vue 3 中新增的响应式引用对象。可以通过给 DOM 元素添加 ref 属性来创建一个 ref 对象&#xff0c;并使用该对象来获取 DOM 元素的引用。 <template><div ref…

算法——分治

思想&#xff1a;分而治之&#xff0c;将大问题转化为若干个相同或相似的子问题。快排的题目常见的方法是利用三指针法将数组分三块搭配随机选择基准元素的思想 颜色分类&#xff08;分治_快排&#xff09; 颜色分类 题目解析 原地对它们进行排序&#xff0c;使得相同颜色的元…

Oracle-应用会话集中在RAC集群一个节点问题

问题&#xff1a; 用户一套Oracle19c RAC集群&#xff0c;出现一个奇怪的现象&#xff0c;通过SCAN IP访问的连接会话都集中在节点一实例&#xff0c;而且用户并没有做任何的节点服务访问去控制会话的连接节点&#xff0c;比如常见的通过集群的高可用服务去控制应用访问连接集中…

Spring IOC—基于注解配置和管理Bean 万字详解(通俗易懂)

目录 一、前言 二、基于注解配置Bean 1.基本介绍 : 2.应用实例 : 3.注意事项 : 三、手动实现Spring 注解配置机制 1.需求 : 2.思路 : 3.实现 : 3.1 自定义注解类 3.2 自定义配置类 3.3 自定义容器类 3.4 在测试类中进行测试 四、自动装配 0.总述 : 1.AutoWired自动装…

LeetCode力扣每日一题(Java):69、x 的平方根

一、题目 二、解题思路 1、 我的思路 我的思路是直接循环暴力破解&#xff0c;定义计数器i&#xff0c;从1开始递增&#xff0c;直到i*i大于或等于x 于是有了如下代码 int i 1;while(true){if(i*i<x){i;}else if(i*ix){return i;}else{return i-1;}} 但提交之后超出了…

亚马逊、target、eBay、沃尔玛等平台采退、下卡,技术技巧大揭秘

今天想和大家分享一些关于做测评、采退和撸卡项目时所需的防关联和防封号环境的底层技术原理。这些内容相对比较复杂&#xff0c;相信很少有人能够完全掌握&#xff0c;因为涉及到一些比较高级的IT技术原理。 如果正在考虑开始做采退或者撸卡项目&#xff0c;或者已经在进行相…

libxls - 编译

文章目录 libxls - 编译概述笔记静态库工程测试控制台exe工程测试备注备注END libxls - 编译 概述 想处理.xls格式的excel文件. 查了一下libxls库可以干这个事. 库地址 https://github.com/libxls/libxls.git 但是这个库的makefile写的有问题, 在mingw和WSL下都编译不了. 好在…

高德地图绘制区域的地理围栏

官网示例 https://lbs.amap.com/demo/javascript-api-v2/example/overlayers/polygon-draw/ <!doctype html> <html> <head><meta charset"utf-8"><meta http-equiv"X-UA-Compatible" content"IEedge"><meta …

黑马点评06分布式锁 2Redisson

实战篇-17.分布式锁-Redisson功能介绍_哔哩哔哩_bilibili 1.还存在的问题 直接实现很麻烦&#xff0c;借鉴已有的框架。 2.Redisson用法 3.Redisson可重入原理 在获取锁的时候&#xff0c;看看申请的线程和拿锁的线程是否一致&#xff0c;然后计算该线程获取锁的次数。一个方法…

爬虫chrome浏览器抓包说明

chrome浏览器抓包说明 目标&#xff1a;掌握chrome在爬虫中的使用 1. 新建隐身窗口&#xff08;无痕窗口&#xff09; 作用&#xff1a;在打开无痕窗口的时候&#xff0c;第一次请求某个网站是没有携带cookie的&#xff0c;和代码请求一个网站一样&#xff0c;这样就能够尽可…

HashSet集合

目录 1、HashSet集合简介 2、什么情况下使用HashSet集合比使用ArrayList集合更好&#xff1f; 3、如果需要对集合进行频繁的插入和删除操作&#xff0c;应该使用什么集合&#xff1f; 4、遍历集合相关问题 5、遍历集合时的 null 元素处理问题 6、遍历集合时判断某个元素是…

JJJ:python学习笔记2

文章目录 双分支结构 p28多分支结构 p29嵌套if的使用 p30 多个条件的连接 p31Python3.11新特性-模式匹配 p32遍历循环for p33语法结构1&#xff1a;for语法结构2&#xff1a;for...else... 无限循环while p34while结构while...else...结构使用while循环模拟用户登录 p35嵌套循环…

堆与二叉树(上)

本篇主要讲的是一些概念&#xff0c;推论和堆的实现&#xff08;核心在堆的实现这一块&#xff09; 涉及到的一些结论&#xff0c;证明放到最后&#xff0c;可以选择跳过&#xff0c;知识点过多&#xff0c;当复习一用差不多&#xff0c;如果是刚学这一块的&#xff0c;建议打…

爬虫练习-获取imooc课程目录

代码&#xff1a; from bs4 import BeautifulSoup import requests headers{ User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:94.0) Gecko/20100101 Firefox/94.0, }id371 #课程id htmlrequests.get(https://coding.imooc.com/class/chapter/id.html#Anchor,head…

办公桌行业分析:预计2026年中国市场规模将增长到1183亿元

办公桌&#xff0c;是指日常生活工作和社会活动中为工作方便而配备的桌子。办公桌的主要消费人群分为两大类&#xff1a;一是企业的购买;二是政府的采购。但是政府采购所占比重还不够大&#xff0c;在某些环节还不够规范。 良好的办公桌除了应该考虑放置信息产品的空间外&#…

vue中如何刷新子组件,重新加载子组件

三种方法&#xff1a;1.使用 Props 传递数据 2.使用$refs引用子组件 3.给子组件添加key值 1. 使用 Props 传递数据&#xff1a; 在父组件中通过修改 props 的值&#xff0c;传递新的数据给子组件&#xff0c;从而触发子组件的更新。在父组件中&#xff1a; <template>&…

Pandas 中级教程——数据清理与处理

Python Pandas 中级教程&#xff1a;数据清理与处理 Pandas 是一个强大的数据分析库&#xff0c;它提供了广泛的功能来处理、清理和分析数据。在实际数据分析项目中&#xff0c;数据清理是至关重要的一步。在这篇博客中&#xff0c;我们将深入介绍 Pandas 中的一些中级数据清理…

实验三 MapReduce编程

实验目的&#xff1a; 1.掌握MapReduce的基本编程流程&#xff1b; 2.掌握MapReduce序列化的使用&#xff1b; 实验内容&#xff1a; 一、在本地创建名为MapReduceTest的Maven工程&#xff0c;在pom.xml中引入相关依赖包&#xff0c;配置log4j.properties文件&#xff0c;搭…

软信天成:产品信息管理(PIM)对零售行业有何意义?

产品信息管理&#xff08;PIM&#xff09;&#xff0c;通过快速收集、管理和共享横跨整个企业、合作伙伴和供应商的产品信息&#xff0c;整合分散在不同系统或部门的数据信息&#xff0c;创建实时、可信的产品数据源&#xff0c;及时获取整个企业详细、准确和一致的产品信息&am…

前端做表格导出

下面来介绍一下方法 在vue页面里写调用方法 //表头数据格式 column: [{ key: Photo, width: 70, height: 50, colWidth: 100, title: 图片, type: image },{ key: Name, colWidth: , title: 名称, type: text },{ key: Phone, colWidth: , title: 手机号, type: text },{key:…