On CCM7 we have a phone service that points to a IPPhoneInput xml doc. The user is able to input data and submit to the URL in that file just fine. I am trying to create a parameter in CCM7 for this service that I append to the URL in the IPPhone URL that is sent. So when I subscribe to the service on the phone configuration I will enter the data for this parameter. When the user submits the input that they entered I want the parameter to be sent with it.
Phone Service URL:
http://Webserver1/CiscoIPPHoneService/IPPhoneInput.xmlService Parameter: siteID=ABCD
IPPhoneInput.xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<CiscoIPPhoneInput>
<Title>Test</Title>
<Prompt>Test</Prompt>
<URL>http://Server:8080/customQts?</URL>
<InputItem>
<DisplayName>User Input</DisplayName>
<QueryStringParam>userInput</QueryStringParam>
<DefaultValue></DefaultValue>
<InputFlags>T</InputFlags>
</InputItem>
</CiscoIPPhoneInput>
I would like to see something like this sent to the application server
http://Server:8080/customQts?userInput=1234&siteID=ABCDAny assistance would be appreciated. Thank you.