|
From: Viktor M. <mih...@us...> - 2005-05-12 09:05:42
|
Update of /cvsroot/sblim/wbemcli In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2428 Modified Files: ChangeLog CimCurl.cpp NEWS configure.ac Log Message: Bug 1200421: suppress Accept header to allow interoperation with OW 3.1.0. Index: NEWS =================================================================== RCS file: /cvsroot/sblim/wbemcli/NEWS,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- NEWS 6 Dec 2004 17:21:19 -0000 1.2 +++ NEWS 12 May 2005 09:05:17 -0000 1.3 @@ -1,5 +1,15 @@ SBLIM WBEMCLI NEWS +Changes in Version 1.4.10 +========================= +Bugs: +- 1200421 Fix for Interoperability Problem with OpenWBEM. + +Changes in Version 1.4.9 +======================== +Bugs: +- Fix for slowdown and instabilities in conjunction with sfcb. + Version 1.4.8 - 12/06/2004 (Philip K. Warren) Support for libcurl and https URLs added. Index: configure.ac =================================================================== RCS file: /cvsroot/sblim/wbemcli/configure.ac,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- configure.ac 2 May 2005 14:06:57 -0000 1.8 +++ configure.ac 12 May 2005 09:05:17 -0000 1.9 @@ -1,7 +1,7 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -AC_INIT(SBLIM WBEMCLI, 1.4.9, sbl...@ww...) +AC_INIT(SBLIM WBEMCLI, 1.4.10, sbl...@li...) AC_CONFIG_SRCDIR([CimXml.cpp]) AC_CANONICAL_HOST Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/wbemcli/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- ChangeLog 2 May 2005 14:06:52 -0000 1.2 +++ ChangeLog 12 May 2005 09:05:17 -0000 1.3 @@ -1,3 +1,9 @@ +2005-05-12 <mih...@dy...> + + * CimCurl.cpp: + Bug 1200421: Suppress Accept header generation as OpenWBEM + 3.1.0 doesn't like it. + 2005-05-02 <mih...@dy...> * CimCurl.cpp: Suppress Expected Header as this slows down the Index: CimCurl.cpp =================================================================== RCS file: /cvsroot/sblim/wbemcli/CimCurl.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- CimCurl.cpp 2 May 2005 14:06:53 -0000 1.4 +++ CimCurl.cpp 12 May 2005 09:05:17 -0000 1.5 @@ -23,10 +23,11 @@ // These are the constant headers added to all requests static const char *headers[] = { - "Content-type: application/xml; charset=\"utf-8\"", + "Content-Type: application/xml; charset=\"utf-8\"", "Connection: Keep-Alive, TE", "CIMProtocolVersion: 1.0", "CIMOperation: MethodCall", + "Accept:", "Expect:" }; #define NUM_HEADERS ((sizeof(headers))/(sizeof(headers[0]))) |