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

Diff for /pegasus/src/Pegasus/ExportServer/CIMExportRequestDecoder.cpp between version 1.49 and 1.50

version 1.49, 2004/10/17 20:39:52 version 1.50, 2004/11/16 18:16:47
Line 457 
Line 457 
    XmlEntry entry;    XmlEntry entry;
    String messageId;    String messageId;
    const char* cimExportMethodName = "";    const char* cimExportMethodName = "";
    Message* request;     AutoPtr<Message> request;
  
    try    try
    {    {
Line 662 
Line 662 
  
          if (System::strcasecmp(cimExportMethodName, "ExportIndication") == 0)          if (System::strcasecmp(cimExportMethodName, "ExportIndication") == 0)
          {          {
             request = decodeExportIndicationRequest(queueId, parser, messageId, requestUri);              request.reset(decodeExportIndicationRequest(queueId, parser, messageId, requestUri));
          }          }
          else          else
          {          {
Line 759 
Line 759 
         // by the export client, ignore Accept-Language in the export request.         // by the export client, ignore Accept-Language in the export request.
         // This will cause any export error response message to be sent in the         // This will cause any export error response message to be sent in the
         // default language.         // default language.
         CIMMessage * cimmsg = dynamic_cast<CIMMessage *>(request);          CIMMessage * cimmsg = dynamic_cast<CIMMessage *>(request.get());
         if (cimmsg != NULL)         if (cimmsg != NULL)
         {         {
                 cimmsg->operationContext.insert(IdentityContainer(userName));                 cimmsg->operationContext.insert(IdentityContainer(userName));
Line 772 
Line 772 
         }         }
 // l10n end // l10n end
  
    _outputQueue->enqueue(request);     _outputQueue->enqueue(request.release());
 } }
  
 CIMExportIndicationRequestMessage* CIMExportRequestDecoder::decodeExportIndicationRequest( CIMExportIndicationRequestMessage* CIMExportRequestDecoder::decodeExportIndicationRequest(


Legend:
Removed from v.1.49  
changed lines
  Added in v.1.50

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2