Forums
When calling the following register function :
EslClient eslClient = new EslClient(apikey, apiUrl);
eslClient.EventNotificationService.Register(
                EventNotificationConfigBuilder.NewEventNotificationConfig(callBackUrl)
                .ForEvent(NotificationEvent.SIGNER_COMPLETE).ForEvent(NotificationEvent.PACKAGE_DELETE));
I am getting: System.NullReferenceException: Object reference not set to an instance of an object. This is happening on our development machines but our actual live application is running just fine, this error just propped up today.
Forums
Hello, I was testing to create a package under sandbox mode. However, the package was not created, and an error was thrown instead. The exception message was: $exception {"Could not create a new package. Exception: Object reference not set to an instance of an object."} Silanis.ESL.SDK.EslException The error occurred when I executed CreatePackage(DocumentPackage documentPackage), and there was no packageId returned. Could you help me to solve this? Thank you
Forums
Team We are experiencing intermittent issue while adding document to existing package. Please let us know why this could happen. For reference i will put in package on which we faced this exception. Upon retry, this is not happening. Details: PackageId: ez60Idp_AXuzPDZV9WSHoksl0X4= Exception: "Silanis.ESL.SDK.EslServerException: Could not send the package. Exception: The remote server returned an error: (500) Internal Server Error. HTTP POST on URI https://sandbox.esignlive.com/api/packages/ez60Idp_AXuzPDZV9WSHoksl0X4=.
Forums
Hi, Is it possible to have only one ceremony for two signers ? We want to redirect the users to the signing ceremony, but we would like both signers to sign in that same redirect url. We don't want to redirect to the ceremony for the first signer, then manage the callback and redirect again for the next signer. Both has to sign the document (for example husband and wife). I did not find anything like this in documentation, is it possible ? Thanks !
Forums
When I use the .NET SDK version 11.5, I'm have a problems getting the signerId of package signers. What I want to do is this:
  1. call the eslClient.GetPackage(packageId) method to get information about an existing package
  2. get an authorization token, by SignerId, for a signer from the package
Here's the code I'm using:
 var package = eslClient.GetPackage(packageId);
  var signerId = package.Signer[0].Id;    
  var token = eslClient.AuthenticationToken.CreateSignerAuthenticationToken(packageId, signerId); 
And here's the exception I'm getting back: