Ice is a distributed computing platform, backed by ZeroC.
0
votes
0answers
10 views
Can Asterisk 11 act as ICE server?
I have recently installed Asterisk 11.4 on my VM. I wanted to know if Asterisk 11 can act as a ICE server ? In Asterisk 11's wiki page , there is a mention of ICE but those configurations are for ...
1
vote
0answers
12 views
zeroc Ice serialize Sequence of non-primitives
ZeroC Ice serialization seems pretty easy for sequences of primitives or buildin types:
out = Ice::createOutputStream(communicator);
vector<Ice::Byte> data = ...;
out->write(&v[0], ...
0
votes
1answer
38 views
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, ...
1
vote
1answer
54 views
translating from corba to slice
I'm trying to translate corba .idl file into ZeroC ICE .ice file.
They are very similar, although I have problem with lines:
interface Item {
readonly attribute string name;
void ...
1
vote
1answer
53 views
File Transfer Using Pjsip
I want to develop a program in c using pjsip for peer to peer file transfer. As pjsip uses ice and in ICE UDP is used, so do I need to handle the packet delivery assurance.
And as I would be ...
2
votes
2answers
128 views
What is the need for the SIP RE-INVITE with regards to ICE?
I understand many of the fine details of NAT hole punching, ICE, and SIP VOIP calls. I've answered quite a few questions on SO on these topics. Now I have a question.
I am trying to understand the ...
0
votes
1answer
82 views
How to solve the upCast error in Zero C Ice compilation? - Gcc - 4.7 compile with clang
I have to build Murmur (server of the Mumble VOIP client). Murmur and Mumble use ZeroC Ice 3.4 in its framework. I tried making Murmur and got stuck in a compilation error.
The error is as follows:
...
0
votes
1answer
214 views
selectOneMenu and textEntry in IceFaces
I have problem with IceFaces, i try change ace:textEntry depends on item selected on ice:selectOneMenu.
Also i don't need to go new page, i want it to be AJAX and reflesh everytime i change it.
I try ...
0
votes
1answer
65 views
Obtaining the id and value of a label in Ice
I have a ice:selectOneMenu component and need to obtain the id and value that was selected from the page:
<ice:selectOneMenu partialSubmit="true"
value="#{bean.selectedType}" ...
0
votes
0answers
14 views
How to reload the ice service with icebox?
The zeroc Ice version: 3.4.2.
After updated the ice service lib, I use iceboxadmin to restart the service.
But I find that the service’s implementation is not reloaded.
Is there any method to ...
0
votes
0answers
23 views
can't find /usr/lib64/nptl when building ice 3.3 in RedHatEnterpriseAS 4
I am building yahoo lda which using ic3 3.3.1 in RedHatEnterpriseAS 4. But it says /usr/lib64/nptl directory can't be found.
make[2]: Entering directory
...
1
vote
1answer
70 views
when will there be ICE support in firefox
Does anyone have any idea as to how much time it will take or in which version of firefox , will there be full support for ICE similar to chrome ?
Also i would love to know about opera, regarding its ...
2
votes
2answers
444 views
ZeroMQ Vs. Ice Vs. LibUV
I want to write a server (in C++) that listens on certain port and accepts maximum possible socket connections. Those connections will stay connected for long time (may be hours or even days together)
...
-1
votes
1answer
101 views
Open source platform for communication and data sharing across different applications and devices [closed]
I'm working on a ubiquitous computing research project which aims to provide cross-device and cross-application functionality. Applications in as many programming languages as possible should be ...
1
vote
1answer
118 views
Underline will not save using TinyMCE and Ice NYTimes plugin
I am using the ice plugin for TinyMCE by the NY Times. It is a great track changes plugin. The problem is that it seems to interfere with the regular underline behavior of TinyMCE. I can underline ...
1
vote
0answers
42 views
unresolved external symbol error when use ICE in Visual Studio
I used ICE(www.zeroc.com/ice.html) in visual studio 2010, had already included the "include" and "lib" directories, however failed to build the project.
errors like these:
"error LNK2019: unresolved ...
0
votes
1answer
151 views
How does webRTC implement synchronization of the their audio and video streams from remote?
webRTC is implemented PeerConnection as per https://apprtc.appspot.com/
How does webRTC implement synchronization of the their audio and video streams from remote?
2
votes
1answer
83 views
Android ICS HTTP POST
I know this question has been asked many times. I have searched the forum as well, but was unable to find the answer I am looking for.
the code works on many android version, but doesnt work on ...
0
votes
1answer
48 views
Get operations list from interface ID in ZeroC Ice
Dynamic Ice manual section doesn't explain how to obtain a list of operations (their names, argument and result types) implemented by an object, which seems to be pretty much necessary to "create ...
0
votes
0answers
209 views
how ICE (Interactive Connectivity Establishment) works?
I am reading documents regarding ICE and feel puzzled in one place.
Step 1. Caller gathers transport candidates (i.e., host, STUN and TURN).
Step 2. Caller sends a SIP INVITE to callee.
The detail ...
3
votes
3answers
2k views
ZeroC ICE vs 0MQ/ZeroMQ vs Crossroads IO vs Open Source DDS
How does ZeroC ICE compare to 0MQ? I know that 0MQ/Crossroads and DDS are very similar, but cant seem to figure out where ICE comes in.
I need to quickly implement a system that offloads real-time ...
1
vote
0answers
70 views
ZeroC Ice reference to class
class RedirectInfo{
["java:getset"]string originalRetUrl;
["java:getset"]string proposalRetUrl;
["java:getset"]string comment;
};
class ResultTO extends ::http::ResponseTO {
...
0
votes
1answer
98 views
thread stop unexpectly [closed]
I'm runing a service written in C++, a thread start from an ICE server service to handle a request, but the thread just stop somewhere and I just don't know why , most of the time it's all right. I ...
0
votes
2answers
462 views
HTTP Server behind NATs
I'm trying to make an (apache) server behind multi-layered NAT to be accessible from Internet.
Restrictions:
Avoid relay. There is a public server (we call him the OldMan) for login / stun, but its ...
2
votes
1answer
489 views
Are there any good tutorials for ice4j?
I have just started using ice4j as an ICE client. I am experimenting with it, and I want to create a simple chat application using it. The problem is, I can't seem to find any good tutorials on how to ...
0
votes
0answers
74 views
python2.7 and Ice 3.3.1 , don' t work [closed]
I am using Python2.7 and Ice-3.3.1.
I wrote a hello world example according to the Ice Mauel, but I get this error :
PyObject* IcePy_defineException(PyObject*, PyObject*): Assertion ...
1
vote
0answers
84 views
IcedJava: socket with null address in provided JUnit tests
I am trying to use IcedJava, and started by running the provided JUnit tests.
The ones in the subpackages package.attribute and stun seem to run perfectly, but IcePeerTest, StreamingTest and ...
0
votes
1answer
92 views
IceSSL NullPointerException (java)
I'm developing an application using ICE middleware.
I have problem with IceSSL. After configuring both client and server like that:
Ice.Plugin.IceSSL=IceSSL.PluginFactory
IceSSL.DefaultDir=.
...
0
votes
0answers
282 views
Technology for database access system
I am currently designing system which should allow access to database. Assumptions are as follows:
Database should has access layer. The access layer should provide objects that represents database ...
0
votes
1answer
583 views
icefaces 3 combine ice and ace component on the same page , problems with the style
I am using ace:daaTable and other ice component on the same xhtml page .
when I click oמ ice:commandButton the page style is changing.
I tried to define "rime" style on the web.xml but it doesn't ...
0
votes
1answer
95 views
How to use Reject file in infobright with version 4.0.6 GA
In the release notes of version 4.0.6 GA, we can found that the first new feature is "Infobright Loader now supports a Reject file"
But I cannot find anything more about this, just like how to use ...
0
votes
1answer
1k views
Use adb forward instead of redir
I have a client and a server app on Android (that uses ZeroC - Ice platform for communication). Server listens on TCP port 10000 and client uses TCP port 5501 (arbitrary port numbers I have chosen).
...
1
vote
0answers
96 views
How to use Proxy when using ICE to write a multi-thread client app?
How will ICE do when one proxy is shared by multi-thread? Will the requests be queued on the same connection which is behind the proxy? Though a proxy can bind to different connections, at a time a ...
2
votes
1answer
429 views
Android Ice Cream Sandwich onCreateOptionsMenu/onPreparedOptionsMenu
Ready for a crazy one (android par for the course).
Only with Ice Cream Sandwich, somewhere in onPreparedOptionsMenu (or onCreateOptionsMenu) getting this nasty crash below.
My code? Simple. I've ...
0
votes
1answer
257 views
Connection count in ICE
Now I am trying to use ICE in a java project. I wonder whether I should config the connection count for both server and client. If I should, how can I config the count?
2
votes
1answer
374 views
C++ Exception not caught (Qt Project)
My problem is the following:
There is a shared library called Interface.so which is based on ICE (Internet Communication Engine) and something like a wrapper for frequently recurring tasks. One of ...
2
votes
1answer
157 views
Why do I get Ice::MemoryLimitException, even with Ice.MessageSizeMax=2000000
Hi I have written a C# client/server application using the Zeroc Ice communication libary (v3.4.2).
I am transferring a sequence of objects from the server which are then displaying them in the ...
2
votes
1answer
274 views
ZeroC Ice demo failing
Note: I tried to post on their forum but was apparently not allowed so I went here.
I'm trying to get ZeroC Ice demos to work but I'm running into a problem.
I get this while trying both the C# and ...
0
votes
1answer
94 views
Specify Log file when setting up ICE communicator
When initializing an ICE communicator, is it possibly to specify a different log file than what is named in the config file? I want to change where Ice.StdOut and Ice.StdErr log too programatically.
0
votes
0answers
57 views
I want to create a Mac Leopard app that will monitor the IceClean 3.1.2 program [closed]
I want to create a Mac Leopard app that will monitor the IceClean 3.1.2 program, display a more descriptive status of what the IceClean program is doing, and, importantly, "gracefully" shutdown the ...
4
votes
1answer
827 views
JSTUN vs PJNATH
I'm going to be writing my own STUN implementation in JavaScript (server-side with NodeJS), and I'm looking for a library to base my code on.
I have found both JSTUN and PJNATH, and both seem to be ...
4
votes
3answers
1k views
ICE, STUN, TURN library for iOS iPhone
I need to establish a P2P UDP and TCP Connection between two Users. Both of them are behind a NAT. A little research leads me to STUN, TURN and ICE.
Is there any open source iOS (library) which ...
0
votes
2answers
478 views
Using ICE from Zeroc, how do I configure Icebox in .NET to host two separate services?
Using ICE I can start a single server using the following command:
iceboxnet.exe --Ice.Config=config.icebox
(download the ICE v3.4.1 demo source and look at directory ...
1
vote
2answers
179 views
Is there a way in WiX to supress ICE on a case by case basis
Is there a way to do this. I don't want to shut off all of them from a certain ICE, because some may be valid and need fixing. But there are times I would like to say. OK, I can live with that ICE, ...
0
votes
2answers
588 views
ICE PDF | How to deploy and use with print option
Hi all
I am using icepdf - opensource java application for pdf viewer in my web.
ICEPDF works fine for me(i can view pdf using this0 but now i want to add print option to this.
Is this possible. Is ...
1
vote
2answers
775 views
Ice Chat Application
I'm ICE starter. At http://zeroc.com there is good tutorial on how to create chat. I decided to use the tutorial as base. And first thing I tried to do was writing ChatRoom class in c# instead of ...
0
votes
4answers
633 views
MSVC gives up on template heavy code with “fatal error C1060: compiler is out of heap space”
I am trying to compile some relatively template heavy code with MSVC (2010), and it eventually quits with fatal error C1060: compiler is out of heap space.
The whole thing is just one translation ...
1
vote
0answers
470 views
Any STUN/TURN/ICE client library in PHP?
I am trying to establish P2P between two PHP daemon deployed on machines in different network (both behind NAT). I searched around for NAT traversal using PHP on Google and seems like their is no ...
2
votes
2answers
407 views
ZeroC Ice “checked casts” in Scala
ZeroC Ice for Java translates every Slice interface Simple into (among other things) a proxy interface SimplePrx and a proxy SimplePrxHelper. If I have an ObjectPrx (the base interface for all ...
3
votes
1answer
771 views
Using ZeroC Middleware
I'm currently looking at various middleware solutions that will allow me to create applications in a variety of languages which are able to communicate amongst each other.
The ZeroC product suite ...



