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

Diff for /pegasus/src/Pegasus/WsmServer/WsmWriter.cpp between version 1.10.4.1 and 1.10.4.2

version 1.10.4.1, 2013/06/03 22:36:43 version 1.10.4.2, 2013/07/20 18:33:00
Line 585 
Line 585 
     const String& action,     const String& action,
     const String& messageId,     const String& messageId,
     const String& relatesTo,     const String& relatesTo,
     const String& toAddress)      const String& toAddress,
       const String& replyTo,
       const Boolean& ackRequired)
 { {
     // Add <wsa:To> entry     // Add <wsa:To> entry
     appendStartTag(out, WsmNamespaces::WS_ADDRESSING, STRLIT("To"));     appendStartTag(out, WsmNamespaces::WS_ADDRESSING, STRLIT("To"));
Line 615 
Line 617 
         appendTagValue(         appendTagValue(
             out, WsmNamespaces::WS_ADDRESSING, STRLIT("RelatesTo"), relatesTo);             out, WsmNamespaces::WS_ADDRESSING, STRLIT("RelatesTo"), relatesTo);
     }     }
       if(replyTo.size())
       {
           appendStartTag(out, WsmNamespaces::WS_ADDRESSING, STRLIT("ReplyTo"));
           appendTagValue(
               out,
               WsmNamespaces::WS_ADDRESSING,
               STRLIT("Address"),
               replyTo);
           appendEndTag(out, WsmNamespaces::WS_ADDRESSING, STRLIT("ReplyTo"));
       }
       if(ackRequired)
       {
           appendTagValue(out, WsmNamespaces::WS_MAN, STRLIT("AckRequested"), "");
       }
   
 } }
  
 void WsmWriter::appendInvokeOutputElement( void WsmWriter::appendInvokeOutputElement(


Legend:
Removed from v.1.10.4.1  
changed lines
  Added in v.1.10.4.2

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2