c# - callback location does not get called after document signed using RightSignature API -


when send one-off document rightsignature via api, i'm specifying callback location in xml document specified in rightsignature's schema definition. signer-link value api document. display html response signer-link url in iframe on our website. when our user signs document in iframe, rendering responses website, want website post our callback location.

can rightsignature api , make sense?

so far, i'm getting content in iframe indicates signing successful. callback location not seem getting called.

@vishal, got solved now. basically, doing 2 things wrong first have go in rightsignature account , set there callback url

account > settings > advanced settings

but thing rs unable mention url can not on localhost, should of https mean live url.

and in callback write these 2 lines , has complete xml have guid , document status well.

byte[] data = request.binaryread(request.totalbytes); string callbackxml = system.text.encoding.utf8.getstring(data);

hope world using rs :)


Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -