Forums
I'm trying to get the Authentication token with the following code, however its return error "The remote server returned an error: (405) Method Not Allowed." string url = "https://sandbox.esignlive.com/api/authenticationTokens"; string apiKey = "WXNKRk9vb*****************"; using (var client = new WebClient()) { var uri = new Uri(url); var encoding = new UTF8Encoding(); client.Headers.Add("Content-Type", "application/json"); client.Headers.Add("Accept", "application/json"); client.Headers.A
Forums
I have a controller method public List GetPackageTransactions(string packageId) // packageId = "660bd4f9-d090-4233-9fec-d176404e1871" { PackageId pid = new Silanis.ESL.SDK.PackageId(packageId); List list = eslClient.AuditService.GetAudit(pid); return list; } eslClient.AuditService.GetAudit(pid); throws an exception: Newtonsoft.Json.JsonReaderException was caught HResult=-2146233088 Message=Unexpected character encountered while parsing value: .
Forums
I'm using .Net SDK. I create token: string sessionTokenString = eslClient.AuthenticationTokenService.CreateSenderAuthenticationToken(id); and then
Forums
I have a requirement to integrate seamlessly with eSignLive. We will have many clients on our side and each will have an account with Silanis. I need to authenticate user in code behind when user logs into our portal. Basically, if I understand correctly I have to use SAML protocol for that. So the question is does https://apps.e-signlive.com/sso/saml/login/alias/e-signlive?idp={IDENTITY_PROVIDER} returns anything? As much as I understand this is for browser use only so I might need to have a iFrame that loads URL above.
Forums
Hi is it possible from custom UIto allow user to place signature on the page...to choose where it want it. What parameters I need to set in the code. I use .net SDK Also would it be possible to size iFrame to the document or to remove all unnecessary space around document. How?
Forums
I use your example to test your API. ........ SignerBuilder.NewSignerWithEmail(email1) .WithFirstName("dejan") .WithLastName("lukic") .WithTitle("Pack title") ) ....... Signer receives email as Reviewer instead as a Signer. How to actually set the receiver as Reviewer or a Signer?
Forums
We are integrating e-SignLive with an EPiServer site. The EPiServer version we are using depends on log4net version 1.2.10 but the Silanis.ESL.dll depends on 1.2.13. We tried using a binding redirect in the application's web config with no luck. Is there a way to get the Silanis dll that works with log4net version 1.2.10? Our other alternative will be to upgrade the EPiServer version, which we did not anticipate for our project's scope.