Hello. I am trying to make a trigger action which results in a chime playing on a phone.
based on the HTML script below, I put this into the "URL" box:
http://10.0.0.1/CGI/Execute
And put this part into the post body but it reports "Failed to execute HTTP request"
<CiscoIPPhoneExecute>
<ExecuteItem Priority="0" URL="Play:chime.raw"/>
</CiscoIPPhoneExecute>
Is there some way to post the XML portion of the html script below?
I can use the html script below to manually play a chime on a phone but I have to enter authentication info as well as click a submit button. If I could just get the XML insertion part right I could probably figure out the authentication line entries.
<HTML>
<HEAD>
</HEAD>
<BODY>
<FORM action="http://10.0.0.1/CGI/Execute" Method="POST">
<TEXTAREA NAME="XML" Rows="20" Cols="80">
<CiscoIPPhoneExecute>
<ExecuteItem Priority="0" URL="Play:chime.raw"/>
</CiscoIPPhoneExecute>
</TEXTAREA>
<BR>
<input type=submit value=POST>
</FORM>
</BODY>
</HTML>