<feed xmlns='http://www.w3.org/2005/Atom'>
<title>wsmancli.git/src, branch v2.2.7.1</title>
<subtitle>A fork of wsmancli with some iDRAC specific improvements and random fixes.</subtitle>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/'/>
<entry>
<title>Adapt to reduced libu exposure in openwsman public api</title>
<updated>2011-09-14T19:06:29+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2011-09-14T19:06:29+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=541b4c333bc94841df0e8dcb4d0ef61b4c5e8c9d'/>
<id>541b4c333bc94841df0e8dcb4d0ef61b4c5e8c9d</id>
<content type='text'>
Add a couple of #include "u/libu.h"
See commit 7d91f671 of openwsman
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a couple of #include "u/libu.h"
See commit 7d91f671 of openwsman
</pre>
</div>
</content>
</entry>
<entry>
<title>wsmancli allow debugging of invalid response XML</title>
<updated>2011-09-08T07:05:16+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2011-09-08T07:05:16+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=69ddc10b31d158e5ceeab9d2e0fc78b9b1a4c244'/>
<id>69ddc10b31d158e5ceeab9d2e0fc78b9b1a4c244</id>
<content type='text'>
sing wsmancli, when the response XML is invalid (such as due to
invalid characters) an error is displayed with only a partial view of
the XML and no other information that could tell us where exactly the
problem is.

In debug mode (using -d option), it would be useful if the tool could
dump the raw XML for further analysis before it could be interpreted
by libxml functions.

Patch by Chris Poblete
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
sing wsmancli, when the response XML is invalid (such as due to
invalid characters) an error is displayed with only a partial view of
the XML and no other information that could tell us where exactly the
problem is.

In debug mode (using -d option), it would be useful if the tool could
dump the raw XML for further analysis before it could be interpreted
by libxml functions.

Patch by Chris Poblete
</pre>
</div>
</content>
</entry>
<entry>
<title>Use https (port 5986) when cainfo is set.</title>
<updated>2011-06-10T10:01:59+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2011-06-10T10:01:59+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=503c6951b881b4d10704136dfd57174d5f6d4c59'/>
<id>503c6951b881b4d10704136dfd57174d5f6d4c59</id>
<content type='text'>
This fixes the default port setting to match wsmc_create() call.

(upstream issue 3257661, Zoltan Micskei)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes the default port setting to match wsmc_create() call.

(upstream issue 3257661, Zoltan Micskei)
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix segfault in wsmancli</title>
<updated>2011-04-20T10:19:00+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2011-04-20T10:19:00+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=cd8e5976e05ff2f8588eb3e92bd0ad2308d03183'/>
<id>cd8e5976e05ff2f8588eb3e92bd0ad2308d03183</id>
<content type='text'>
Using wsmancli 2.2.5, we also got a segmentation fault.

Analysis of the code found that output_file is NULL and is being used.
This is occurring when there are multiple instances returned and pull
operation is done and output file is not defined.

Patch by Chris Poblete
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Using wsmancli 2.2.5, we also got a segmentation fault.

Analysis of the code found that output_file is NULL and is being used.
This is occurring when there are multiple instances returned and pull
operation is done and output file is not defined.

Patch by Chris Poblete
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix integral parameter handling on ppc and s390x</title>
<updated>2011-03-16T11:50:20+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2011-03-16T11:50:20+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=4c763832ecb9652b92c942bdd9657b0e88ba902f'/>
<id>4c763832ecb9652b92c942bdd9657b0e88ba902f</id>
<content type='text'>
From: Kamil Dudka &lt;kdudka@redhat.com&gt;

wsman client doesn't work correctly on some architectures (ppc, s390x).
It ignores the given port number as well as all integral parameters.

The integer parsing function does not return the value but passes it
by writing through a pointer, assuming long int target.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: Kamil Dudka &lt;kdudka@redhat.com&gt;

wsman client doesn't work correctly on some architectures (ppc, s390x).
It ignores the given port number as well as all integral parameters.

The integer parsing function does not return the value but passes it
by writing through a pointer, assuming long int target.
</pre>
</div>
</content>
</entry>
<entry>
<title>Output enumeration results to separate output files</title>
<updated>2010-11-05T11:02:13+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2010-11-05T11:02:13+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=8e452058c075b91cd9dc50eb73422e9b0f3bbc4d'/>
<id>8e452058c075b91cd9dc50eb73422e9b0f3bbc4d</id>
<content type='text'>
In an enumerate operation where output to file is requested and the
response require more than one pull, only the last pull is saved to
file.  The rest of the response is overwritten.

