I was encountering some strange behavior in my IVR script.&nbsp; What I finally tracked it down to is that the prototype on the playAndGetDigits() method has changed.&nbsp; The previous prototype was of the form playAndGetDigits(int, int, int, int, String, String, byte[], String) and the new prototype is playAndGetDigits(int, int, int, int, String, String, String, String).&nbsp; The byte array parameter has been removed and this was the parameter that returned the DTMF digits.&nbsp; With this parameter removed, how do I retrieve the DTMF digits?<br>
<br>Jonathan<br><br>