-
Hi,
I've a question regarding the IDLToCLSCompiler:
If I want to process multiple .idl files I can provide a list of them as the last parameter in the IDLToCLSCompiler command line.
If I have my .idl files flat (without using subdirectories) in a directory I can use the wildcard *.idl.
My problem is that it's no longer possible to list all .idl files separately, because the command...
2009-09-30 17:25:16 UTC by bengler
-
Registering multiple IIOP channels as servers (ie with property PORT_KEY defined) can cause the wrong channel data to be serialised for an object reference. This results in the client receiving the wrong callback address (host IP address and port).
The problem manifests itself in IorUtil.GetIiopChannelData(ObjRef objRef). This method searches the objRef.ChannelInfo.ChannelData array for any...
2009-09-02 09:51:21 UTC by nobody
-
Registering multiple IIOP channels as servers (ie with property PORT_KEY defined) can cause the wrong channel data to be serialised for an object reference. This results in the client receiving the wrong callback address (host IP address and port).
The problem manifests itself in IorUtil.GetIiopChannelData(ObjRef objRef). This method searches the objRef.ChannelInfo.ChannelData array for any...
2009-09-02 09:32:42 UTC by nobody
-
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 by mgma
-
i have used the CLSToIDLGenerator to generate idl files from a .net assembly. however in one of the files a valuetype is generated whose identifier includes the character ` (ascii 96) ie valuetype Nullable`1; when using idlj to generate stubs the idlj reports that character as invalid.
are there any ways around this?
thanks very much for any comments.
mike.
2009-08-11 19:14:28 UTC by michaeldibley
-
Hi,
It is observed that IDL compiler is generating C# structs for a IDL unions. Is there any ways that could be changed so that IDL union could be converted to C# class files.
Thanks,
Sam.
2009-08-06 12:36:44 UTC by sammaiah
-
Hi,
Could you help me for getting POA and POAManager using IIOP.NET...
I pasted a javacode here.. are there any similar kind of methods are there in IIOP.NET. If not how could I implement callback functionality.
ORB orb = ORB.init(dummy, p);
org.omg.PortableServer.POA poa = POAHelper.narrow(orb.resolve_initial_references("RootPOA"));
org.omg.PortableServer.POAManager poamgr =...
2009-08-06 11:13:03 UTC by sammaiah
-
Have you tried debugging your way through to see where it fails?.
2009-07-27 13:12:19 UTC by jkiddo
-
My IDL files were peppered with #pragmas. After a little experimenting, I removed them and the IDLs compiled fine. We'll have to see if the assembly is usable. Is #pragma valid in IDL?.
2009-07-21 23:31:25 UTC by vissjb
-
I have compiled IIOP.NET 1.9.0.sp1 and I am getting an "ArgumentNullException" when I try to compile a vendor supplied IDL.
Anyone else will similar problems? I have tried compiling using both .NET 2.0 and 3.5 sp1 . I have run my files through idlj, and it doesn't complain.
2009-07-21 22:44:03 UTC by vissjb