Menu
  • HOME
  • TAGS

Corba Async call issue

java,asynchronous,architecture,corba

I've understood the problem and solved myself, posting github link: PJS

CORBA exception in EJB application

netbeans,glassfish,ejb,marshalling,corba

This seems to be a bug in the current Java versions (e.g. 1.7.0_55 and 1.8.0_05), have a look at this issue: GLASSFISH-21047 To make it work, install either an older or a newer Java version (e.g. 1.7.0_051 or 1.8.0_020). See also: Exception inside CORBA when accessing a remote bean ...

ClassCastException b/w IBMorb and jacorb jars in WAS 8.5.5

java,corba,websphere-8,jacorb

IBM doesn't support third party ORB as it provides its own ORB. You can find the orb.properties with default properties in IBM JAVA jre folder. If you want to add anything related to ORB that need to inform JRE , we can add an entry in this property folder. I...

Corba application using database

java,corba,idl

I solved the above issue. I moved the database class into implementation class, after that I compiled from command prompt in order to include the derby jar.

Broadcast Message in Java

java,message,broadcast,corba

I suggest you to use java messaging service and one of it's implementations such as ApacheMQ. A good starting point is here....

Jacorb - how to open POA monitor GUI

java,corba,jdk1.5,jacorb

I think you can get a basic gui by enabling that property and starting your server. It should automatically open the gui.

JacORB: changing prefix and suffix

ant,corba,idl,jacorb

For various research I concluded that generic solution is immpossible. Only way to perform changing prefix and suffix the same time is to explicite set all included names.

Cannot find symbol 'DirImp1' [closed]

java,corba

You have declared your variable as DirImpl but you're using DirImp1, so change them to DirImpl or declare the variable as DirImp1.

Building OpenJDK - Corba issue

java,windows,corba,openjdk

I was able to build OpenJDK via alexkasko's scripts: https://github.com/alexkasko/openjdk-unofficial-builds

How to include “start orbd -ORBInitialPort 1050” in java?

java,distributed,corba

You could use Runtime.exec(...), see the docs, but notice that you are starting a Windows Service there, once you start it, it will stay active until you stop it explicitly. Doesn't this ORB have an API for Java integration? That page talks about Java RMI+ IIOP(Corba) integration, if you can...

Java:Error on implementing a method from supertype

java,mysql,jdbc,corba,idl

Try removing the @Override annotation (first line) for a start. If you are sure that the method does override another method, though, your compiler might be set to an ancient Java version (the @Override-annotation was not allowed in interfaces before Java 1.6)....

ACE/TAO Performance Issue

c++,corba,tao

Fromm Will Otte from the ATCD mailing list: I’m going to guess that you’ve got some code like this: while (something) { CORBA::ULong pos = seq.length (); seq.length (pos+1); seq[pos] = some_value; } and are observing that the performance is pretty bad compared to std::vector<foo> vec; while (something) { size_t...

Query on CORBA standard

sockets,corba

Don't you think you can write a client program in Java(On Windows) and Server program in C(On Solaris)? Of course you can. Why do we need CORBA standard for client-server communication between software components in different languages for different OS running on different architectures? Because it's an instance of...

How to make ACE/TAO service setup more user-friendly?

corba,tao

The Implementation Repository could do this for you. Another option is to just link the Naming Service and Event Channel into your controller, just one process that also delivers these services.

Exception inside CORBA when accessing a remote bean

java-ee,glassfish,javabeans,corba

It seems that this is a bug related to JDK 1.7_55. After downgrading to JDK 1.7_51 problem was solved. There is an entry in the Glassfish bug tracker on this bug. https://java.net/jira/browse/GLASSFISH-21047...

Corba NameService configuration in Websphere 8.5.5

java,websphere,corba

Please follow the below steps to configurable Corba Name service in WAS 8.5.5 in admin console. --> Environment --> Name Space Bindings --> New --> Provide your corba details here. Example: 1) corba URL : corbaloc:iiop:ABCDE012:14888/NameService 2) provide Lookup name. using this, u will get a RootContext by lookup like...

CORBA/Webstart application doesn't work with Java7u55 anymore

java-7,java-web-start,corba

Finally I found a workaround which doesn't work for the currently used OpenORB but for JacORB (3.4). Oracle obviously updated the release notes suggesting to configure only the org.omg.CORBA.ORBClass property but to ommit org.omg.CORBA.ORBSingletonClass which means the default singleton implementation shipped with Java will be used which is visible for...

tao_idl returns with unspecified error when compiling using gcc

c++,gcc,corba,idl,ace

In addition to @Johnny Willemsen's answer, I thoguht of adding a bit of more details so that it would be helpful for someone. TAO_IDL uses an external pre processor. If the macro TAO_IDL_PREPROCESSOR is defined, then it will use that. Else if the macro ACE_CC_PREPROCESSOR is defined, then it will...