blob: d9dc70f6a40d08af12e2a558918ba2ead1411601 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
diff --git src/libcmis/ws-soap.cxx src/libcmis/ws-soap.cxx
index e8efd67..decb79a 100644
--- src/libcmis/ws-soap.cxx
+++ src/libcmis/ws-soap.cxx
@@ -279,7 +279,7 @@ string SoapRequest::createEnvelope( string& username, string& password )
boost::posix_time::ptime expires( created );
expires = expires + boost::gregorian::days( 1 );
string createdStr = libcmis::writeDateTime( created );
- xmlChar* expiresStr = BAD_CAST( libcmis::writeDateTime( expires ).c_str( ) );
+ string expiresStr = libcmis::writeDateTime( expires );
xmlTextWriterStartElement( writer, BAD_CAST( "S:Envelope" ) );
xmlTextWriterWriteAttribute( writer, BAD_CAST( "xmlns:S" ), BAD_CAST( NS_SOAP_ENV_URL ) );
@@ -296,7 +296,7 @@ string SoapRequest::createEnvelope( string& username, string& password )
xmlTextWriterWriteRaw( writer, BAD_CAST( createdStr.c_str( ) ) );
xmlTextWriterEndElement( writer ); // End of Created
xmlTextWriterStartElement( writer, BAD_CAST( "wsse:Expires" ) );
- xmlTextWriterWriteRaw( writer, expiresStr );
+ xmlTextWriterWriteRaw( writer, BAD_CAST( expiresStr.c_str() ) );
xmlTextWriterEndElement( writer ); // End of Expires
xmlTextWriterEndElement( writer ); // End of Timestamp
|