Tagged Questions
0
votes
1answer
51 views
error with array and object in IDL corba
I got a problem with array and object in IDL corba
This is my code:
interface ISinhVien
{
SinhVien[] DocFile(in String filename);
void GhiFile(in SinhVien[] sv,in String filename);
};
...
0
votes
0answers
58 views
Is there an ORM that has code generators for C++ and Java [closed]
We want to access a database with many different data types to store using c++ and Java.
Java since it works nicely e.g. with GlassFish and several other Web-Server related components, c++ because we ...
1
vote
1answer
51 views
Pass DII out-argument in Java CORBA
I have the following IDL interface:
interface ItemA : Item {
void actionA(in float a, out long b);
};
In my Java implementation I'd like to invoke the operation actionA dynamically (using ...
0
votes
1answer
45 views
CORBA IDL Hashmap
Is there such a way to write CORBA IDL to generate stubs for a Hashmap for storing the following for example?
public static final Map<Date, Integer> map = new HashMap<Date, Integer>();
0
votes
1answer
38 views
CORBA: Server as a Client
I have been looking around and can't find an example of a CORBA server implemented as a Client as well.
I understand you can have a Client Connecting to a Server to Call methods but is there a way to ...
0
votes
1answer
63 views
Start Naming service with Eclipse for CORBA IDL in java
I am learning CORBA IDL and I am developing a Java Based Distributed System using Eclipse and ORB Studio. My questions is, Is there a way to start a naming service with Eclipse other than having to ...
0
votes
1answer
43 views
Implementation of equals() and hascode while converting C++ *.idl structure type to generated java file
I am using structure data type from C++ *.idl file and converting it to generated java class. It's generating java classed but it is not implementing equal to and hash method .. so i am not able to ...
0
votes
0answers
94 views
CORBA code explanation [closed]
I have the following code, which is mapped with IDL. I wrote it personally. I know how to create CORBA client-server system, the sequence of the functions needed to be used. I've also read the ...
1
vote
1answer
240 views
idl2java does not work with 64bit JVM? Error loading jre\bin\server\jvm.dll
vbroker52\bin\idl2java.exe -verbose -VBJdebug -VBJjavavm
D:\tools\java\jdk1.6.0_37_32\jre\bin\java.exe
JVM:
Loaded JVM dll D:\tools\java\jdk1.6.0_37_32\jre\bin\client\jvm.dll
...
0
votes
2answers
256 views
Corba remote access
I have a Corba server runnning in a system, which I want to access from another machine on the same LAN. I tried giving the server ip of the server machine to access (code attached); however I get the ...
0
votes
1answer
82 views
wrong name error when runing HelloServer in CORBA/JAVA tutorial [duplicate]
Possible Duplicate:
NoClassDefFoundError: wrong name
I've gone through all of the steps from the corba/java tutorial (here is the link : ...
2
votes
2answers
97 views
Accessing variables and arguments in IDL + Java
I am investigating distributed systems right now, so... I have to learn that IDL thingy. :D
I have this requirement:
Define in IDL
- an account as an struct
- accounts as a sequence of account’s
- ...
0
votes
0answers
43 views
Any Java Renditions of Darwin/Regis
Many many years ago I used the Architectural Description Language Darwin and the accompanying implementation: the Regis distributed programming environment.
Though it was a research project I was ...
1
vote
2answers
66 views
Client.java:30: getThingToDo() in OtherPackage.TaskOperations cannot be applied to (short)
I extended my previous example: Segmentation fault (core dumped) on Server side in CORBA C++/Java application which I finally finished with help of Stack's user, @Brian Neal.
Im still a newbie in ...
0
votes
1answer
286 views
idlj-maven-plugin and package translation
I am trying to include a Corba .idl file in a Maven project with idlj-maven-plugin. The .idl file specifies a certain module, say
module Tester
{
interface Test {
void sayHello();
}
}
and I ...
0
votes
1answer
199 views
IDL to java (Suns idlj) how to compile generated files?
I have an .*idl interface:
interface Class1;
interface Class2
{
typedef sequence<Class1> vector;
Class2 create();
};
interface Class1
{
typedef sequence<Class2> vector;
...
2
votes
4answers
175 views
Does idjl (Sun IDL compiler) support forward declaration?
I have to use idlj for my school project but in my idl files I also need to use forward declaration. Does anybody know if idlj support forward declaration? I tried to do this, but it gives errors:
...
6
votes
1answer
378 views
Generating java from IDL (avoiding default package)
I'm working with a LARGE legacy C++ code base with numerous IDL files that have all the types and constants declared outside of any module.
For C++, this results in code being generated to the global ...
0
votes
1answer
166 views
Parse IDL enums to Java Enums
I've got a bunch of IDL files filled with enums. I would like a way to parse the IDL files, extract out the enums and create native Java enums based on these (also ignoring any other declarations in ...
1
vote
1answer
1k views
Corba,running Hello World on two machines
I'm trying to run a simple client-server program on two machines ,
I read this page but i got this errors :
Jun 04, 2012 6:43:10 PM com.sun.corba.se.impl.transport.SocketOrChannelConnectio
nImpl ...
1
vote
1answer
282 views
using thrift generated models with Hibernate annotated POJOs
Basically I am in the process of evaluating thrift for an upcoming project. What I am trying to achieve is to have my data layer written in Java which then serves (via thrift) a ror powered website as ...
1
vote
1answer
61 views
Corba - Unique user ID
Writing a simple multi client <-> server system in Corba.
I am stuck on unique identification of the client. Is there a mechanism in Corba, like some POA policy that would allow a unique user id ...
3
votes
1answer
325 views
Java IDL : servertool does not register and hangs
I am running CORBA Persistent Object implementation in Java IDL
as in Java IDL: The "Hello World" Example
I followed exact procedure in above article
I used servertool for registering Persistent ...
2
votes
3answers
534 views
how to implement an idl-to-java compiler
I need to implement an idl-to-java compiler. In fact, it's not idl-to-java. Interface definition language is extended. So I need to implement a compiler which can generates java source file. I know ...
0
votes
1answer
123 views
CORBA server on JVM 1.2 and client on 1.3
I have a corba server compiled and running on JVM 1.2. I am using the java IDL to compile the IDL file and generate the required stubs and skeletons and using a NameService to start the server. I am ...
0
votes
1answer
269 views
CORBA + IDL + Java: need help with writing servant
I have a defined idl file, which looks like this:
module Banking {
typedef string Transactions[5];
typedef long AccountId;
interface Account {
exception InsufficientFunds {};
...
0
votes
2answers
141 views
Porting java interface to IDL
I have a java RMI app that I want to port to using CORBA. To do that, I have to change the remote interface definition from java to IDL but I'm not exactly sure how to do that.
At the moment one of ...
0
votes
2answers
186 views
CORBA sequences: can I define sequences of objects w/ methods?
I have an interface with a method that should return a list of items, and each item should have certain methods associated with it. For example, I want to define a method listAllItems() that returns ...
1
vote
1answer
307 views
Communicating with Windows Process via RPC from a Java application
I'm looking to communicate with a windows process via RPC. The application I want to communicate with is developed in C++ using Visual Studio 2008. The application provides its interface through an ...
1
vote
1answer
341 views
Adding a valuetype to IDL, compile and it fails with “No factory found”
I can't figure out why the client keeps complaining about the not finding the factory method. I've tried the IDL with and without the "factory" keyword and that didn't change the behavior. The ...
3
votes
1answer
964 views
How to let idlj compile idl files in ant
I've no idea how to compile my idl files with the sun-idl compiler (idlj) with the help of ant?
Does anyone have an idea?
1
vote
1answer
203 views
idlj Ignoring “#pragma prefix”
I have an IDL file that has a "#pragma prefix" directive, but whenever I use idlj to build the Java code, it ignores this and generates an _id without the prefix specified. This is a big problem ...
0
votes
2answers
1k views
Saving and accessing a lot of ROI polygons (IDL, ImageJ, Java?, XML?)
I need to save and re-load thousands of ROI polygons on a stack of images, actually a 30-frame-per second movie for 30+ minutes, so at least 54,000 frames. There can be multiple ROIs on a single ...
1
vote
1answer
313 views
How to kill the nameserver process in java
I built a client server application using an IDL file for client server communication across the network. Both the client and server programs are in java. When the user enters exit, both the server ...