• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Not able launch my GUI's from Eclipse

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

As of now, i was able to open GUI's(of local server) from Eclipse. But recently the server has been upgraded to latest version, then onwards i was not able launch any GUI's from eclipse.We use CORBA,visibroker as well in our project and it seems some CORBA related jars also upgraded to new with the latest version. But i dnt have any idea about those changes.

This is the exception im facing when i am trying to open GUI from eclipse.

com.ericsson.nms.cif.nsa.NameServiceException: org.omg.CORBA.OBJECT_NOT_EXIST: java.net.UnknownHostException: masterservice vmcid: 0x56420000 minor code: 1 completed: No
at com.ericsson.nms.cif.nsa.Internal_NameServiceAgent.resolve(Internal_NameServiceAgent.java:740)
at com.ericsson.nms.fm.gui.common.corbacomm.DsConnection.connect(DsConnection.java:968)
at com.ericsson.nms.fm.gui.common.corbacomm.DsConnection$5.run(DsConnection.java:917)
at java.lang.Thread.run(Unknown Source)

The VM arguments which i've in my eclipse are:

-Xms8m -Xmx128m -Dmx=128m -Dborland.enterprise.licenseDir=${project_loc}/jars/borland_var -Dborland.enterprise.licenseDefaultDir=${project_loc}/jars/borland_var -Dvbroker.agent.enableLocator=false -Dorg.omg.CORBA.ORBClass=com.inprise.vbroker.orb.ORB -Dorg.omg.CORBA.ORBSingeltonClass=com.inprise.vbroker.ORBSingleton -Dfile.encoding=ISO8859_1 -Dfmav.varhome=${project_loc}\src\com\ericsson\nms\fm\gui\common\resources -Dfmav.home=${project_loc}\src\com\ericsson\nms\fm\gui\common\resources -Dfmav.colorfile=${project_loc}\src\com\ericsson\nms\fm\gui\alv\fm_alv.ini -Didentity=FM_DistributionServer_client -DORBInitRef=NameService=iioploc://172.16.65.188:12468/NameService -Dfmav.lang=com\ericsson\nms\fm\gui\common\resources


Please help me in resolving this issue ASAP.

Thank you,

Best Regards,
Santhi
 
author and iconoclast
Posts: 24207
46
Mac OS X Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Welcome to JavaRanch!

The error message UnknownHostException means that your CORBA code is trying to contact a service using a host name (machine name) that does not exist, or can't be found, anyway. It has nothing to do with Eclipse or GUIs. Maybe those upgraded JARs are hardcoded to use a server on a machine that's not on your network? You'll need to talk with someone who understands the CORBA part of the application to track down what's going wrong.
 
Poop goes in a willow feeder. Wipe with this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic