<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to use http putxml for configuration? in Audio and Video Endpoints</title>
    <link>https://community.cisco.com/t5/audio-and-video-endpoints/how-to-use-http-putxml-for-configuration/m-p/3555673#M2687</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm a new beginner on API for video system. Trying to configure codec through our own application and see HTTP can push the whole configuration with xml instead of sending different commands through SSH. But the doc says using &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://ip/putxml" rel="nofollow" target="_blank"&gt;http://ip/putxml&lt;/A&gt;&lt;SPAN&gt; and then gives example about XML file. But dumb question here: how do you invoke that XML with &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://ip/putxml" rel="nofollow" target="_blank"&gt;http://ip/putxml&lt;/A&gt;&lt;SPAN&gt;?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lou&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Nov 2015 05:45:21 GMT</pubDate>
    <dc:creator>hxmengmetro</dc:creator>
    <dc:date>2015-11-02T05:45:21Z</dc:date>
    <item>
      <title>How to use http putxml for configuration?</title>
      <link>https://community.cisco.com/t5/audio-and-video-endpoints/how-to-use-http-putxml-for-configuration/m-p/3555673#M2687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm a new beginner on API for video system. Trying to configure codec through our own application and see HTTP can push the whole configuration with xml instead of sending different commands through SSH. But the doc says using &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://ip/putxml" rel="nofollow" target="_blank"&gt;http://ip/putxml&lt;/A&gt;&lt;SPAN&gt; and then gives example about XML file. But dumb question here: how do you invoke that XML with &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://ip/putxml" rel="nofollow" target="_blank"&gt;http://ip/putxml&lt;/A&gt;&lt;SPAN&gt;?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lou&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Nov 2015 05:45:21 GMT</pubDate>
      <guid>https://community.cisco.com/t5/audio-and-video-endpoints/how-to-use-http-putxml-for-configuration/m-p/3555673#M2687</guid>
      <dc:creator>hxmengmetro</dc:creator>
      <dc:date>2015-11-02T05:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to use http putxml for configuration?</title>
      <link>https://community.cisco.com/t5/audio-and-video-endpoints/how-to-use-http-putxml-for-configuration/m-p/3555674#M2688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used formputxml with javascript&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;var xml = new XMLHttpRequest();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var url = "&lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://ip/formputxml?xmldoc=" rel="nofollow" target="_blank"&gt;http://ip/formputxml?xmldoc=&lt;/A&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xml.open("POST", url, false);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xml.setRequestHeader("Content-type", "application/x-www-form-urlencoded");&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var xmlcommand = '&amp;lt;Command&amp;gt;&amp;lt;Camera&amp;gt;&amp;lt;PositionSet command="True"&amp;gt;&amp;lt;CameraId&amp;gt;1&amp;lt;/CameraId&amp;gt;&amp;lt;Pan&amp;gt;'+pan+'&amp;lt;/Pan&amp;gt;&amp;lt;Tilt&amp;gt;'+tilt+'&amp;lt;/Tilt&amp;gt;&amp;lt;Zoom&amp;gt;'+zoom+'&amp;lt;/Zoom&amp;gt;&amp;lt;/PositionSet&amp;gt;&amp;lt;/Camera&amp;gt;&amp;lt;/Command&amp;gt;';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xml.send(xmlcommand);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Dec 2015 20:10:51 GMT</pubDate>
      <guid>https://community.cisco.com/t5/audio-and-video-endpoints/how-to-use-http-putxml-for-configuration/m-p/3555674#M2688</guid>
      <dc:creator>miroslaw12</dc:creator>
      <dc:date>2015-12-11T20:10:51Z</dc:date>
    </item>
  </channel>
</rss>

