ZeroC—ICE中间件初步Demo

本文介绍了如何使用ZeroC的ICE中间件进行开发,包括环境配置(VS2012,IceVisualStudioAddin-3.5.0.1),Slice定义来创建打印服务接口,以及通过命令生成实现文件。接着详细展示了Server.cpp和Client.cpp的代码实现,演示了ICE的基础用法。
摘要由CSDN通过智能技术生成

如今官方的版本已经到了3.5

我的编译环境是VS2012,并且已经安装好了IceVisualStudioAddin-3.5.0.1

注:这里我直接用的官网下载的demo,自己写的demo挂掉了,不知道为什么

首先是编写Slice定义,编写Slice就是要包含应用的接口(只是接口,实现在外部),这里就按照手册写个打印的服务。

Printer.ice:

// **********************************************************************
//
// Copyright (c) 2003-2013 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************

#pragma once

module Demo {
    interface Printer {
        void printString(string s);
    };
};

 

 

之后使用如下命令生成 .cpp和 .h文件

slice2cpp Printer.ice

 

接下来就是编写Server和Client端 

Server.cpp:

 


                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值