Our proposal solution is for each pull response, it is saved to a file
with numbered suffix. This is only applicable to an enumerate
operation and an enumeration context is returned.

Also included is a minor fix to file open from read/write to write
mode. I find no reason for the operation to read the output file.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In an enumerate operation where output to file is requested and the
response require more than one pull, only the last pull is saved to
file.  The rest of the response is overwritten.

Our proposal solution is for each pull response, it is saved to a file
with numbered suffix. This is only applicable to an enumerate
operation and an enumeration context is returned.

Also included is a minor fix to file open from read/write to write
mode. I find no reason for the operation to read the output file.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix --sslkey to set the transport key, warn about missing --cacert</title>
<updated>2010-09-14T17:59:48+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2010-09-14T17:59:48+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=6be2be3a37e16eccb30a0906d542e15042929de3'/>
<id>6be2be3a37e16eccb30a0906d542e15042929de3</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>references and associators enumeration commands cause an inverse request</title>
<updated>2010-09-13T14:11:52+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2010-09-13T14:11:52+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=bbf3fa3e1a3298dbfd21891ca478aacfc2cfeb22'/>
<id>bbf3fa3e1a3298dbfd21891ca478aacfc2cfeb22</id>
<content type='text'>
In wsmancli-2.2.3, we notice that the references and associators
enumeration commands cause an inverse request.  That is, a
"references" action command adds a "wsmb:AssociatedInstances" in the
enumeration filter.  And an "associators" action command adds a
"wsmb:AssociationInstances" in the enumeration filter.

An "associators" command DSP0200 section 5.3.2.14 enumerates
"associated" classes. This statement is also defined by DSP0227
section 17.1 where it specifies in section 17.1.7 the use of
"wsmb:AssociatedInstances" element in the filter.

A "references" command DSP0200 section 5.3.2.16 enumerates
"association" classes. This statement is also defined by DSP0227
section 17.1 where it specifies in section 17.1.9 the use of
"wsmb:AssociationInstances" element in the filter.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In wsmancli-2.2.3, we notice that the references and associators
enumeration commands cause an inverse request.  That is, a
"references" action command adds a "wsmb:AssociatedInstances" in the
enumeration filter.  And an "associators" action command adds a
"wsmb:AssociationInstances" in the enumeration filter.

An "associators" command DSP0200 section 5.3.2.14 enumerates
"associated" classes. This statement is also defined by DSP0227
section 17.1 where it specifies in section 17.1.7 the use of
"wsmb:AssociatedInstances" element in the filter.

A "references" command DSP0200 section 5.3.2.16 enumerates
"association" classes. This statement is also defined by DSP0227
section 17.1 where it specifies in section 17.1.9 the use of
"wsmb:AssociationInstances" element in the filter.
</pre>
</div>
</content>
</entry>
<entry>
<title>Enhance enumerate with association filter</title>
<updated>2010-09-13T14:01:27+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2010-09-13T14:01:27+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=48a5b0a2081b20bbe092967708a687450b96f4c2'/>
<id>48a5b0a2081b20bbe092967708a687450b96f4c2</id>
<content type='text'>
- Enhance enumerate with association filter to have the ability to
  specify the optional elements namely: AssociationClassName, Role,
  ResultClassName, ResultRole and IncludeResultProperty.
  (IncludeResultProperty is a list, specify it as a comma separated
  list in the “U” option.
  (Chris Poblete)

(This patch was in svn but missing from git :-/)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Enhance enumerate with association filter to have the ability to
  specify the optional elements namely: AssociationClassName, Role,
  ResultClassName, ResultRole and IncludeResultProperty.
  (IncludeResultProperty is a list, specify it as a comma separated
  list in the “U” option.
  (Chris Poblete)

(This patch was in svn but missing from git :-/)
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix --sslkey, add warning about --cacert</title>
<updated>2010-09-13T12:59:02+00:00</updated>
<author>
<name>Klaus Kämpf</name>
<email>kkaempf@suse.de</email>
</author>
<published>2010-09-13T12:59:02+00:00</published>
<link rel='alternate' type='text/html' href='https://fedorapeople.org/cgit/skottler/public_git/wsmancli.git/commit/?id=1bbab57b79772b73e27c363b91e908f9e25e5172'/>
<id>1bbab57b79772b73e27c363b91e908f9e25e5172</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
