(file) Return to CIMExportClient.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / ExportClient

Diff for /pegasus/src/Pegasus/ExportClient/CIMExportClient.cpp between version 1.15.4.1 and 1.15.4.2

version 1.15.4.1, 2003/07/29 15:08:29 version 1.15.4.2, 2003/08/13 19:39:51
Line 44 
Line 44 
 #include "CIMExportResponseDecoder.h" #include "CIMExportResponseDecoder.h"
 #include "CIMExportClient.h" #include "CIMExportClient.h"
  
   // l10n
   #include <Pegasus/Common/MessageLoader.h>
   
 #include <iostream> #include <iostream>
  
 PEGASUS_USING_STD; PEGASUS_USING_STD;
Line 326 
Line 329 
                 CIMResponseMessage* cimResponse = (CIMResponseMessage*)response;                 CIMResponseMessage* cimResponse = (CIMResponseMessage*)response;
                 if (cimResponse->messageId != messageId)                 if (cimResponse->messageId != messageId)
                 {                 {
                     CIMClientResponseException responseException(  
                         String("Mismatched response message ID:  Got \"") +                    // l10n
                         cimResponse->messageId + "\", expected \"" +  
                         messageId + "\".");                    // CIMClientResponseException responseException(
                     //   String("Mismatched response message ID:  Got \"") +
                     //    cimResponse->messageId + "\", expected \"" +
                     //    messageId + "\".");
   
   
                     MessageLoaderParms mlParms("ExportClient.CIMExportClient.MISMATCHED_RESPONSE_ID",
                                                "Mismatched response message ID:  Got \"$0\", expected \"$1\".", cimResponse->messageId, messageId);
                     String mlString(MessageLoader::getMessage(mlParms));
   
                     CIMClientResponseException responseException(mlString);
   
                     delete response;                     delete response;
                     throw responseException;                     throw responseException;
                 }                 }
Line 345 
Line 359 
             }             }
             else             else
             {             {
                 CIMClientResponseException responseException(  
                 // l10n
   
   
                 // CIMClientResponseException responseException(
                 //   "Mismatched response message type.");
   
   
                 MessageLoaderParms mlParms("ExportClient.CIMExportClient.MISMATCHED_RESPONSE",
                     "Mismatched response message type.");                     "Mismatched response message type.");
                 String mlString(MessageLoader::getMessage(mlParms));
   
                 CIMClientResponseException responseException(mlString);
   
                 delete response;                 delete response;
                 throw responseException;                 throw responseException;
             }             }


Legend:
Removed from v.1.15.4.1  
changed lines
  Added in v.1.15.4.2

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2