Some users may be experiencing issues when trying to access customer resources like the Case Portal or the Product Licensing Center. Our team is aware of the issue and is working to resolve it. Click here for more information.
For ServiceNow Quebec - After running a ServiceNow to FNMS export you will notice that no XML file is generated in your Quebec MID Server. Even though checking the Export History indicates that the Export was successful.
Quebec mid servers require java 1.8 while Paris/Orlando mid servers use java 1.7.
The export functionality implements a decoding method:
decodeFile: function (data){ var strJFile = new Packages.java.lang.String(data); //Switch to java8 base64 var bytes = new Packages.sun.misc.BASE64Decoder().decodeBuffer(strJFile); var strDJFile = new Packages.java.lang.String(bytes, "UTF-8"); return strDJFile; },
Which references the non-existent sun.misc.BASE64Decoder java package (java8). This causes an exception which results in the file not being written to the file system.
A workaround would be to replace the method used with java.util.Base64.getDecoder().decode(). This is available in java 1.8. The customer would need to load an XML to update the script include.
Jul 13, 2021 11:43 AM - edited Sep 23, 2021 01:34 PM
Hello @JJacildo
1. Could you please help to check if the 5.0.600 release is on schedule in early October ? if there is a specific date we can know?
2. My Quebec MID server also not generate Asset xml file (Export from SN -> MID) which is the same symptom here. But even I tried to upload the 'patch' from the attachment. It didn't help. Therefore I am wondering if there is anything else I could have missed in my case, but do you by chance still have the specific 'exception error log' from MID log file ? I will try to see if mine contain the same or else ?
Thanks in advance.
Cheers
Kevin
@Big_Kev - is the release your looking for the following one announced late last week? New ServiceNow Scoped App v5.0.6 is now Available in ServiceNow Store
Thank you for your quick help @ChrisG , that's indeed what I am looking for. Not sure how I have missed that (likely it's under Flexera One blog not FNMS blog) :).
Thanks again