Search the web
Sign In
New User? Sign Up
tao-users
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 22889 - 22918 of 23018   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
22889
Thanks a lot. I will add the details you mentioned in my next post. I am using OCI distribution of ACE+TAO 1.5a for windows at the moment. Regards Hakan ... ...
Barisik, Hakan
Hakan.Barisik@...
Send Email
Oct 3, 2007
3:42 am
22890
Hello Hakan, ... Since you are using OCI's distribution, please send your PRF to support@.... We (OCI) are happy to address simple issues for users...
Steve Totten
totten_s@...
Send Email
Oct 3, 2007
4:34 am
22891
Hi, Do you have also set LD_LIBRARY_PATH? You seem to lack a generated file, try to do a "make idl_stubs" and then a "make" Regards, Johnny Willemsen Remedy IT...
Johnny Willemsen
jwillemsen@...
Send Email
Oct 3, 2007
7:33 pm
22892
Hi, ... There is no limit, try to run the ACE regression test Enum_Interfaces_Test and see if that gives the correct output. Regards, Johnny Willemsen Remedy...
Johnny Willemsen
jwillemsen@...
Send Email
Oct 7, 2007
6:14 pm
22893
CIAO VERSION: 0.5.9 TAO VERSION : 1.5.9 ACE VERSION : 5.5.9 HOST MACHINE and OPERATING SYSTEM: If on Windows based OS's, which version of WINSOCK do you use?:...
santos .
sanntosn@...
Send Email
Oct 8, 2007
5:45 pm
22894
... Hash: SHA1 Hi, My AMI client stub compilation fails with the following error : ********** ...
greg
ustrel@...
Send Email
Oct 8, 2007
11:12 pm
22895
i, ... To ensure that we have proper version/platform/compiler information, please make sure you fill out the appropriate problem report form (PRF), which is...
Douglas C. Schmidt
schmidt@...
Send Email
Oct 8, 2007
11:53 pm
22896
Hi Folks, PrismTech has begun a series of webinars on DDS and OpenSplice that may be of interest to the ACE+TAO community. Please see ...
Douglas C. Schmidt
schmidt@...
Send Email
Oct 11, 2007
2:06 am
22897
We've been loading ORB from svc.conf file, similar to example $TAO_ROOT/tests/DLL_ORB. I assume that you could load 2 ORBs from the svc.conf file, and then you...
Milan Cvetkovic
milan.cvetkovic@...
Send Email
Oct 11, 2007
10:38 pm
22898
ACE VERSION: 5.5.6 HOST MACHINE and OPERATING SYSTEM: WINDOWS XP SP2 VSS2005 THE $ACE_ROOT/ace/config.h FILE [if you use a link to a platform- specific file,...
roland
rolandsun@...
Send Email
Oct 12, 2007
8:27 am
22899
Hi, Do you have build TAO/orbsvcs/orbsvcs? This is needed for the examples. Regards, Johnny Willemsen Remedy IT Postbus 101 2650 AC Berkel en Rodenrijs The...
Johnny Willemsen
jwillemsen@...
Send Email
Oct 12, 2007
12:35 pm
22900
Hi Folks, At various points people have noted the lack of a forum for discussing issues and questions related to the OMG's Data Distribution Service (DDS). To...
Douglas C. Schmidt
schmidt@...
Send Email
Oct 12, 2007
12:59 pm
22901
HI, Looks the event service can't connect to 192.168.1.2:1116. Check your network settings. Regards, Johnny Willemsen Remedy IT Postbus 101 2650 AC Berkel en...
Johnny Willemsen
jwillemsen@...
Send Email
Oct 12, 2007
1:28 pm
22902
Hi, You will need to make some server in your client and you can then use _validate_connection() as ping method. Regards, Johnny Willemsen Remedy IT Postbus...
Johnny Willemsen
jwillemsen@...
Send Email
Oct 12, 2007
1:29 pm
22903
Hello Roland, ... Thanks for using the PRF! ... How have you defined class Thermometer_impl? Be sure it also uses *virtual* inheritance from its base...
Steve Totten
totten_s@...
Send Email
Oct 12, 2007
2:09 pm
22904
... OMG also has a DDS Portal at http://portals.omg.org/dds -- this is a Wiki that anyone can edit (including to ask questions, etc.). I assume the...
Adam Mitz
mitza@...
Send Email
Oct 12, 2007
2:29 pm
22905
... Is _validate_connection() any faster/better than an IDL defined ping() method? Best regards, jules ... _______________________________________________ ...
Jules Colding
colding@...
Send Email
Oct 12, 2007
5:22 pm
22906
Hi Jules, ... It's not likely to be faster, but it might be less obtrusive and more standard/consistent than adding a special ping() operation. Thanks, Doug ...
Douglas C. Schmidt
schmidt@...
Send Email
Oct 12, 2007
5:53 pm
22907
... OK, thank you for the clarification. Have a nice weekend, jules ... _______________________________________________ tao-users mailing list ...
Jules Colding
colding@...
Send Email
Oct 12, 2007
5:59 pm
22908
Hi Santos, ACE_Time_Value start = ACE_OS::gettimeofday(); // do something ACE_Time_Value end = ACE_OS::gettimeofday(); ACE_Time_Value delta = end -start; ...
Scott Harris
harris_s@...
Send Email
Oct 12, 2007
10:54 pm
22909
Hi, Thanks for using the PRF form. Try using valgrind to detect the cause of the leaks. If you have patches, store them in bugzilla (see ...
Johnny Willemsen
jwillemsen@...
Send Email
Oct 13, 2007
4:45 am
22910
Hi, ... Using _validate_connection() will result in a smaller generated/user code then add a manual ping. Johnny ...
Johnny Willemsen
jwillemsen@...
Send Email
Oct 13, 2007
4:47 am
22911
Hi Venkat, Thanks for using the PRF. ... It would be great if you could please send us patches that fix the problems. You might also want to add the patches...
Douglas C. Schmidt
schmidt@...
Send Email
Oct 13, 2007
4:41 pm
22912
for simplify the problem ,I define the idl like following: /*****/ interface task{ void a(); }; interface taskd{ void b(); }; /******/ in the main.cpp i define...
rolandsun sun
rolandsun@...
Send Email
Oct 14, 2007
6:44 am
22913
Roland, Your problem is that you're inheriting from two different POA_ classes, and the compiler can't figure out which of implementation of ::is_a() (and a ...
Matthew Gillen
mgillen@...
Send Email
Oct 14, 2007
2:54 pm
22914
Thank you for your reply and great suggestions. The second otption seems better since I want to publish the servant to NamingService. the new design is ...
roland
rolandsun@...
Send Email
Oct 15, 2007
3:56 am
22915
ACE_VERSION: 5.5 TAO_VERSION: 1.5 HOST SYSTEM: $ uname -a SunOS ipms-x4200-2 5.10 Generic_118855-33 i86pc i386 i86pc Description: I my CORBA server i have...
Vikram Karandikar
softking@...
Send Email
Oct 15, 2007
7:32 am
22916
This is how i am registering signal handler // Blocking signals sigset_t blockedSig; sigemptyset (&blockedSig); sigaddset (&blockedSig, SIGINT | SIGQUIT |...
Vikram Karandikar
softking@...
Send Email
Oct 15, 2007
7:34 am
22917
Hi Vikram, Thanks for using the PRF. ... ACE+TAO x.5 is old. Please upgrade to ACE+TAO+CIAO x.6.1 (i.e., ACE 5.6.1, TAO 1.6.1, and CIAO 0.6.1), which you can...
Douglas C. Schmidt
schmidt@...
Send Email
Oct 15, 2007
11:57 am
22918
i am sorry. my version is ACE_VERSION: 5.5.10 TAO_VERSION: 1.5.10 ... -- "There is no substitute for intelligence, experience, common sense, and good taste." -...
Vikram Karandikar
softking@...
Send Email
Oct 15, 2007
12:42 pm
Messages 22889 - 22918 of 23018   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help