You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(7) |
Aug
(34) |
Sep
(80) |
Oct
(55) |
Nov
(79) |
Dec
(40) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(131) |
Feb
(175) |
Mar
(145) |
Apr
(44) |
May
(33) |
Jun
(58) |
Jul
(65) |
Aug
(45) |
Sep
(34) |
Oct
(24) |
Nov
(20) |
Dec
(30) |
2004 |
Jan
(34) |
Feb
(29) |
Mar
(26) |
Apr
(43) |
May
(49) |
Jun
(26) |
Jul
(72) |
Aug
(33) |
Sep
(18) |
Oct
(29) |
Nov
(49) |
Dec
(38) |
2005 |
Jan
(38) |
Feb
(42) |
Mar
(18) |
Apr
(12) |
May
(28) |
Jun
(23) |
Jul
(34) |
Aug
(12) |
Sep
(10) |
Oct
(4) |
Nov
(4) |
Dec
(12) |
2006 |
Jan
(4) |
Feb
(3) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
(17) |
Nov
(15) |
Dec
(4) |
2007 |
Jan
(15) |
Feb
(9) |
Mar
(12) |
Apr
(7) |
May
(9) |
Jun
(5) |
Jul
(1) |
Aug
(7) |
Sep
(10) |
Oct
(3) |
Nov
(7) |
Dec
(2) |
2008 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
(2) |
Nov
(4) |
Dec
(1) |
2009 |
Jan
(2) |
Feb
(2) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
(1) |
Nov
|
Dec
|
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(6) |
Aug
|
Sep
(2) |
Oct
(1) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(1) |
Dec
|
2013 |
Jan
|
Feb
|
Mar
(4) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
From: Jacek C. <jc...@ag...> - 2008-11-06 13:08:26
|
Hello all, Is it possible to make a deep copy of an object reference in OpenORB? I have the following problem: At a client side I have two corba references to the same remote object. When I invoke an operation on the object using one of these refs and get location forward exception, both references are updated. It means, the one I used to invoke operation as well as the other that I have not used yet, both point to the new location. This behaviour is in general reasonable but I need the unused reference to point to the previous location of the object. Is there any chance to do it avoiding reference conversion with object_to_string/string_to_object. BTW I'm not sure if it is important but I set the property bindings.discard_old to true. -- Jacek Cala ___________________________________________________________________ Distributed Systems Research Group Department of Computer Science AGH - University of Science and Technology Krakow, Poland tel.: +48 12 6173491 ext. 71 fax.: +48 12 6339406 |
From: L. K. <lk...@us...> - 2008-11-04 19:43:16
|
Hi, Scenario 1: > I don't think it's that helpful to repeat the same questions again and again. Just write the new stuff you figured out. I don't want to waste my time reading the same stuff over and over. > [...] > > > > Ø For Naming service, client(GUI) needs to ask ORB to get the server > object reference and send request and get response, Server doesn't have > knowledge about how ORB handle the details of communication, that is one of > reasons why we use CORBA but not pure socket call. *Is this statement > is correct?* > Yes. > ** > > > > Ø For Notification service, is there any configuration inside ORB > which can let us to set the number of max threads*? Is there Any Solution > for this*. > > Set maxThreadPoolSize in the openorb configuration file. And make sure that you are using an appropriate threading strategy in the ORB / POA configuration, not "thread per client". > > > Ø Is there any tool that can be used to identify the Corba threads > and how it communicates on Solaris 9/10. how to check the name sevices and > notification services are correct. > > > This is probably not a "Solaris only" problem. If you are having difficulties getting a profiler to run (see below) you might be able to reproduce this on Windows. If you can't do that, profiling tools typically support remote profiling. Read your profilers documentation how to do that. > I am getting the error . > > [...] > *No X11 DISPLAY variable was set, but this program performed an operation > which requires it.* > Have you tried to paste this error message into the google search box? Whenever I run across some error message, this strategy works quite well for me... A profiler is a GUI driven program, just like your IDE, so it needs to open a window on your desktop. X11 is the GUI environment of Unix Systems. Dedicated unix servers often don't have a GUI running and allow interaction only via the command shell. The stack trace says that YourKit is trying to open a window and it failed because X11 is not there or not configured correctly. If X11 is running, ask your sysadmin for help. If X11 is not running, use one of the options I described above. Regards, Lars |
From: <ras...@wi...> - 2008-11-04 05:36:12
|
Hi Scenario 1: =========== Here the customer site was using the OpenORB-1.3.1 from past few years. Code was written for that. JDK was recently up versioned to JDK-1.5_014. Previously there was a COMM_FAILURE error. It was fixed by this new JDK version. Hence new JDK was applied. But Corba related code changes are not done. Also in jdk we increased the memory size from 8k. After the application of this JDK version from application side every 3-4 days the GUI goes to hung state at this stage customer need to restart all the services. Once they restart, this error will disappear and the system comes to normal state. In the logs we see the below mentioned error messages. Hence I was checking about the Root cause for this error. Do we need to tune the java processes? Is this is Java process issue? Scenario 2: =========== Here It was found the corba is using high CPU load average. We tested by launching GUI and sending the notifications.Some Java threads will be left in the run queue. 1.Will there be any memory leak in corba? If yes when it will occur? How can we identify the corba memory leak and is there any solution to fix this. 2. The java threads which are created are left in the runnable or running queue. Hence the LWP's are keep on increasing. Is this is caused by the clients not handling the code properly and threads are not killed? How we can correct this. Is there any tool to identify corba memory lea. Please help me with any pointers to above mentioned problems. * For Naming service, client(GUI) needs to ask ORB to get the server object reference and send request and get response, Server doesn't have knowledge about how ORB handle the details of communication, that is one of reasons why we use CORBA but not pure socket call. Is this statement is correct? * For Notification service, is there any configuration inside ORB which can let us to set the number of max threads? Is there Any Solution for this. * Is there any tool that can be used to identify the Corba threads and how it communicates on Solaris 9/10. how to check the name sevices and notification services are correct. * I tried to use your kit as per suggestion but I am getting the error . On 98d its throwing below error. wcars98d:/yjp-7.5.9/bin> ./ yjp.sh bash: ./: is a directory wcars98d:/yjp-7.5.9/bin> ./yjp.sh Picked up JAVA_TOOL_OPTIONS: java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:585) at com.yourkit.Main$5.run(a:14) Caused by: java.awt.HeadlessException: No X11 DISPLAY variable was set, but this program performed an operation which requires it. at java.awt.GraphicsEnvironment.checkHeadless(GraphicsEnvironment.java:159) at java.awt.Window.<init>(Window.java:318) at java.awt.Frame.<init>(Frame.java:419) at java.awt.Frame.<init>(Frame.java:384) at javax.swing.JFrame.<init>(JFrame.java:150) at com.yourkit.h.b.<init>(a:88) at com.yourkit.Main0.entry(a:74) ... 5 more Regards, Rashmi Chidambara Rao. |
From: Lars K. <lak...@t-...> - 2008-10-24 20:26:57
|
Rahsmi, didn't you get my response to your first email? I sent it Oct 1st.... rashmi.chidambara wrote: > Here the jdk version is 1.5. and corba is openORB1.3.1 > > > > Ø Why there is java.io.EOFException occurs? > Client keeps a connection open but doesn't send any further requests. The server tries to read a few bytes, but because the client doesn't send anything, that read times out with an exception. This is perfectly normal, so it shouldn't be logged by the server. This has been fixed in OpenOrb 1.4.0. > Ø The above messages are repeatedly thrown in the logs. > Sure, you have multiple clients, right. They all time out at some point. > Ø What are main causes we get EOFException error and is it the > root cause for GUI goes to hung state? > If the client ORB is robust, this is probably not the cause of your problems. If you have control over the clients, try to debug them or use a profiling tool like JProfiler or YourKit to detect deadlocks. > Ø How can we correct this error? > > Ø This EOFException is leading to COMM_FAILURE . > > > Like I said in my earlier email: I don't know your code and you seem to use SSL features of OpenORB I have never used personally, so I can't really help you. All I can say is that you really should upgrade to OpenOrb 1.4.0. Regards, Lars |
From: Lars K. <lak...@t-...> - 2008-10-01 20:52:07
|
Hi, rashmi.chidambara wrote: > > Hi Lars, > > > > > > System details: > > ================= > > Sunsparc, solaris 5.9. Openorb 1.3.1 and JDK 1.5. > > > > Problem Description: > > ==================== > > > > Previously we were using JDK older version. Now the JDK is > up-versioned to JDK 1.5 with the same CORBA (openorb).The issue we are > facing here is after some time CORBA connection will get lost and we > need to start all the services.Here the GUI's cannot be launched. > Below mentioned are the logs thrown > > > > > > Please reply me for the following: > > ================================== > > 1.Is this is a corba issue? > Maybe. I don't know your code. > 2. Is there any incompatibility between JDK and Openorb? > Yes. This is all very long time ago, but I remember that we had to change the code to support valuetypes in JDK 1.5. Not sure if there was anything else, please check the WHATSNEW files from later releases for every module you use. OpenOrb 1.3.1 was released more than a year before JDK 1.5, so that combination has definitely never been tested. Note also that TONS of other issues were fixed between 1.3.1 and 1.4, so I think it might be more risky to stick with the old version than update to a newer one. > 3. As I can see the ssl and md5 algorithm related issue, Is that > server is conserned with any > > Ssl ciphers? Do we need to look into it in that dierection? > > 4. What might be the cause for this failure and how to debug and > correct this? > > 5. what are these SID cache? Why they are revalidate again and again > and failing grant the access? > > 6. Is corba failing because of the time out? > > > I have absolutely no idea. I no longer have the sources for OpenOrb 1.3 locally, I don't have your sources, and I have never used CORBA over SSL. I'm afraid I can't help you that much :-( Good luck, Lars |
From: anish p. <ani...@gm...> - 2008-09-07 08:24:42
|
I am extremely apologies for this message While playing around this app by mistaken it had sent it -- Anish On Sun, Sep 7, 2008 at 1:00 PM, anish_patil <ani...@gm...>wrote: > To find out more about Twitter, visit the link below: > > http://twitter.com/i/6add989c86ed0464d2686075ee58fffcb6458cbb > > Thanks, > -The Twitter Team > > About Twitter > > Twitter is a unique approach to communication and networking based on the > simple concept of status. What are you doing? What are your friends > doing—right now? With Twitter, you may answer this question over SMS, IM, or > the Web and the responses are shared between contacts. > > This message was sent by a Twitter user who entered your email address. If > you'd prefer not to receive emails when other people invite you to Twitter, > click here: > http://twitter.com/i/optout/7e8114cf88ca4fa1dbcbd5e03beeab2ab43c618d > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > openorb-users mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/openorb-users > -- Anish Patil |
From: anish_patil <ani...@gm...> - 2008-09-07 07:30:34
|
To find out more about Twitter, visit the link below: http://twitter.com/i/6add989c86ed0464d2686075ee58fffcb6458cbb Thanks, -The Twitter Team About Twitter Twitter is a unique approach to communication and networking based on the simple concept of status. What are you doing? What are your friends doing—right now? With Twitter, you may answer this question over SMS, IM, or the Web and the responses are shared between contacts. This message was sent by a Twitter user who entered your email address. If you'd prefer not to receive emails when other people invite you to Twitter, click here: http://twitter.com/i/optout/7e8114cf88ca4fa1dbcbd5e03beeab2ab43c618d |
From: Bryan W. <br...@ar...> - 2008-03-03 21:23:13
|
NSIcom's JVM has been stripped down due to the memory size limitations of PDAs. My guess is that OpenORB initialization requires the orb to connect to a socket or acquire some other such resource, and the underlying java library is missing. It could also be that the java library is included but WinME does not include a DLL that the java library depends upon. Wish I could be more help - I tried to build a java app on a PDA using CrEme once and it was not great. Good luck Cheers! Bryan Wouter Wognum wrote: > There's no real possibility of debugging it on the creme JVM :( > And I know CrEme can find the openorb jar files, cause if I move them, I get > a classdefnotfound error. > > I e-mailed NSIcom about it as well, > this error leaves me kinda clueless. > If only I knew why it can't instantiate the ORB implementation. > > > - Wouter > > ----- Original Message ----- > From: "Lars Kühne" <lak...@t-...> > To: <ope...@li...> > Sent: Monday, March 03, 2008 8:31 PM > Subject: Re: [openorb-users] Using OpenORB with NSIcom CrE-ME VM for PDA's > > >> Hmmm... I have no experience with mobile java so I can't really help, >> but if they are saying "notably swing is [now] supported" maybe testing >> CORBA is not on their priority list yet? Another possible pointer: Are >> you sure that your bootclasspath setup is equivalent to the windows one? >> >> You should really try to debug this and find out where exactly the >> init_orb call fails. >> >> Good luck, >> Lars >> >> Wouter Wognum wrote: >>> Hello, >>> >>> I'm trying to run an application using OpenORB on the CrE-ME virtual >>> machine, >>> but unfortunately, I can't get it to work, and I don't know why. >>> I might be doing something wrong when using OpenORB, or there might be >>> a problem with the VM. >>> >>> I am using OpenORB 1.3.0. >>> I tested the application on windows, using JDK 1.3.1, >>> this works fine. The application is able to initialize the ORB and >>> contact the naming service. >>> >>> Some information about the CrE-ME VM, from the website ( >>> http://www.nsicom.com/Default.aspx?tabid=138 ) >>> >>> >>> /J2ME-CDC implementation. Compliant with J2ME CDC 1.0 //specification/ >>> <http://java.sun.com/j2me/docs/index.html#cdc>/ - based on JDK 1.3.1./ >>> /CrEme supports any Java package written entirely in Java, and >>> supported by JDK 1.3.1 (or below). If the java package however relies >>> on native methods, these native methods will have to be ported to the >>> target platform./ >>> >>> >>> Based on this information, I had good hope that it would work :) >>> but when I try to run the application on the CrEme VM, it outputs the >>> following error: >>> >>> // >>> /org.omg.CORBA.INITIALIZE: can't instantiate ORB implementation >>> org.openorb.CORBA.ORB / >>> /org.omg.CORBA.ORBSingletonClass=org.openorb.CORBA.ORBSingleton >>> at org.omg.CORBA.ORB.init_orb() >>> at org.omg.CORBA.ORB.init()/ >>> // >>> // >>> So basically it fails when trying to initialize the ORB. >>> I assume the code to be correct, cause it works fine on jre 1.3.1. >>> >>> So what could cause an error like this? >>> I made and placed the orb.properties file like instructed >>> When I don't use place the orb.properties file in the lib directory, >>> the error is similar: >>> >>> /org.omg.CORBA.INITIALIZE: can't instantiate ORB implementation >>> org.openorb.CORBA.ORB >>> at org.omg.CORBA.ORB.init_orb() >>> at org.omg.CORBA.ORB.init()/ >>> >>> >>> I hope someone will be able to give me some pointers here :) >>> >>> >>> Regards, >>> >>> Wouter >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Microsoft >> Defy all challenges. Microsoft(R) Visual Studio 2008. >> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ >> _______________________________________________ >> openorb-users mailing list >> ope...@li... >> https://lists.sourceforge.net/lists/listinfo/openorb-users >> > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > openorb-users mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/openorb-users > > |
From: Wouter W. <wo...@xs...> - 2008-03-03 21:15:38
|
There's no real possibility of debugging it on the creme JVM :( And I know CrEme can find the openorb jar files, cause if I move them, I get a classdefnotfound error. I e-mailed NSIcom about it as well, this error leaves me kinda clueless. If only I knew why it can't instantiate the ORB implementation. - Wouter ----- Original Message ----- From: "Lars Kühne" <lak...@t-...> To: <ope...@li...> Sent: Monday, March 03, 2008 8:31 PM Subject: Re: [openorb-users] Using OpenORB with NSIcom CrE-ME VM for PDA's > Hmmm... I have no experience with mobile java so I can't really help, > but if they are saying "notably swing is [now] supported" maybe testing > CORBA is not on their priority list yet? Another possible pointer: Are > you sure that your bootclasspath setup is equivalent to the windows one? > > You should really try to debug this and find out where exactly the > init_orb call fails. > > Good luck, > Lars > > Wouter Wognum wrote: >> Hello, >> >> I'm trying to run an application using OpenORB on the CrE-ME virtual >> machine, >> but unfortunately, I can't get it to work, and I don't know why. >> I might be doing something wrong when using OpenORB, or there might be >> a problem with the VM. >> >> I am using OpenORB 1.3.0. >> I tested the application on windows, using JDK 1.3.1, >> this works fine. The application is able to initialize the ORB and >> contact the naming service. >> >> Some information about the CrE-ME VM, from the website ( >> http://www.nsicom.com/Default.aspx?tabid=138 ) >> >> >> /J2ME-CDC implementation. Compliant with J2ME CDC 1.0 //specification/ >> <http://java.sun.com/j2me/docs/index.html#cdc>/ - based on JDK 1.3.1./ >> /CrEme supports any Java package written entirely in Java, and >> supported by JDK 1.3.1 (or below). If the java package however relies >> on native methods, these native methods will have to be ported to the >> target platform./ >> >> >> Based on this information, I had good hope that it would work :) >> but when I try to run the application on the CrEme VM, it outputs the >> following error: >> >> // >> /org.omg.CORBA.INITIALIZE: can't instantiate ORB implementation >> org.openorb.CORBA.ORB / >> /org.omg.CORBA.ORBSingletonClass=org.openorb.CORBA.ORBSingleton >> at org.omg.CORBA.ORB.init_orb() >> at org.omg.CORBA.ORB.init()/ >> // >> // >> So basically it fails when trying to initialize the ORB. >> I assume the code to be correct, cause it works fine on jre 1.3.1. >> >> So what could cause an error like this? >> I made and placed the orb.properties file like instructed >> When I don't use place the orb.properties file in the lib directory, >> the error is similar: >> >> /org.omg.CORBA.INITIALIZE: can't instantiate ORB implementation >> org.openorb.CORBA.ORB >> at org.omg.CORBA.ORB.init_orb() >> at org.omg.CORBA.ORB.init()/ >> >> >> I hope someone will be able to give me some pointers here :) >> >> >> Regards, >> >> Wouter > > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2008. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > _______________________________________________ > openorb-users mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/openorb-users > |
From: Lars K. <lak...@t-...> - 2008-03-03 19:31:35
|
Hmmm... I have no experience with mobile java so I can't really help, but if they are saying "notably swing is [now] supported" maybe testing CORBA is not on their priority list yet? Another possible pointer: Are you sure that your bootclasspath setup is equivalent to the windows one? You should really try to debug this and find out where exactly the init_orb call fails. Good luck, Lars Wouter Wognum wrote: > Hello, > > I'm trying to run an application using OpenORB on the CrE-ME virtual > machine, > but unfortunately, I can't get it to work, and I don't know why. > I might be doing something wrong when using OpenORB, or there might be > a problem with the VM. > > I am using OpenORB 1.3.0. > I tested the application on windows, using JDK 1.3.1, > this works fine. The application is able to initialize the ORB and > contact the naming service. > > Some information about the CrE-ME VM, from the website ( > http://www.nsicom.com/Default.aspx?tabid=138 ) > > > /J2ME-CDC implementation. Compliant with J2ME CDC 1.0 //specification/ > <http://java.sun.com/j2me/docs/index.html#cdc>/ - based on JDK 1.3.1./ > /CrEme supports any Java package written entirely in Java, and > supported by JDK 1.3.1 (or below). If the java package however relies > on native methods, these native methods will have to be ported to the > target platform./ > > > Based on this information, I had good hope that it would work :) > but when I try to run the application on the CrEme VM, it outputs the > following error: > > // > /org.omg.CORBA.INITIALIZE: can't instantiate ORB implementation > org.openorb.CORBA.ORB / > /org.omg.CORBA.ORBSingletonClass=org.openorb.CORBA.ORBSingleton > at org.omg.CORBA.ORB.init_orb() > at org.omg.CORBA.ORB.init()/ > // > // > So basically it fails when trying to initialize the ORB. > I assume the code to be correct, cause it works fine on jre 1.3.1. > > So what could cause an error like this? > I made and placed the orb.properties file like instructed > When I don't use place the orb.properties file in the lib directory, > the error is similar: > > /org.omg.CORBA.INITIALIZE: can't instantiate ORB implementation > org.openorb.CORBA.ORB > at org.omg.CORBA.ORB.init_orb() > at org.omg.CORBA.ORB.init()/ > > > I hope someone will be able to give me some pointers here :) > > > Regards, > > Wouter |
From: Wouter W. <wo...@xs...> - 2008-03-03 18:16:06
|
Hello, I'm trying to run an application using OpenORB on the CrE-ME virtual machine, but unfortunately, I can't get it to work, and I don't know why. I might be doing something wrong when using OpenORB, or there might be a problem with the VM. I am using OpenORB 1.3.0. I tested the application on windows, using JDK 1.3.1, this works fine. The application is able to initialize the ORB and contact the naming service. Some information about the CrE-ME VM, from the website ( http://www.nsicom.com/Default.aspx?tabid=138 ) J2ME-CDC implementation. Compliant with J2ME CDC 1.0 specification - based on JDK 1.3.1. CrEme supports any Java package written entirely in Java, and supported by JDK 1.3.1 (or below). If the java package however relies on native methods, these native methods will have to be ported to the target platform. Based on this information, I had good hope that it would work :) but when I try to run the application on the CrEme VM, it outputs the following error: org.omg.CORBA.INITIALIZE: can't instantiate ORB implementation org.openorb.CORBA.ORB org.omg.CORBA.ORBSingletonClass=org.openorb.CORBA.ORBSingleton at org.omg.CORBA.ORB.init_orb() at org.omg.CORBA.ORB.init() So basically it fails when trying to initialize the ORB. I assume the code to be correct, cause it works fine on jre 1.3.1. So what could cause an error like this? I made and placed the orb.properties file like instructed When I don't use place the orb.properties file in the lib directory, the error is similar: org.omg.CORBA.INITIALIZE: can't instantiate ORB implementation org.openorb.CORBA.ORB at org.omg.CORBA.ORB.init_orb() at org.omg.CORBA.ORB.init() I hope someone will be able to give me some pointers here :) Regards, Wouter |
From: <ras...@wi...> - 2007-12-07 07:13:09
|
Hi, =20 I am using OpenORB-1.4.0. Naming sevice and notification services.These services need to be worked as expected. =20 I am passing following command line arguments to start Naming service =20 java -client -classpath ${CP} -Dorg.omg.CORBA.ORBClass=3Dorg.openorb.orb.core.ORB -Dorg.omg.CORBA.ORBSingletonClass=3Dorg.openorb.orb.core.ORBSing leton -Dopenorb.debug.level=3DHIGH -Dopenorb.debug.trace=3DDEBUG -Dopenorb.home=3D${CORBAHome}/rcscripts org.openorb.tns.Server -ORBPort=3D2001 -ORBD ebug=3D10 --default --version --logfile --logfile $* 2>&1 |/usr/bin/logger -p local4.notice -t "OpenORB NamingService" =20 following are the jar files I am passing CP=3D/opt/corba/jars/openorb_orb_omg-1.4.0.jar:/opt/corba/jars/logkit.jar= : /opt/corba/jars/commons-cli.jar:/opt/corba/jars/avalon-framework.jar:/op t/corba/jars/tools-1.4.0.jar:/opt/corba/jars/openorb_pss-1.4.0.jar:/opt/ corba/jars/openorb_tns-1.4.0.jar:/opt/corba/jars/openorb_ins-1.4.0.jar:/ opt/corba/jars/openorb_orb-1.4.0.jar:/opt/corba/jars/logkit.jar:/opt/cor ba/jars/avalon-framework.jar:/opt/corba/jars/jaxp.jar:/opt/corba/jars/xa lan.jar:/opt/corba/jars/xercesImpl.jar: =20 For starting notification service=20 =20 ${JAVA} -client -XX:MinHeapFreeRatio=3D20 -XX:MaxHeapFreeRatio=3D25 = -Xms20m -Xmx512m -classpath $CP ${SOCKS_PROPS} -Dorg.omg.CORBA.ORBClass=3Dorg. openorb.orb.core.ORB -Dorg.omg.CORBA.ORBSingleton=3Dorg.openorb.orb.core.ORBSingleton org.openorb.notify.Server -ORBProfile=3Dpss -ORBpss.File.Dat aStore.Directory=3D/data -ORBpss.File.DataStore.Name=3Dcorba = -ORBDebug=3D10 $* 2>&1 |/usr/bin/logger -p local4.notice -t "OpenORB NotificationService" =20 jar file used are: =20 CP=3D/opt/corba/jars/log4j.jar:/opt/corba/jars/openorb_notify-1.4.0.jar:/= o pt/corba/jars/openorb_ots-1.4.0.jar:/opt/corba/jars/openorb_pss-1.4.0.ja r:/opt/corba/jars/openorb_orb-1.4.0.jar:/opt/corba/jars/tools-1.4.0.jar: /opt/corba/jars/openorb_tns-1.4.0.jar:/opt/corba/jars/avalon-framework.j ar:/opt/corba/jars/commons-cli.jar:/opt/corba/jars/logkit.jar:/opt/corba /jars/openorb_orb_omg-1.4.0.jar:/usr/java/lib/rt.jar + echo /opt/corba/jars/log4j.jar:/opt/corba/jars/openorb_notify-1.4.0.jar:/opt/ corba/jars/openorb_ots-1.4.0.jar:/opt/corba/jars/openorb_pss-1.4.0.jar:/ opt/corba/jars/openorb_orb-1.4.0.jar:/opt/corba/jars/tools-1.4.0.jar:/op t/corba/jars/openorb_tns-1.4.0.jar:/opt/corba/jars/avalon-framework.jar: /opt/corba/jars/commons-cli.jar:/opt/corba/jars/logkit.jar:/opt/corba/ja rs/openorb_orb_omg-1.4.0.jar:/usr/java/lib/rt.jar /opt/corba/jars/log4j.jar:/opt/corba/jars/openorb_notify-1.4.0.jar:/opt/ corba/jars/openorb_ots-1.4.0.jar:/opt/corba/jars/openorb_pss-1.4.0.jar:/ opt/corba/jars/openorb_orb-1.4.0.jar:/opt/corba/jars/tools-1.4.0.jar:/op t/corba/jars/openorb_tns-1.4.0.jar:/opt/corba/jars/avalon-framework.jar: /opt/corba/jars/commons-cli.jar:/opt/corba/jars/logkit.jar:/opt/corba/ja rs/openorb_orb_omg-1.4.0.jar:/usr/java/lib/rt.jar =20 =20 I am getting error : =20 CORBA NotificationService binding not found in name service. Both service are not working and channels are not created.Please let me know=20 =20 * Is strating sequence is correct? * Am I missing any jar files * What is the correct way to bring these service up. =20 Thank you in advance. =20 =20 Regards, Rashmi Chidambara Rao. =20 |
From: <ras...@wi...> - 2007-12-07 06:16:15
|
Hi all, =20 I am compiling openorb-1.4.0 with jdk1.5.0_14 with -xlint option. Also I am compiling corba related *.java files with the same jdk. I see warnings. Please help can I ignore these warnings? What about serializable classes. I am using Transient naming service=20 And notification service of OpenORB. Is there any effect on this.Below are the errors during compilation. =20 com/nortel/succession/Platform/Notification/AlarmEvent.java:12: warning: [serial] serializable class com.nortel.succession.Platform.Notification.AlarmEvent has no definition of serialVersionUID public class AlarmEvent extends Event ^ 1 warning /vobs/j2sdk/1.5.0_14/bin/javac -source 1.4 -target 1.4 -Xlint -classpath /soamp/SSPFS/Classes/:/soamp/SSPFS/Notification \ com/nortel/succession/Platform/Notification/CORBA/*.java com/nortel/succession/Platform/Notification/CORBA/SequencePushSupplier.j ava:27: warning: [serial] serializable class com.nortel.succession.Platform.Notification.CORBA.SequencePushSupplier has no definition of serialVersionUID public class SequencePushSupplier extends _SequencePushSupplierImplBase ^ com/nortel/succession/Platform/Notification/CORBA/StructuredPushSupplier .java:21: warning: [serial] serializable class com.nortel.succession.Platform.Notification.CORBA.StructuredPushSupplier has no definition of serialVersionUID public class StructuredPushSupplier extends _StructuredPushSupplierImplBase ^ 2 warnings /vobs/j2sdk/1.5.0_14/bin/javac -source 1.4 -target 1.4 -Xlint -classpath /soamp/SSPFS/Classes/:/soamp/SSPFS/Notification \ com/nortel/succession/Platform/Notification/RMI/*.java com/nortel/succession/Platform/Notification/RMI/Consumer.java:15: warning: [serial] serializable class com.nortel.succession.Platform.Notification.RMI.Consumer has no definition of serialVersionUID public class Consumer extends Frame implements RemoteObserver, Runnable=20 ^ com/nortel/succession/Platform/Notification/RMI/Observable.java:17: warning: [serial] serializable class com.nortel.succession.Platform.Notification.RMI.Observable has no definition of serialVersionUID public class Observable extends UnicastRemoteObject implements RemoteObservable ^ com/nortel/succession/Platform/Notification/RMI/Supplier.java:18: warning: [serial] serializable class com.nortel.succession.Platform.Notification.RMI.Supplier has no definition of serialVersionUID public class Supplier extends Observable implements Runnable=20 ^ 3 warnings =20 /vobs/j2sdk/1.5.0_14/bin/javac -source 1.4 -target 1.4 -Xlint com/nortel/succession/CORBA/NSBrowser/*.java com/nortel/succession/CORBA/NSBrowser/NameServiceBrowser.java:186: warning: [serial] serializable class <anonymous com.nortel.succession.CORBA.NSBrowser.NameServiceBrowser$2> has no definition of serialVersionUID public void actionPerformed(ActionEvent e) { ^ com/nortel/succession/CORBA/NSBrowser/NameServiceBrowser.java:212: warning: [serial] serializable class <anonymous com.nortel.succession.CORBA.NSBrowser.NameServiceBrowser$3> has no definition of serialVersionUID public void actionPerformed(ActionEvent e) { ^ com/nortel/succession/CORBA/NSBrowser/NameServiceBrowser.java:23: warning: [serial] serializable class com.nortel.succession.CORBA.NSBrowser.NameServiceBrowser has no definition of serialVersionUID public class NameServiceBrowser extends JPanel implements ActionListener ^ 3 warnings /vobs/j2sdk/1.5.0_14/bin/javac -source 1.4 -target 1.4 -Xlint com/nortel/succession/SSPFS/*.java /vobs/j2sdk/1.5.0_14/bin/javac -source 1.4 -target 1.4 -Xlint com/nortel/succession/Platform/Syslog/*.java com/nortel/succession/Platform/Syslog/SyslogClient.java:356: warning: [deprecation] getBytes(int,int,byte[],int) in java.lang.String has been deprecated message.getBytes( 0, messageLength, messageInBytes, 0 ); ^ com/nortel/succession/Platform/Syslog/SyslogServer.java:114: warning: [deprecation] String(byte[],int,int,int) in java.lang.String has been deprecated String dataString =3D new String( packet.getData( ), 0, 0, packet.getLength( )); ^ com/nortel/succession/Platform/Syslog/SyslogServer.java:132: warning: [deprecation] getBytes(int,int,byte[],int) in java.lang.String has been deprecated dataString.getBytes( 0, dataString.length( ), buffer, 0 ); ^ 3 warnings =20 =20 com/nortel/succession/CORBA/NamingContexts.java:19: warning: [serial] serializable class com.nortel.succession.CORBA.NamingContexts has no definition of serialVersionUID public class NamingContexts extends java.util.TreeSet ^ com/nortel/succession/CORBA/NamingServiceMirror.java:13: warning: [serial] serializable class com.nortel.succession.CORBA.NamingServiceMirror has no definition of serialVersionUID public class NamingServiceMirror implements Serializable ^ com/nortel/succession/CORBA/NamingServiceMirrors.java:58: warning: [deprecation] readLine() in java.io.DataInputStream has been deprecated while (( line =3D in.readLine( )) !=3D null ) { ^ com/nortel/succession/CORBA/NamingServiceMirrors.java:13: warning: [serial] serializable class com.nortel.succession.CORBA.NamingServiceMirrors has no definition of serialVersionUID public class NamingServiceMirrors extends HashMap implements Serializable, Runnable ^ ./com/nortel/succession/Application/PTMApplication/_PTMStub.java:11: warning: [serial] serializable class com.nortel.succession.Application.PTMApplication._PTMStub has no definition of serialVersionUID public class _PTMStub extends org.omg.CORBA.portable.ObjectImpl implements com.nortel.succession.Application.PTMApplication.PTM ^ 5 warnings =20 =20 Regards, Rashmi Chidambara Rao. =20 |
Hi All, =20 Corba exception is coming after compiling with JDK-1.5.0_14 and OpenORB-1.4.0=20 =20 I am using the following in /config/default.xml =20 <property name=3D"serverNoDelay" value=3D"true"> <description> Setting for server sockets: true or false. Default true. </description> </property> =20 <property name=3D"clientNoDelay" value=3D"true"> <description> Setting for server sockets: true or false. Default true. </description> </property> =20 <property name=3D"NoDelay" value=3D"true"> <description> Setting for server sockets: true or false. Default true. </description> </property> =20 =20 But still I am getting the error:=20 =20 =20 Nov 23 10:50:03 wcars99q OpenORB NamingService: [main] [FATAL] (orb.iiop.diagnostics.socket-factory): Constructed [ConfiguredSocketFactory] Nov 23 10:50:03 wcars99q OpenORB NamingService: [main] [ERROR] (orb.iiop.diagnostics.socket-factory): Start details... Nov 23 10:50:03 wcars99q OpenORB NamingService: [main] [ERROR] (orb.iiop.diagnostics.socket-factory): keepAlive=3D[false] Nov 23 10:50:03 wcars99q OpenORB NamingService: [main] [ERROR] (orb.iiop.diagnostics.socket-factory): noDelay=3D[true] Nov 23 10:50:03 wcars99q OpenORB NamingService: [main] [ERROR] (orb.iiop.diagnostics.socket-factory): sendBufferSize=3D[0] Nov 23 10:50:03 wcars99q OpenORB NamingService: [main] [ERROR] (orb.iiop.diagnostics.socket-factory): receiveBufferSi =20 The FATAL one is a big problem. =20 and there is this error Nov 23 07:33:51 wcars99q NamingServiceMonitor: WARNING: "IOP00410201: (COMM_FAILURE) Connection failure: socketType: IIOP_CLEAR_TEXT; hostname: localhost; port:2001" Nov 23 07:33:51 wcars99q NamingServiceMonitor: org.omg.CORBA.COMM_FAILURE: vmcid: SUN minor code: 201 completed: No =20 In naming service I am using the following command: =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =20 java -client -classpath ${CP} -Dorg.omg.CORBA.ORBClass=3Dorg.openorb.orb.core.ORB -Dorg.omg.CORBA.ORBSingletonClass=3Dorg.openorb.orb.core.ORBSing leton -Dopenorb.debug.level=3DMEDIUM -Dopenorb.debug.trace=3DWARN -Dopenorb.home=3D${CORBAHome}/rcscripts org.openorb.tns.Server -ORBPort=3D2001 $* 2 >&1 |/usr/bin/logger -p local4.notice -t "OpenORB NamingService" =20 Please let me know any solution for the above error.=20 =20 =20 =20 Regards, Rashmi Chidambara Rao. =20 |
From: Dahiya, K. (GE H. consultant) <Kir...@ge...> - 2007-11-20 05:15:06
|
=20 Hi Rashmi, One of the reasons of the occurance of this error could be that your application is taking sun orb at one end inspite of taking open ORB. In order to fix this thing add the following in your compilation path: :. -Dorg.omg.CORBA.ORBClass=3Dorg.openorb.orb.core.ORB -Dorg.omg.CORBA.ORBSingletonClass=3Dorg.openorb.CORBA.ORBSingleton server.java=20 Hope this will help. Thanks & Regards Kiran Th -----Original Message----- From: ope...@li... [mailto:ope...@li...] On Behalf Of ope...@li... Sent: Friday, November 16, 2007 1:37 AM To: ope...@li... Subject: openorb-users Digest, Vol 15, Issue 4 Send openorb-users mailing list submissions to ope...@li... To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/openorb-users or, via email, send a message with subject or body 'help' to ope...@li... You can reach the person managing the list at ope...@li... When replying, please edit your Subject line so it is more specific than "Re: Contents of openorb-users digest..." Today's Topics: 1. compiling openorb with JDK-1.5.0_14 (ras...@wi...) ---------------------------------------------------------------------- Message: 1 Date: Thu, 15 Nov 2007 17:16:40 +0530 From: <ras...@wi...> Subject: [openorb-users] compiling openorb with JDK-1.5.0_14 To: <ope...@li...> Message-ID: =09 <E45...@BL...> Content-Type: text/plain; charset=3D"us-ascii" Hi all, =20 I am compiling OpenORB-1.4.0 with newly released JDK version 1.5.0_14. has any one tried compiling it? Please let me know any known issue . =20 JDK has fixed Corba error =20 Bug ID: 6553303 Synopsis: Corba application fails w/ org.omg.CORBA.COMM_FAILURE: vmcid: SUN minor code: 203 completed: No =20 anybody know how to test this once we install the package which is compiled with new JDK version. =20 =20 Regards, Rashmi Chidambara Rao. =20 -------------- next part -------------- An HTML attachment was scrubbed... ------------------------------ ------------------------------------------------------------------------ - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ ------------------------------ _______________________________________________ openorb-users mailing list ope...@li... https://lists.sourceforge.net/lists/listinfo/openorb-users End of openorb-users Digest, Vol 15, Issue 4 ******************************************** |
From: <ras...@wi...> - 2007-11-15 11:49:09
|
Hi all, =20 I am compiling OpenORB-1.4.0 with newly released JDK version 1.5.0_14. has any one tried compiling it? Please let me know any known issue . =20 JDK has fixed Corba error =20 Bug ID: 6553303 Synopsis: Corba application fails w/ org.omg.CORBA.COMM_FAILURE: vmcid: SUN minor code: 203 completed: No =20 anybody know how to test this once we install the package which is compiled with new JDK version. =20 =20 Regards, Rashmi Chidambara Rao. =20 |
From: jerome.jeanjean <jer...@la...> - 2007-11-13 10:16:44
|
Hello everybody, I've read the documentation about openorb.home. As I understand this is set by default to resource:/org/openorb/. This way,= everytime there's a reference to it, it will look into the openorb jar to = find what it needs. My question is simple: how is that variable set to resource:/org/openorb/ b= y default ? I can't find it in any file. Could anyone explain how this works for a beginner ? Thanks. Jerome. Cr=C3=A9ez votre adresse =C3=A9lectronique pr=C3=A9n...@la...=20 1 Go d'espace de stockage, anti-spam et anti-virus int=C3=A9gr=C3=A9s. |
From: <lak...@go...> - 2007-11-07 19:54:44
|
> I have to estimate he cpu and memory usage for the openorb 1.4.0.. please > let me know how to find this on solaris 9 or 10 machine. > > Please mention the command to capture this. To get a rough picture you could use the standard unix commands like top or vmstat. If you neded to drill down more, you can profile cpu and memory usage using standard profilers like yourkit, jprofiler, etc - I guess most of them are supported on solaris as well. If you need to dig really deep, you could use a Solaris tool called DTrace, which was introduced in Solaris 10. This is a command line tool that allows you to take probes on every level of the runing software stack (java code, jvm and kernel activities). Unfortunately I don't have access to a Solaris 10 machine, so I have never been able to use dtrace myself, so for details please read the dtrace docs on sun.com Regards, Lars |
From: <ras...@wi...> - 2007-11-06 06:09:01
|
Hi all, =20 I have to estimate he cpu and memory usage for the openorb 1.4.0.. please let me know how to find this on solaris 9 or 10 machine.=20 Please mention the command to capture this. =20 Thank you in advance. =20 Regards, Rashmi Chidambara Rao. =20 |
From: <ras...@wi...> - 2007-11-06 06:06:18
|
=20 =20 Regards, Rashmi Chidambara Rao. =20 |
From: <lak...@t-...> - 2007-10-15 19:18:58
|
Rashmi, I know that CORBA applications are not exactly easy to debug, but I can't help you much without knowing your code. Like I said in August: The NotFound exception is thrown when a lookup in the NamingService fails. This could be for a variety of reasons: Maybe you misspelt the name in your code? Maybe your server is not even registered in the NamingService when you access it from your client? Maybe your server and your client are talking to different NamingServers? Regards, Lars ras...@wi... wrote: > > Hi All, > > > > > > I am getting the following error when I started the event channels > to send and receive the events .Please let me know why this error is > thrown. > > > > anc0t0jn-unit0(active):/opt/corba/rcscripts> ./testSupplier.sh a 5 > anc0t0jn 2001 > > Testing com.nortel.succession.Application.Supplier a 5 anc0t0jn 2001 > > CP=/opt/corba/jars/utils.jar:/opt/corba/jars/OMGNotification.jar:/opt/corba/jars/SSPFSNotification.jar > > Reading properties from SSPFSNotification.properties > > *org.omg.CosNaming.NamingContextPackage.NotFound: > IDL:omg.org/CosNaming/NamingContext/NotFound:1.0* > > at > org.omg.CosNaming.NamingContextPackage.NotFoundHelper.read(NotFoundHelper.java:72) > > at > org.omg.CosNaming._NamingContextExtStub.resolve(_NamingContextExtStub.java:406) > > at > com.nortel.succession.Platform.Notification.CORBA.AdminPair.lookupSupplierAdmin(AdminPair.java:289) > > at > com.nortel.succession.Platform.Notification.CORBA.StructuredPushSupplier.privateConstructor(StructuredPushSupplier.java:152) > > at > com.nortel.succession.Platform.Notification.CORBA.StructuredPushSupplier.<init>(StructuredPushSupplier.java:113) > > at > com.nortel.succession.Application.Supplier.main(Supplier.java:72) > > [StructruredPushSupplier]privateConstructor( ). Creating > channels......... > > org.omg.CosNaming.NamingContextPackage.NotFound: > IDL:omg.org/CosNaming/NamingContext/NotFound:1.0 > > at > org.omg.CosNaming.NamingContextPackage.NotFoundHelper.read(NotFoundHelper.java:72) > > at > org.omg.CosNaming._NamingContextExtStub.resolve(_NamingContextExtStub.java:406) > > at > com.nortel.succession.Platform.Notification.CORBA.AdminPair.lookupSupplierAdmin(AdminPair.java:289) > > at > com.nortel.succession.Platform.Notification.CORBA.StructuredPushSupplier.privateConstructor(StructuredPushSupplier.java:169) > > at > com.nortel.succession.Platform.Notification.CORBA.StructuredPushSupplier.<init>(StructuredPushSupplier.java:113) > > at > com.nortel.succession.Application.Supplier.main(Supplier.java:72) > > > > > > Regards, > > Rashmi Chidambara Rao. > > > |
From: <ras...@wi...> - 2007-10-15 08:53:47
|
Hi All, =20 =20 I am getting the following error when I started the event channels to send and receive the events .Please let me know why this error is thrown. =20 anc0t0jn-unit0(active):/opt/corba/rcscripts> ./testSupplier.sh a 5 anc0t0jn 2001 Testing com.nortel.succession.Application.Supplier a 5 anc0t0jn 2001 CP=3D/opt/corba/jars/utils.jar:/opt/corba/jars/OMGNotification.jar:/opt/c= o rba/jars/SSPFSNotification.jar Reading properties from SSPFSNotification.properties org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0 at org.omg.CosNaming.NamingContextPackage.NotFoundHelper.read(NotFoundHelpe r.java:72) at org.omg.CosNaming._NamingContextExtStub.resolve(_NamingContextExtStub.ja va:406) at com.nortel.succession.Platform.Notification.CORBA.AdminPair.lookupSuppli erAdmin(AdminPair.java:289) at com.nortel.succession.Platform.Notification.CORBA.StructuredPushSupplier .privateConstructor(StructuredPushSupplier.java:152) at com.nortel.succession.Platform.Notification.CORBA.StructuredPushSupplier .<init>(StructuredPushSupplier.java:113) at com.nortel.succession.Application.Supplier.main(Supplier.java:72) [StructruredPushSupplier]privateConstructor( ). Creating channels.........=20 org.omg.CosNaming.NamingContextPackage.NotFound: IDL:omg.org/CosNaming/NamingContext/NotFound:1.0 at org.omg.CosNaming.NamingContextPackage.NotFoundHelper.read(NotFoundHelpe r.java:72) at org.omg.CosNaming._NamingContextExtStub.resolve(_NamingContextExtStub.ja va:406) at com.nortel.succession.Platform.Notification.CORBA.AdminPair.lookupSuppli erAdmin(AdminPair.java:289) at com.nortel.succession.Platform.Notification.CORBA.StructuredPushSupplier .privateConstructor(StructuredPushSupplier.java:169) at com.nortel.succession.Platform.Notification.CORBA.StructuredPushSupplier .<init>(StructuredPushSupplier.java:113) at com.nortel.succession.Application.Supplier.main(Supplier.java:72) =20 =20 Regards, Rashmi Chidambara Rao. =20 |
From: Henning R. <hr...@ne...> - 2007-10-03 10:33:51
|
Hello all, I'm trying to extract a user defined Any type. There are only two kind of types, NotUsed and StringInfo. The only type passed around is the StringInfo which is pushed by an omniORB eventservice. If I just extract the StringInfo using StringInfoHelper, everything works fine. If I try to extra the Any (containing a StringInfo type) into a NotUsed type then the program throws an exception I cannot catch apparantly, and the eventservice disconnects me. If I try to determine the type of the Any using type() then equal() returns false for both types (even though I know the type is StringInfo). Does anyone have a suggestion how to do this? The code for my push operation is listed below and is made after an example from the iona website. Might this be because I'm trying to interact with omniEvents? Any suggestions are much appreciated, Regards Henning Source code: IDL: struct StringInfo { string who; string what; short id; }; struct NotUsed { string s1; short s2; short s3; string s4; }; Java: public void push(Any data) { StringInfo msg; NotUsed nu; try { if (data.type().equal(StringInfoHelper.type())) { msg = StringInfoHelper.extract(data); System.out.println("StringInfo"); } else if (data.type().equal(NotUsedHelper.type())) { nu = NotUsedHelper.extract(data); System.out.println("NotUsed"); } else { System.out.println("Unknown"); } } catch (BAD_OPERATION e) { System.out.println("Bad op"); } catch (Exception e) { System.out.println("Error"); } } |
From: anish p. <ani...@gm...> - 2007-09-19 04:43:33
|
Hi > > >>We are getting many corba related COMM_FAILURE error from > application running on it. Corba goes down un knowingly. > > >>We don't know why corba went down. Please provide any inputs how to get > these information. > >>v Is there any debugging tool available. > > Turn on -ORBDebugLevel 10 when you start your app > Regards, Anish |
From: Mark J. <mar...@ti...> - 2007-09-18 13:24:06
|
Hello Rashmi, Generally speaking COMM_FAILURE exceptions stem from networking problems. One tool you may wish to try would be ethereal (http://www.ethereal.com/), it has protocol support for GIOP. As far as trace or debug logging is concerned, there are examples of how to configure that in http://openorb.cvs.sourceforge.net/openorb/OpenORB/src/config/OpenORB.xml?revision=1.5&view=markup Hope this helps you out. ras...@wi... wrote: > > Hi All, > > > > We are getting many corba related COMM_FAILURE error from > application running on it. Corba goes down un knowingly. > > We don’t know why corba went down. Please provide any inputs how to > get these information. > > v Is there any debugging tool available. > > v Is there any logging mechanism for this. > > v Can we have logs only for corba and it should be separated from > server and client application. > > v Can find out before hand COMM failure occurance. > > v Is there any possible way to find and categorize server side , > client side and corba side exceptions. > > > > Please provide me some pointers and inputs. > > > > Thank you. > > > > Regards, > > Rashmi Chidambara Rao. > > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Microsoft > Defy all challenges. Microsoft(R) Visual Studio 2005. > http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ > ------------------------------------------------------------------------ > > _______________________________________________ > openorb-users mailing list > ope...@li... > https://lists.sourceforge.net/lists/listinfo/openorb-users > -- Mark Jentz Email: mar...@ti... Work: +46 480 44 56 82 Mobile: +46 70 609 96 84 |