Commit affad0a3 authored by Carlo Migoni's avatar Carlo Migoni
Browse files

Roach component

parent cbe3ea70
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -125,7 +125,12 @@ module Backends {
 		 * @param configuration this string must contain the sequence of character that identifies the configuration that must be loaded. If the sequence is not
 		 *               known an excpetion is thrown
		 */

		void initialize(in string configuration) raises (ComponentErrors::ComponentErrorsEx,BackendsErrors::BackendsErrorsEx);

		void getConfiguration(out string configuration);

		void getCommProtVersion(out string version);
	};
	
};
+1 −1
Original line number Diff line number Diff line
@@ -1456,7 +1456,7 @@ int CCommandLine::getCommProtVersion(char* version)

	if ((res=sendBuffer(sBuff,len))==SUCCESS) {
		res=receiveBuffer(rBuff,RECBUFFERSIZE);
		strcpy (version,rBuff);
		strcpy (version,(char*)rBuff);
	}
	if (res>0) { // operation was ok.
		//if (!CProtocol::status(rBuff)) {
+1 −1
Original line number Diff line number Diff line
@@ -784,7 +784,7 @@ void RoachImpl::getConfiguration (CORBA::String_out configuration) throw (CORBA:

void RoachImpl::getCommProtVersion (CORBA::String_out version) throw (CORBA::SystemException)
{
	AUTO_TRACE("RoachImpl::setIntegration()");
	AUTO_TRACE("RoachImpl::getCommProtVersion()");
	CSecAreaResourceWrapper<CCommandLine> line=m_commandLine->Get();
	try {
		line->getCommProtVersion(version);