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

Diff for /pegasus/src/Pegasus/Client/CIMOperationRequestEncoder.cpp between version 1.15 and 1.16

version 1.15, 2002/10/23 19:55:33 version 1.16, 2002/11/14 16:50:33
Line 574 
Line 574 
     XmlWriter::appendClassNameIParameter(     XmlWriter::appendClassNameIParameter(
         params, "ResultClass", message->resultClass);         params, "ResultClass", message->resultClass);
  
       //
       //  The Client API has no way to represent a NULL role;
       //  An empty string is interpreted as NULL
       //
       if (message->role != String::EMPTY)
       {
     XmlWriter::appendStringIParameter(     XmlWriter::appendStringIParameter(
         params, "Role", message->role);         params, "Role", message->role);
       }
  
     Array<Sint8> buffer = XmlWriter::formatSimpleIMethodReqMessage(_hostName,     Array<Sint8> buffer = XmlWriter::formatSimpleIMethodReqMessage(_hostName,
         message->nameSpace, CIMName ("ReferenceNames"), message->messageId,         message->nameSpace, CIMName ("ReferenceNames"), message->messageId,
Line 596 
Line 603 
     XmlWriter::appendClassNameIParameter(     XmlWriter::appendClassNameIParameter(
         params, "ResultClass", message->resultClass);         params, "ResultClass", message->resultClass);
  
       //
       //  The Client API has no way to represent a NULL role;
       //  An empty string is interpreted as NULL
       //
       if (message->role != String::EMPTY)
       {
     XmlWriter::appendStringIParameter(     XmlWriter::appendStringIParameter(
         params, "Role", message->role);         params, "Role", message->role);
       }
  
     if (message->includeQualifiers != false)     if (message->includeQualifiers != false)
         XmlWriter::appendBooleanIParameter(params, "IncludeQualifiers", true);         XmlWriter::appendBooleanIParameter(params, "IncludeQualifiers", true);
Line 631 
Line 645 
     XmlWriter::appendClassNameIParameter(     XmlWriter::appendClassNameIParameter(
         params, "ResultClass", message->resultClass);         params, "ResultClass", message->resultClass);
  
       //
       //  The Client API has no way to represent a NULL role;
       //  An empty string is interpreted as NULL
       //
       if (message->role != String::EMPTY)
       {
     XmlWriter::appendStringIParameter(     XmlWriter::appendStringIParameter(
         params, "Role", message->role);         params, "Role", message->role);
       }
  
       //
       //  The Client API has no way to represent a NULL resultRole;
       //  An empty string is interpreted as NULL
       //
       if (message->resultRole != String::EMPTY)
       {
     XmlWriter::appendStringIParameter(     XmlWriter::appendStringIParameter(
         params, "ResultRole", message->resultRole);         params, "ResultRole", message->resultRole);
       }
  
     Array<Sint8> buffer = XmlWriter::formatSimpleIMethodReqMessage(_hostName,     Array<Sint8> buffer = XmlWriter::formatSimpleIMethodReqMessage(_hostName,
         message->nameSpace, CIMName ("AssociatorNames"), message->messageId,         message->nameSpace, CIMName ("AssociatorNames"), message->messageId,
Line 659 
Line 687 
     XmlWriter::appendClassNameIParameter(     XmlWriter::appendClassNameIParameter(
         params, "ResultClass", message->resultClass);         params, "ResultClass", message->resultClass);
  
       //
       //  The Client API has no way to represent a NULL role;
       //  An empty string is interpreted as NULL
       //
       if (message->role != String::EMPTY)
       {
     XmlWriter::appendStringIParameter(     XmlWriter::appendStringIParameter(
         params, "Role", message->role);         params, "Role", message->role);
       }
  
       //
       //  The Client API has no way to represent a NULL resultRole;
       //  An empty string is interpreted as NULL
       //
       if (message->resultRole != String::EMPTY)
       {
     XmlWriter::appendStringIParameter(     XmlWriter::appendStringIParameter(
         params, "ResultRole", message->resultRole);         params, "ResultRole", message->resultRole);
       }
  
     if (message->includeQualifiers != false)     if (message->includeQualifiers != false)
         XmlWriter::appendBooleanIParameter(params, "IncludeQualifiers", true);         XmlWriter::appendBooleanIParameter(params, "IncludeQualifiers", true);


Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2