After renewiing my license unable to set license

Hi Team,
I have renewal aspose GIS licence after renewal unable to set license on server.
my purchase order is 240201125955…I am geting following exception.

first issue…
function Toggle(node) { if (!window.fullyLoaded) return; // Expand the branch? if (node.nextSibling.style.display == ‘none’) { // Change the sign from “+” to “-”. var tBodyNode = node.childNodes[0]; var trNode = tBodyNode.childNodes[0]; var tdNode = trNode.childNodes[0]; var bNode = tdNode.childNodes[0]; var textNode = bNode.childNodes[0]; if (textNode.nodeType == 3 /* Node.TEXT_NODE /) { var s = textNode.data; if (s.length > 0 && s.charAt(0) == ‘+’) { textNode.data = ‘-’ + s.substring(1, s.length); } } // show the branch node.nextSibling.style.display = ‘’; } else // Collapse the branch { // Change the sign from “-” to “+”. var tBodyNode = node.childNodes[0]; var trNode = tBodyNode.childNodes[0]; var tdNode = trNode.childNodes[0]; var bNode = tdNode.childNodes[0]; var textNode = bNode.childNodes[0]; if (textNode.nodeType == 3 / Node.TEXT_NODE */) { var s = textNode.data; if (s.length > 0 && s.charAt(0) == ‘-’) { textNode.data = ‘+’ + s.substring(1, s.length); } } // hide the branch node.nextSibling.style.display = ‘none’; } } // Toggle “System” element by default so that it’s default status is to hide its children function ToggleSystemElement() { var body = document.getElementById(“body”); var anchor = body.getElementsByTagName(“table”)[0]; Toggle(anchor); } // If binary data is present in event XML, show it in friendly form. function ProcessBinaryData(binaryString, binaryDataCaption, wordsFormatString, bytesFormatString, normalFont, fixedWidthFont) { var bodyNode = document.getElementById(“body”); // Add a


at the end of the HTML body. bodyNode.appendChild(document.createElement(“hr”)); // This paragraph (p element) is the “Binary data:” literal string. var p = document.createElement(“p”); p.style.fontFamily = normalFont; var b = document.createElement(“b”); b.appendChild(document.createTextNode(binaryDataCaption)); p.appendChild(b); p.appendChild(document.createElement(“br”)); bodyNode.appendChild(p); // // Show binary data in Words format. // p = document.createElement(“p”); p.style.fontFamily = normalFont; p.appendChild(document.createTextNode(wordsFormatString)); bodyNode.appendChild(p); // Must use fixed-width font for binary data. p = document.createElement(“p”); p.style.fontFamily = fixedWidthFont; var i = 0; var j = 0; var s, tempS; var translatedString; var charCode; var byte1, byte2; // Each character in binaryString is a hex (16-based) representation of // 4 binary bits. So it takes 2 characters in binaryString to form a // complete byte; 4 characters for a word. while (i < binaryString.length) { s = (i / 2).toString(16); // To hex representation. while (s.length < 4) { s = “0” + s; } s += ": "; // DWords representation is simply a rearrangement of the original binaryString // For example, from: // // 0000000002005600000000000f000540 // // (which is 00 00 00 00 02 00 56 00 00 00 00 00 0f 00 05 40). // // to: // // 0000: 00000000 00560002 00000000 4005000f // 8 words per line, 4 DWords per line. for (j = 0; j < 4; j++) { s += binaryString.substring(i + 6, i + 8); s += binaryString.substring(i + 4, i + 6); s += binaryString.substring(i + 2, i + 4); s += binaryString.substring(i, i + 2) + " "; i += 8; } p.appendChild(document.createTextNode(s)); p.appendChild(document.createElement(“br”)); } bodyNode.appendChild(p); // // Show binary data in bytes format. // p = document.createElement(“p”); p.style.fontFamily = normalFont; p.appendChild(document.createTextNode(bytesFormatString)); bodyNode.appendChild(p); // Must use fixed-width font for binary data. p = document.createElement(“p”); p.style.fontFamily = fixedWidthFont; i = 0; j = 0; // Each character in binaryString is a hex (16-based) representation of // 4 binary bits. So it takes 2 characters in binaryString to form a // complete byte. while (i < binaryString.length) { translatedString = “”; // 2 characters in binaryString to form a byte s = (i / 2).toString(16); // to hex representation. // Prefix with ‘0’ until its length is 4. while (s.length < 4) { s = “0” + s; } s += ": "; // Show 8 bytes per line for (j = 0; j < 8; j++) { tempS = binaryString.substring(i, i + 2); // 2 for 1 byte i += 2; s += tempS + " "; // Treat tempS as hex integer charCode = parseInt(tempS, 16); if (charCode < 32) { translatedString += “.”; } else { translatedString += String.fromCharCode(charCode); } } while (s.length < 32) { s += " "; } s += translatedString; p.appendChild(document.createTextNode(s)); p.appendChild(document.createElement(“br”)); } bodyNode.appendChild(p); }

Application: w3wp.exe Framework Version: v4.0.30319 Description: The process was terminated due to an internal error in the .NET Runtime at IP 740DFFF1 (740B0000) with exit code 80131506.

2nd issue
function Toggle(node) { if (!window.fullyLoaded) return; // Expand the branch? if (node.nextSibling.style.display == ‘none’) { // Change the sign from “+” to “-”. var tBodyNode = node.childNodes[0]; var trNode = tBodyNode.childNodes[0]; var tdNode = trNode.childNodes[0]; var bNode = tdNode.childNodes[0]; var textNode = bNode.childNodes[0]; if (textNode.nodeType == 3 /* Node.TEXT_NODE /) { var s = textNode.data; if (s.length > 0 && s.charAt(0) == ‘+’) { textNode.data = ‘-’ + s.substring(1, s.length); } } // show the branch node.nextSibling.style.display = ‘’; } else // Collapse the branch { // Change the sign from “-” to “+”. var tBodyNode = node.childNodes[0]; var trNode = tBodyNode.childNodes[0]; var tdNode = trNode.childNodes[0]; var bNode = tdNode.childNodes[0]; var textNode = bNode.childNodes[0]; if (textNode.nodeType == 3 / Node.TEXT_NODE */) { var s = textNode.data; if (s.length > 0 && s.charAt(0) == ‘-’) { textNode.data = ‘+’ + s.substring(1, s.length); } } // hide the branch node.nextSibling.style.display = ‘none’; } } // Toggle “System” element by default so that it’s default status is to hide its children function ToggleSystemElement() { var body = document.getElementById(“body”); var anchor = body.getElementsByTagName(“table”)[0]; Toggle(anchor); } // If binary data is present in event XML, show it in friendly form. function ProcessBinaryData(binaryString, binaryDataCaption, wordsFormatString, bytesFormatString, normalFont, fixedWidthFont) { var bodyNode = document.getElementById(“body”); // Add a


at the end of the HTML body. bodyNode.appendChild(document.createElement(“hr”)); // This paragraph (p element) is the “Binary data:” literal string. var p = document.createElement(“p”); p.style.fontFamily = normalFont; var b = document.createElement(“b”); b.appendChild(document.createTextNode(binaryDataCaption)); p.appendChild(b); p.appendChild(document.createElement(“br”)); bodyNode.appendChild(p); // // Show binary data in Words format. // p = document.createElement(“p”); p.style.fontFamily = normalFont; p.appendChild(document.createTextNode(wordsFormatString)); bodyNode.appendChild(p); // Must use fixed-width font for binary data. p = document.createElement(“p”); p.style.fontFamily = fixedWidthFont; var i = 0; var j = 0; var s, tempS; var translatedString; var charCode; var byte1, byte2; // Each character in binaryString is a hex (16-based) representation of // 4 binary bits. So it takes 2 characters in binaryString to form a // complete byte; 4 characters for a word. while (i < binaryString.length) { s = (i / 2).toString(16); // To hex representation. while (s.length < 4) { s = “0” + s; } s += ": "; // DWords representation is simply a rearrangement of the original binaryString // For example, from: // // 0000000002005600000000000f000540 // // (which is 00 00 00 00 02 00 56 00 00 00 00 00 0f 00 05 40). // // to: // // 0000: 00000000 00560002 00000000 4005000f // 8 words per line, 4 DWords per line. for (j = 0; j < 4; j++) { s += binaryString.substring(i + 6, i + 8); s += binaryString.substring(i + 4, i + 6); s += binaryString.substring(i + 2, i + 4); s += binaryString.substring(i, i + 2) + " "; i += 8; } p.appendChild(document.createTextNode(s)); p.appendChild(document.createElement(“br”)); } bodyNode.appendChild(p); // // Show binary data in bytes format. // p = document.createElement(“p”); p.style.fontFamily = normalFont; p.appendChild(document.createTextNode(bytesFormatString)); bodyNode.appendChild(p); // Must use fixed-width font for binary data. p = document.createElement(“p”); p.style.fontFamily = fixedWidthFont; i = 0; j = 0; // Each character in binaryString is a hex (16-based) representation of // 4 binary bits. So it takes 2 characters in binaryString to form a // complete byte. while (i < binaryString.length) { translatedString = “”; // 2 characters in binaryString to form a byte s = (i / 2).toString(16); // to hex representation. // Prefix with ‘0’ until its length is 4. while (s.length < 4) { s = “0” + s; } s += ": "; // Show 8 bytes per line for (j = 0; j < 8; j++) { tempS = binaryString.substring(i, i + 2); // 2 for 1 byte i += 2; s += tempS + " "; // Treat tempS as hex integer charCode = parseInt(tempS, 16); if (charCode < 32) { translatedString += “.”; } else { translatedString += String.fromCharCode(charCode); } } while (s.length < 32) { s += " "; } s += translatedString; p.appendChild(document.createTextNode(s)); p.appendChild(document.createElement(“br”)); } bodyNode.appendChild(p); }

w3wp.exe

10.0.17763.1

a7ccada2

clr.dll

4.8.4645.0

648f709e

c0000005

0002fff1

4588

01da5e6b855f6fde

C:\Windows\SysWOW64\inetsrv\w3wp.exe

C:\Windows\Microsoft.NET\Framework\v4.0.30319\clr.dll

ccda341b-349d-4eb6-8584-28c30d291376

Dear shashank245,

Thank you for reaching out to us regarding the renewal of your Aspose GIS license. We understand the importance of ensuring smooth license activation and we’re here to assist you in resolving any issues you may be experiencing.

We’ve received your message regarding difficulties in setting up the license on your server. To better assist you and address the issue promptly, could you kindly provide us with more information? Here are some questions that will help us understand the situation better:

  1. Could you confirm if you received a confirmation email after the renewal process indicating that your license renewal was successful?
  2. Are you encountering any error messages during the license activation process? If so, could you please provide the specific error messages?
  3. What steps have you taken so far to set up the license on your server after the renewal?
  4. Are you experiencing this issue with a specific version of Aspose GIS or any particular environment setup?
  5. Could you share the operating system and version of the server where you’re trying to set up the license?
  6. Have there been any recent changes or updates to your server environment that might be affecting the license activation process?

Any additional details or context you can provide regarding the issue will be greatly appreciated and will help us expedite the resolution process for you.

We’re committed to ensuring that your experience with our product remains positive, and we’ll do our utmost to assist you in resolving this matter as swiftly as possible.

Thank you for your patience and cooperation. We look forward to hearing back from you soon.

Hi Team,
I am getting following exception after just replace license file. aspose GIS DLL Version 19.4.0.0. and .net framewok 4.8 and
OS Name Microsoft Windows Server 2019 Datacenter

1.System.InvalidOperationException: Invalid license signature. Please make sure the license file was not modified.
at?.(Object )
at?. ( )
at?.()
at?()
at?.(Object )
at?.()
at?.(Object , UInt32 )
at?()
at?.()
at?. ()
at?.(Object )
at?.()
at?.(Object , UInt32 )
at?. ()
at?.(Object[] , Type[] , Type[] , Object[])
at?.(Stream , Int32 , Object[] , Type[], Type[] , Object[] )
at?.(Int32 , Type[] , Type[] , Boolean)
at?. ( )
at?.()
at?()
at?.(Object )
at?.()
at?. ( )
at?.()
at?()
at?.(Object )
at?.()
at?.(Object , UInt32 )
at?()
at?.()
at?. ()
at?.(Object )
at?.()
at?.(Object , UInt32 )
at?. ()
at?.(Object[] , Type[] , Type[] , Object[])
at?.(Stream , Int32 , Object[] , Type[], Type[] , Object[] )
at?.(Int32 , Type[] , Type[] , Boolean)
at?. ( )
at?.()
at?()
at?.(Object )
at?.()
at?.(Object , UInt32 )
at?()
at?.()
at?. ()
at?.(Object )
at?.()
at?.(Object , UInt32 )
at?. ()
at?.(Object[] , Type[] , Type[] , Object[])
at Aspose.Gis.License.SetLicense(String licenseName)

Hello! Upon reviewing your case thoroughly, it appears that the file containing the updated license version is incompatible with your current library version 19.4.0.0.

To address this issue respectfully, I would like to propose two potential solutions for your consideration:

You may choose to update the library version to a more recent one, such as version 23.6.
Alternatively, I can reach out to our sales department to inquire about obtaining a version of the license in the older format on your behalf.
Please take your time to evaluate these options and let me know which one would be most suitable for you. Your satisfaction is our priority, and we are committed to assisting you in resolving this matter in the best possible way.

Thank you for your understanding and cooperation.

Hi Glushchenko,

As suugested you, I have updated DLL version 23.6 after that IIS crashing while setting license.

Problem Statement

When we include the dll in the console app, there is no issue with that but when we try to access it from the app on IIS, we got this error.

“Application: w3wp.exe Framework Version: v4.0.30319 Description: The process was terminated due to an internal error in the .NET Runtime at IP 7481FFF1 (747F0000) with exit code 80131506.”

Could you please let me for above issue and see following product order id purchase?

240201125955

Environment details.

OS (Windows Version) - Windows Server 2019

Architecture (32 / 64 bit) - 64 Bit

.NET Framework version - .Net Framework 4.8

IIS-10.0

ASPOSE GIS 23.6
Regards,
Shashank Singh

Thank you for providing the details! We will proceed with requesting an old-style license on your behalf. Meanwhile, our team will diligently investigate and replicate the error you’ve encountered.

Hello! Got the old version license for you. Please tell me where to send you the file with the license?

Hi Glushchenko,

Thanks for provided old version Licens file. I have updated the license file on server and got following issue after deploying license file

Problem Statement

When we include the dll in the console app, there is no issue with that but when we try to access it from the app on IIS, we got this error.

  • “Application: w3wp.exe Framework Version: v4.0.30319 Description: The process was terminated due to an internal error in the .NET Runtime at IP 7481FFF1 (747F0000) with exit code 80131506.”

Could you please help me for above issue ?

Environment details.

OS (Windows Version) - Windows Server 2019

Architecture (32 / 64 bit) - 64 Bit

.NET Framework version - .Net Framework 4.8

IIS-10.0

ASPOSE GIS 19.4
Regards,
Shashank Singh

Hello,

Thank you for reaching out to us regarding the error you’ve encountered. We’ve diligently attempted to replicate the issue on IIS using an older version of the license. However, we’ve been unable to reproduce the error at this time.

Could you kindly confirm if the error pertains specifically to our library? Currently, you are using version 19.4 of the library along with the older version of the license, predating the license update.

If you are confident that the error stems from our library, we would greatly appreciate it if you could provide us with code examples that you believe might be causing the issue. This will enable us to replicate the error internally and work towards resolving it promptly.

Thank you for your cooperation and understanding.

Best regards, Alexander

Hi Alexander,
I have update framework 4.6.1 to 4.8. everthing is working fine in project except reading license file(ASPOSEGIS.Net). Aspose GIS DLL 19.4 version is working fine in 4.6.1 version on diffrent APP server. can you please let us know ASPOSE.GIS.DLL 19.4 is comapatible to 4.8 framework version?
I found one link in tech forum. whis is similar kind of issue…

IIS worker process crashing when trying to access DLL

Kindly help us on this issue.

Regards,
Shashank Singh

Hello there!

Thank you for bringing this up! I’ll make sure to discuss this point with the product team and provide you with the information I gather. Let me get back to you as soon as possible with any updates I find.

Best regards, Alexander

Hello! I checked with the development team for information. They suggested this option: try reinstalling the library under netstandard2.0 if you have a version of the library under the net framework. If you have a version for netstandard2.0, then it must support Framework 4.8.