Ignore:
Timestamp:
2001-03-14T04:15:23+13:00 (23 years ago)
Author:
cs025
Message:

Improvements to configure scripts in their support of various MICO
environment considerations, particularly when MICO is on the system
paths.

Fixed CORBA version of ping to correspond with parameters etc. of the
native form.

Finally, improved PING action to be more than a simple call to
the HASCOLLECTION action in the null protocol.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/recpt/corbaproto.mpp

    r2122 r2173  
    389389
    390390  // execute the corba transaction
    391   lclient->configure(corbaKey, corbaCfgline, error); 
    392 
    393  
     391  lclient->configure(corbaKey, corbaCfgline, error);   
    394392
    395393  if (key=="gsdlhome")
     
    541539void corbaproto::ping (const text_t &collection, bool &wassuccess,
    542540              comerror_t &err, ostream &/*logout*/) {
    543   //  cout << "Corbaproto::Ping" << endl;
     541  // cout << "Corbaproto::Ping" << endl;
    544542
    545543  corbatext_t corbaCollect;
    546544  corbaComError corbaError;
    547   bool success;
     545  CORBA::Boolean success;
    548546
    549547  // get the corba client reference
     
    555553
    556554  // execute the corba transaction
    557   success = lclient->ping(corbaCollect, corbaError);
     555  lclient->ping(corbaCollect, success, corbaError);
    558556 
    559557  // convert the response back to normal form
Note: See TracChangeset for help on using the changeset viewer.