Re: CCXML Implementation Report: couple of problems in scripts - #4 Wrong I/O processor type - [cc] ISSUE-686

This is tracked as ISSUE-686. 

	RJ

---
RJ Auburn
CTO, Voxeo Corporation
tel:+1-407-418-1800

Come join us at our Voxeo Customer Summit, June 21st – June 23rd at the Hard Rock Hotel, register today for your All Access Pass:  
http://www.voxeo.com/summits/customer



On Apr 13, 2010, at 8:51 PM, Petr Kuba wrote:

> 4) Wrong I/O processor type.
> 8_3_B.txml, Assertion 1033.
> 
> See the following code at line 148:
> 
>  <if cond="typeof(session.ioprocessors['basichttp']) == 'string'
>  &amp;&amp; typeof(session.ioprocessors['createsession']) == 'string'">
>    <script>assertions[assert_index].P_F = s_PASS;</script>
>    <else/>
>    <script>
>    assertions[assert_index].P_F = s_FAIL;
>    assertions[assert_index].reason = 'Objects in session.ioprocessors are improperly typed;' +
>    'first object has type ' + typeof(session.ioprocessors['basichttp']) + ', second object has type ' +
>    typeof(session.ioprocessors['ccxml']) + '; both should be of type string.';
>    </script>
>  </if>		
> 
> The <if> tag references I/O processors 'basichttp' and 'createsession' but the <script> tag references 'basichttp' and 'ccxml'.
> 
> The 'ccxml' value in <script> is incorrect, it should be 'createsession'.

Received on Sunday, 25 April 2010 22:03:12 UTC