need a simple example of how to call ApplicationPinServices BeginVerifyPin and EndVerifyPin methods from inside a UCMA workflow to verify user pin number... ApplicationPinServices has an internal constructor and i can't find a way to instantiate it in order to call the methods.

link|improve this question

75% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I was able to verify the pin by casting the conversation endpoint to ApplicationEndpoint which contains a reference to PinServices Class:

var localEndPoint = this.communicationsSequenceActivity1.CallProvider.Call.Conversation.Endpoint as ApplicationEndpoint;

PinVerificationResult result = localEndPoint.PinServices.EndVerifyPin
                                     (localEndPoint.PinServices.BeginVerifyPin(
                                                        userSIP, selectedPin, null, null, null));
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.