-
Using IIOP.Net 1.9.0.sp1 to compile the following file:
module Test
{
interface ITest
{
void test() raises (TestException);
};
exception TestException {};
};
The compiler crashes with NullReferenceException.
If the exception definition is removed as below:
module Test
{
interface ITest
{
void test() raises (TestException);
};
};
The compiler crashes with...
2009-08-14 15:46:11 UTC in IIOP.NET
-
The call
limit((sin(W)-(a+1)*W*cos(W)+a*W)/W^2, W, 0);
returns the message
Maxima encountered a Lisp error:
Error in $LIMIT [or a callee]: NIL is not of type NUMBER.
Automatically continuing.
To reenable the Lisp debugger set *debugger-hook* to nil.
My installation is the following:
Maxima version: 5.18.1
Maxima build date: 20:57 4/19/2009
host type: i686-pc-mingw32...
2009-06-26 12:39:33 UTC in Maxima -- GPL CAS based on DOE-MACSYMA
-
All right, I more or less solved it.
First, it seems that the Equals method of the ClientType always returns false. If I have a method in the server that receives a reference to an object (interface) in the client, it happens the following:
public void example_subscribe_listener(ClientListenerInterface cl)
{
// The basic test
bool test = cl.Equals(cl); // returns false
//...
2009-06-24 14:49:08 UTC in IIOP.NET
-
Hi,
I'm new to Corba and Iiop.Net and I'm having trouble trying to find out if two objects are equal.
I have a C# server with that exposes two methods, subscribe and unsubscribe, through a Corba interface. The server uses a List<ClientType> container to keep track of the clients.
Subscription works, but when I try to unsubscribe an existing client I cannot find it in the list. I...
2009-06-22 13:50:30 UTC in IIOP.NET
-
I built the class example coming with SWIG 1.3.39 with Ruby 1.9.1-p0 using VC8. The file example.dll is created, but trying to load it with require 'example' fails. It seems that Ruby now expects the extension to be .so, even in Windows (see http://groups.google.com/group/comp.lang.ruby/browse_thread/thread/f7c0581629d90d68/377a99bb73843b29?lnk=gst&q=example.dll#377a99bb73843b29).
Would it be...
2009-04-01 15:29:16 UTC in SWIG
-
I've observed this problem using an old version of Tk (8.4.7). Maybe it's solved in newer versions, but I couldn't check. I happens in Linux, but not in Windows.
The problem happens when I try to type an accented character like รก (this is á in HTML, in case that you cannot see correctly). To try this with an English keyboard, there should be an accent character if you press AltGr+#...
2008-08-25 12:29:10 UTC in Tk Toolkit
-
The code below runs correctly in Windows, but not in Linux. (I'm using ActiveTcl 8.4.7 in both cases).
% file mkdir d1/d2/d3
% file delete -force d1/d2/d3/..
In Windows, it deletes d2 and leaves d1 empty. However, in Linux I get the error:
'error deleting "d1/d2/d3/..": no such file or directory
In Linux, d3 is deleted, but not d2.
In order that it works I must normalize the file...
2007-11-06 17:15:50 UTC in Tcl
-
We've gathered some more information about the bug. Maybe you find it useful.
First, we've detected this issue in two other laptop models: Dell Latitude D620 and Toshiba Tecra running Windows. Sorry but we don't have additional information about software versions, apart from the Tcl data given by Pablo.
And also I give you some more details about the workaround found by Pablo. Maybe it...
2007-09-20 09:13:31 UTC in Tk Toolkit