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

Petr,

We are in the process to address all ISSUES related to IR. The goal is to re-publish the CCXML-IR in a short term.
Please explicitly confirm that you accept the proposed resolution or after one week we will consider implicitly accepted the resolution. If you need clarification, please ask them very soon.

Paolo Baggia
Author of CCXML-IR Plan

ISSUE-686:

Proposed Resolution: Accept

You are right:
- Else part will be fixed by s/ccxml/createsession/ in 8_3_B.txml line 148

=================================
This is tracked as ISSUE-686. 

	RJ

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

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 Tuesday, 1 June 2010 14:44:04 UTC