Author Topic: how to update application group name using arsxml  (Read 2977 times)

jw

  • Guest
how to update application group name using arsxml
« on: July 23, 2014, 09:22:55 AM »
Does anyone know how to update an application group name (just the name) using arsxml?

Thanks.

jeffs42885

  • Guest
Re: how to update application group name using arsxml
« Reply #1 on: July 23, 2014, 09:30:38 AM »
How many?

if its only like 50, you can probably bang that out in 15 minutes with a good keyboard..

jw

  • Guest
Re: how to update application group name using arsxml
« Reply #2 on: July 23, 2014, 09:37:15 AM »
Jeff,

Just want to know how.  As the IBM manual says it is an updateable field.  I tried

<?xml version="1.0" encoding="UTF-8" ?>
<onDemand xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="/usr/lpp/ars/xml/ondemand.xsd">

   <applicationGroup name="ag" name="ag_new" />

</onDemand>


then, i got an error message:

A parsing error occurred in file upd_ag.in.xml, Line 4, Column 61:
The attribute 'name' is already used in element 'applicationGroup'

Thanks.
-jw

Greg Ira

  • Full Member
  • ***
  • Posts: 240
    • View Profile
Re: how to update application group name using arsxml
« Reply #3 on: July 25, 2014, 11:47:13 AM »
jw,
Try <applicationGroup name="ag" newName="ag_new" />

jw

  • Guest
Re: how to update application group name using arsxml
« Reply #4 on: July 28, 2014, 05:36:00 AM »
Greg,

Thanks very much for the information.  It works.

How come this attribute is not in 8.5+ manual? 

Thanks again.

-jw