Questions tagged [ice]

Ice is a distributed computing platform, backed by ZeroC.

According to ZeroC, the developers of Ice (Internet Communications Engine);

(Ice) is a modern distributed computing platform with support for C++, .NET, Java, Python, Objective-C, Ruby, PHP, and ActionScript. Ice is used in mission-critical projects by companies all over the world.

Ice is cross-platform, supports multiple language bindings and is open-sourced under the GPL.

161 questions
0
votes
1 answer

ICE P2P with Qt

I would like to make a P2P network of Qt applications. Is there a library/working example for the Qt framework that allows me to make a P2P connection using the ICE methods?
user2449761
  • 1,169
  • 13
  • 25
0
votes
1 answer

Error: Ice.ConnectionRefusedException error=0. When I ran as Android application

I have written a Android application in ICE. But when I ran the application, the "LogCat" print the message "Ice.ConnectionRefusedException error=0", I searched a long time, but have no answer. Please, help me! thank you very much. This is two code…
leon wu
  • 315
  • 3
  • 10
0
votes
1 answer

ICE - How to cast implementation to proxy?

I use ICE in my code. And I want to run function that needs GameObserverPrx as parameter. I don't want to pass GameObserver by value and I use GameObserver* in slice interface to pass proxy. What function should I use to cast GameObserver to…
0
votes
1 answer

Script to add a channel on murmur with ice

I installed the ice library for python on my Centos 7 server and I would like to develop a script for dynamically creating murmur channel with a given name. Is there some documentation for Ice somewhere, or a ready made script to do what I need?
Fabrizio Bartolomucci
  • 4,948
  • 8
  • 43
  • 75
0
votes
1 answer

Why do Android API 11,12,13,14 not shown in usage statistic and on Android SDK Manager?

This might sound a dumb question, but I really wonder and don't know the answer. I googled, but couldn't find anything worth. There is usage statistics of Google Play Store: http://developer.android.com/about/dashboards/index.html Does Google still…
user3827000
0
votes
2 answers

c++ clr with ZeroC Ice 3.5.1

I have a need to compile an existing message library generated using ZeroC's ICE with c++ clr. I've been at this for a while and I'm having no luck. I have a very simple .ice message file defined. Upon generating the cpp and h files for this, I try…
sbrett
  • 606
  • 4
  • 20
0
votes
1 answer

Error with cast in ZeroC ICE

I generate the ZeroC classes through my ice file. On it, there're two classes: the "Device" and DeviceServer class, which is just an array of the first one. That array is formed by DevicePrx but the trouble happens when I want to cast the first…
Daniel 976034
  • 189
  • 1
  • 1
  • 18
0
votes
0 answers

pc.createanswer fails to execute

// Set getUserMedia constraints var constraints = {video: true, audio: true}; // From this point on, execution proceeds based on asynchronous events... // getUserMedia() handlers... var…
abcd
  • 95
  • 2
  • 8
0
votes
1 answer

Nested dictionary syntax ICE C++

I have got a newbie problem with ZeroC ICE dictionary syntax. Here is what I tried and nothing seems to work. /*What I want to make >*/ dictionary> FlightSchedule; dictionary
Kris
  • 95
  • 1
  • 7
0
votes
1 answer

c++, Ice. Virtual functions are pure within etc

I just wanted to modify the example from zeroc a little ( the one with printer). So here's how it goes. Here is the little interface in Pritner.ice file: #pragma once module Demo { interface Printer { void printString(string s); …
eroj
  • 19
  • 1
  • 6
0
votes
1 answer

Which p2p Library does Vuze use?

Which Libary does Vuze use for its p2p connection? Like JXTA, STUNT, ICE4J and so on. Or did they develop a p2p nat traversal libary by themself? If yes, can I find this p2p connection libary somewhere?
Flex Texmex
  • 1,074
  • 2
  • 11
  • 23
0
votes
1 answer

Implement Generic Functions For Interface

I have something similar to the following structure in my project. class ProgrammersCacluator { public: virtual int add(int a, int b); virtual int rshift(int a, int b); } class MathematiciansCalculator { public: virtual int add(int…
Dan Grahn
  • 9,044
  • 4
  • 37
  • 74
0
votes
3 answers

Conversion from string to Ice::ByteSeq

I gotta question about Ice in C++. One of my methods requires that I pass in a Ice::ByteSeq. I would like to build this ByteSeq from a string. How is this conversion possible? I tried the options below. Ice::ByteSeq("bytes") // Invalid…
Dan Grahn
  • 9,044
  • 4
  • 37
  • 74
0
votes
1 answer

Netflix ICE and librarian-chef - The package archive has too many children

I'm trying to deploy opscode "Netflix ICE" cookbook. ENV rvm ruby 2.0.0 librarian-chef 0.0.1 Getting the following error during running librarian-chef install: *[Librarian] Unpacking…
Seva Feldman
  • 143
  • 1
  • 1
  • 5
0
votes
1 answer

Ice in Python - unresolved import IcePy in generated interfaces

I'm trying to use Ice (version 3.4.2) in Python (2.7.3). When I generate content using slice2py I get a class with the following import statement import Ice, IcePy, __builtin__ The problem is, IcePy cannot be resolved. I checked the package…
Wojtek
  • 2,514
  • 5
  • 26
  • 31
1 2 3
10
11