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

Diff for /pegasus/src/Pegasus/Common/XmlWriter.cpp between version 1.39 and 1.40

version 1.39, 2002/03/28 17:58:30 version 1.40, 2002/04/05 01:21:10
Line 471 
Line 471 
  
 //------------------------------------------------------------------------------ //------------------------------------------------------------------------------
 // //
   // appendHttpErrorResponseHeader()
   //
   //     Build HTTP error response header.
   //
   //     Returns error response message in the following format:
   //
   //        HTTP/1.1 400 Bad Request  (using specified status code)
   //        CIMError: <error type>    (only if specified by caller)
   //        Content-Length: 123       (using the given content length, if not 0)
   //
   //------------------------------------------------------------------------------
   
   void XmlWriter::appendHttpErrorResponseHeader(
       Array<Sint8>& out,
       const String& status,
       const String& cimError,
       Uint32 contentLength)
   {
       out << "HTTP/1.1 " << status << "\r\n";
       if (cimError != String::EMPTY)
       {
           out << "CIMError: " << cimError << "\r\n";
       }
       if (contentLength != 0)
       {
           out << "Content-Length: " << contentLength << "\r\n";
       }
       out << "\r\n";
   }
   
   //------------------------------------------------------------------------------
   //
 // appendUnauthorizedResponseHeader() // appendUnauthorizedResponseHeader()
 // //
 //     Build HTTP authentication response header for unauthorized requests. //     Build HTTP authentication response header for unauthorized requests.
Line 492 
Line 524 
     Array<Sint8>& out,     Array<Sint8>& out,
     const String& content)     const String& content)
 { {
     out << "HTTP/1.1 401 Unauthorized\r\n";      out << "HTTP/1.1 " HTTP_STATUS_UNAUTHORIZED "\r\n";
     out << content << "\r\n";     out << content << "\r\n";
     out << "\r\n";     out << "\r\n";
  
Line 508 
Line 540 
  
 //------------------------------------------------------------------------------ //------------------------------------------------------------------------------
 // //
 // appendBadRequestResponseHeader()  
 //  
 //     Build HTTP response header for bad requests.  
 //  
 //     Returns Bad Request message in the following format:  
 //  
 //        HTTP/1.1 400 Bad Request  
 //        CIMError: <error text>    (only if specified by caller)  
 //        <HTML><HEAD>  
 //        <TITLE>400 Bad Request</TITLE>  
 //        </HEAD><BODY BGCOLOR="#99cc99">  
 //        <H2>TEST400 Bad Request</H2>  
 //        <HR>  
 //        </BODY></HTML>  
 //  
 //------------------------------------------------------------------------------  
   
 void XmlWriter::appendBadRequestResponseHeader(  
     Array<Sint8>& out,  
     const String& cimError)  
 {  
     out << "HTTP/1.1 400 Bad Request\r\n";  
     if (cimError != String::EMPTY)  
     {  
         out << "CIMError: " << cimError << "\r\n";  
     }  
     out << "\r\n";  
 }  
   
 //------------------------------------------------------------------------------  
 //  
 // appendNotImplementedResponseHeader()  
 //  
 //     Build HTTP 501 Not Implemented response header  
 //  
 //     Returns Not Implemented message in the following format:  
 //  
 //        HTTP/1.1 501 Not Implemented  
 //        <HTML><HEAD>  
 //        <TITLE>501 Not Implemented</TITLE>  
 //        CIMError: <error text>    (only if specified by caller)  
 //        </HEAD><BODY BGCOLOR="#99cc99">  
 //        <H2>TEST501 Not Implemented</H2>  
 //        <HR>  
 //        </BODY></HTML>  
 //  
 //------------------------------------------------------------------------------  
   
 void XmlWriter::appendNotImplementedResponseHeader(  
     Array<Sint8>& out,  
     const String& cimError)  
 {  
     out << "HTTP/1.1 501 Not Implemented\r\n";  
     if (cimError != String::EMPTY)  
     {  
         out << "CIMError: " << cimError << "\r\n";  
     }  
     out << "\r\n";  
 }  
   
 //------------------------------------------------------------------------------  
 //  
 // _appendMessageElementBegin() // _appendMessageElementBegin()
 // _appendMessageElementEnd() // _appendMessageElementEnd()
 // //
Line 1056 
Line 1026 
  
 //------------------------------------------------------------------------------ //------------------------------------------------------------------------------
 // //
   // XmlWriter::formatHttpErrorRspMessage()
   //
   //------------------------------------------------------------------------------
   
   Array<Sint8> XmlWriter::formatHttpErrorRspMessage(
       const String& status,
       const String& cimError,
       const String& messageBody)
   {
       Array<Sint8> out;
       Array<Sint8> tmp;
   
       if (messageBody != String::EMPTY)
       {
           out << messageBody << "\n";
       }
       appendHttpErrorResponseHeader(tmp, status, cimError, out.size());
       tmp << out;
   
       return tmp;
   }
   
   //------------------------------------------------------------------------------
   //
 // XmlWriter::formatSimpleMethodReqMessage() // XmlWriter::formatSimpleMethodReqMessage()
 // //
 //------------------------------------------------------------------------------ //------------------------------------------------------------------------------


Legend:
Removed from v.1.39  
changed lines
  Added in v.1.40

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2